diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d75c931249..69bb846efe0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,8 @@ changes in the following format: PR #1234***
- Fix examiner site display (PR #8967)
- bvl_feedback updates in real-time (PR #8966)
- DoB and DoD format respected in candidate parameters (PR #9001)
+- Fix delete file in upload (PR #9181)
+- Fix profile level feedback display in behavioural QC module (PR #9192)
## LORIS 25.0 (Release Date: ????-??-??)
### Core
diff --git a/SQL/0000-00-05-ElectrophysiologyTables.sql b/SQL/0000-00-05-ElectrophysiologyTables.sql
index 3860a11e1ad..8a2d0810464 100644
--- a/SQL/0000-00-05-ElectrophysiologyTables.sql
+++ b/SQL/0000-00-05-ElectrophysiologyTables.sql
@@ -74,7 +74,8 @@ CREATE TABLE `physiological_split_file` (
-- information that accompanies the BIDS physiological dataset
CREATE TABLE `physiological_parameter_file` (
`PhysiologicalParameterFileID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `PhysiologicalFileID` INT(10) UNSIGNED NOT NULL,
+ `PhysiologicalFileID` INT(10) UNSIGNED DEFAULT NULL,
+ `ProjectID` INT(10) UNSIGNED DEFAULT NULL,
`ParameterTypeID` INT(10) UNSIGNED NOT NULL,
`InsertTime` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Value` TEXT,
@@ -85,7 +86,10 @@ CREATE TABLE `physiological_parameter_file` (
ON DELETE CASCADE,
CONSTRAINT `FK_param_type_ParamTypeID`
FOREIGN KEY (`ParameterTypeID`)
- REFERENCES `parameter_type` (`ParameterTypeID`)
+ REFERENCES `parameter_type` (`ParameterTypeID`),
+ CONSTRAINT `FK_ppf_project_ID`
+ FOREIGN KEY (`ProjectID`)
+ REFERENCES `Project` (`ProjectID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
@@ -271,7 +275,8 @@ CREATE TABLE IF NOT EXISTS `physiological_coord_system_electrode_rel` (
-- Create `physiological_event_file` table
CREATE TABLE `physiological_event_file` (
`EventFileID` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `PhysiologicalFileID` int(10) unsigned NOT NULL,
+ `PhysiologicalFileID` int(10) unsigned DEFAULT NULL,
+ `ProjectID` int(10) unsigned DEFAULT NULL,
`FileType` varchar(20) NOT NULL,
`FilePath` varchar(255) DEFAULT NULL,
`LastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
@@ -280,7 +285,8 @@ CREATE TABLE `physiological_event_file` (
KEY `FK_physio_file_ID` (`PhysiologicalFileID`),
KEY `FK_event_file_type` (`FileType`),
CONSTRAINT `FK_event_file_type` FOREIGN KEY (`FileType`) REFERENCES `ImagingFileTypes` (`type`),
- CONSTRAINT `FK_physio_file_ID` FOREIGN KEY (`PhysiologicalFileID`) REFERENCES `physiological_file` (`PhysiologicalFileID`)
+ CONSTRAINT `FK_physio_file_ID` FOREIGN KEY (`PhysiologicalFileID`) REFERENCES `physiological_file` (`PhysiologicalFileID`),
+ CONSTRAINT `FK_pef_project_ID` FOREIGN KEY (`ProjectID`) REFERENCES `Project` (`ProjectID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
;
@@ -299,9 +305,10 @@ CREATE TABLE `physiological_task_event` (
`EventType` VARCHAR(50) DEFAULT NULL,
`TrialType` VARCHAR(255) DEFAULT NULL,
`ResponseTime` TIME DEFAULT NULL,
- `AssembledHED` TEXT DEFAULT NULL,
PRIMARY KEY (`PhysiologicalTaskEventID`),
KEY `FK_event_file` (`EventFileID`),
+ INDEX idx_pte_EventValue (`EventValue`),
+ INDEX idx_pte_TrialType (`TrialType`),
CONSTRAINT `FK_phys_file_FileID_4`
FOREIGN KEY (`PhysiologicalFileID`)
REFERENCES `physiological_file` (`PhysiologicalFileID`)
@@ -382,105 +389,6 @@ CREATE TABLE `physiological_archive` (
ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--- SQL tables for BIDS derivative file structure
--- Create physiological_annotation_file_type table
-CREATE TABLE `physiological_annotation_file_type` (
- `FileType` VARCHAR(20) NOT NULL UNIQUE,
- `Description` VARCHAR(255),
- PRIMARY KEY (`FileType`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
--- Create physiological_annotation_file table
-CREATE TABLE `physiological_annotation_file` (
- `AnnotationFileID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `PhysiologicalFileID` INT(10) UNSIGNED NOT NULL,
- `FileType` VARCHAR(20) NOT NULL,
- `FilePath` VARCHAR(255),
- `LastUpdate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- `LastWritten` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
- PRIMARY KEY (`AnnotationFileID`),
- CONSTRAINT `FK_phys_file_ID`
- FOREIGN KEY (`PhysiologicalFileID`)
- REFERENCES `physiological_file` (`PhysiologicalFileID`),
- CONSTRAINT `FK_annotation_file_type`
- FOREIGN KEY (`FileType`)
- REFERENCES `physiological_annotation_file_type` (`FileType`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
--- Create annotation_archive which will store archives of all the annotation files for
--- Front-end download
-CREATE TABLE `physiological_annotation_archive` (
- `AnnotationArchiveID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `PhysiologicalFileID` INT(10) UNSIGNED NOT NULL,
- `Blake2bHash` VARCHAR(128) NOT NULL,
- `FilePath` VARCHAR(255) NOT NULL,
- PRIMARY KEY (`AnnotationArchiveID`),
- CONSTRAINT `FK_physiological_file_ID`
- FOREIGN KEY (`PhysiologicalFileID`)
- REFERENCES `physiological_file` (`PhysiologicalFileID`)
- ON DELETE CASCADE
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
--- Create annotation_parameter table
--- Note: This corresponds with the JSON annotation files
-CREATE TABLE `physiological_annotation_parameter` (
- `AnnotationParameterID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `AnnotationFileID` INT(10) UNSIGNED NOT NULL,
- `Description` TEXT DEFAULT NULL,
- `Sources` VARCHAR(255),
- `Author` VARCHAR(255),
- PRIMARY KEY (`AnnotationParameterID`),
- CONSTRAINT `FK_annotation_file_ID`
- FOREIGN KEY (`AnnotationFileID`)
- REFERENCES `physiological_annotation_file` (`AnnotationFileID`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
--- Create an annotation_label_type table
-CREATE TABLE `physiological_annotation_label` (
- `AnnotationLabelID` INT(5) UNSIGNED NOT NULL AUTO_INCREMENT,
- `AnnotationFileID` INT(10) UNSIGNED DEFAULT NULL,
- `LabelName` VARCHAR(255) NOT NULL,
- `LabelDescription` TEXT DEFAULT NULL,
- PRIMARY KEY (`AnnotationLabelID`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
--- Create annotation_tsv table
--- Note: This corresponds with the .tsv annotation files
-CREATE TABLE `physiological_annotation_instance` (
- `AnnotationInstanceID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `AnnotationFileID` INT(10) UNSIGNED NOT NULL,
- `AnnotationParameterID` INT(10) UNSIGNED NOT NULL,
- `Onset` DECIMAL(10, 4),
- `Duration` DECIMAL(10, 4) DEFAULT 0,
- `AnnotationLabelID` INT(5) UNSIGNED NOT NULL,
- `Channels` TEXT,
- `AbsoluteTime` TIMESTAMP,
- `Description` VARCHAR(255),
- PRIMARY KEY (`AnnotationInstanceID`),
- CONSTRAINT `FK_annotation_parameter_ID`
- FOREIGN KEY (`AnnotationParameterID`)
- REFERENCES `physiological_annotation_parameter` (`AnnotationParameterID`),
- CONSTRAINT `FK_annotation_file`
- FOREIGN KEY (`AnnotationFileID`)
- REFERENCES `physiological_annotation_file` (`AnnotationFileID`),
- CONSTRAINT `FK_annotation_label_ID`
- FOREIGN KEY (`AnnotationLabelID`)
- REFERENCES `physiological_annotation_label` (`AnnotationLabelID`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
--- Create physiological_annotation_rel table
-CREATE TABLE `physiological_annotation_rel` (
- `AnnotationTSV` INT(10) UNSIGNED NOT NULL,
- `AnnotationJSON` INT(10) UNSIGNED NOT NULL,
- PRIMARY KEY (`AnnotationTSV`, `AnnotationJSON`),
- CONSTRAINT `FK_AnnotationTSV`
- FOREIGN KEY (`AnnotationTSV`)
- REFERENCES `physiological_annotation_file` (`AnnotationFileID`),
- CONSTRAINT `FK_AnnotationJSON`
- FOREIGN KEY (`AnnotationJSON`)
- REFERENCES `physiological_annotation_file` (`AnnotationFileID`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-
-- Create EEG upload table
CREATE TABLE `electrophysiology_uploader` (
`UploadID` int(10) unsigned NOT NULL AUTO_INCREMENT,
@@ -635,38 +543,83 @@ INSERT INTO ImagingFileTypes
('cnt', 'Neuroscan CNT data format (EEG)'),
('archive', 'Archive file');
--- Insert into annotation_file_type
-INSERT INTO physiological_annotation_file_type
- (FileType, Description)
- VALUES
- ('tsv', 'TSV File Type, contains information about each annotation'),
- ('json', 'JSON File Type, metadata for annotations');
-
--- Insert into annotation_label_type
-INSERT INTO physiological_annotation_label
- (AnnotationLabelID, LabelName, LabelDescription)
- VALUES
- (1, 'artifact', 'artifactual data'),
- (2, 'motion', 'motion related artifact'),
- (3, 'flux_jump', 'artifactual data due to flux jump'),
- (4, 'line_noise', 'artifactual data due to line noise (e.g., 50Hz)'),
- (5, 'muscle', 'artifactual data due to muscle activity'),
- (6, 'epilepsy_interictal', 'period deemed interictal'),
- (7, 'epilepsy_preictal', 'onset of preictal state prior to onset of epilepsy'),
- (8, 'epilepsy_seizure', 'onset of epilepsy'),
- (9, 'epilepsy_postictal', 'postictal seizure period'),
- (10, 'epileptiform', 'unspecified epileptiform activity'),
- (11, 'epileptiform_single', 'a single epileptiform graphoelement (including possible slow wave)'),
- (12, 'epileptiform_run', 'a run of one or more epileptiform graphoelements'),
- (13, 'eye_blink', 'Eye blink'),
- (14, 'eye_movement', 'Smooth Pursuit / Saccadic eye movement'),
- (15, 'eye_fixation', 'Fixation onset'),
- (16, 'sleep_N1', 'sleep stage N1'),
- (17, 'sleep_N2', 'sleep stage N2'),
- (18, 'sleep_N3', 'sleep stage N3'),
- (19, 'sleep_REM', 'REM sleep'),
- (20, 'sleep_wake', 'sleep stage awake'),
- (21, 'sleep_spindle', 'sleep spindle'),
- (22, 'sleep_k-complex', 'sleep K-complex'),
- (23, 'scorelabeled', 'a global label indicating that the EEG has been annotated with SCORE.');
+-- Create `hed_schema` table
+CREATE TABLE `hed_schema` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `Name` varchar(255) NOT NULL,
+ `Version` varchar(255) NOT NULL,
+ `Description` text NULL,
+ `URL` varchar(255) NOT NULL UNIQUE,
+ PRIMARY KEY (`ID`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- Create `hed_schema_nodes` table
+CREATE TABLE `hed_schema_nodes` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ParentID` int(10) unsigned NULL,
+ `SchemaID` int(10) unsigned NOT NULL,
+ `Name` varchar(255) NOT NULL,
+ `LongName` varchar(255) NOT NULL,
+ `Description` text NOT NULL,
+ PRIMARY KEY (`ID`),
+ CONSTRAINT `FK_hed_parent_node`
+ FOREIGN KEY (`ParentID`)
+ REFERENCES `hed_schema_nodes` (`ID`),
+ CONSTRAINT `FK_hed_schema` FOREIGN KEY (`SchemaID`) REFERENCES `hed_schema` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- Create `physiological_task_event_hed_rel` table
+CREATE TABLE `physiological_task_event_hed_rel` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `PhysiologicalTaskEventID` int(10) unsigned NOT NULL,
+ `HEDTagID` int(10) unsigned NULL, -- Reference to hed_schema_nodes.ID. Can be null to only add parentheses
+ `TagValue` text NULL, -- For value tags
+ `HasPairing` boolean DEFAULT FALSE, -- Is grouped with #AdditionalMembers# members
+ `PairRelID` int(10) unsigned NULL, -- The `ID` of right side of the pair
+ `AdditionalMembers` int(10) unsigned DEFAULT 0, -- Number of additional members to encapsulate
+ PRIMARY KEY (`ID`),
+ CONSTRAINT `FK_physiological_task_event_hed_rel_pair` FOREIGN KEY (`PairRelID`)
+ REFERENCES `physiological_task_event_hed_rel` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ KEY `FK_physiological_task_event_hed_rel_2` (`HEDTagID`),
+ CONSTRAINT `FK_physiological_task_event_hed_rel_2` FOREIGN KEY (`HEDTagID`)
+ REFERENCES `hed_schema_nodes` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `FK_physiological_task_event_hed_rel_1` FOREIGN KEY (`PhysiologicalTaskEventID`)
+ REFERENCES `physiological_task_event` (`PhysiologicalTaskEventID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+-- Create `bids_event_dataset_mapping` table
+CREATE TABLE `bids_event_dataset_mapping` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ProjectID` int(10) unsigned NOT NULL,
+ `PropertyName` varchar(50) NOT NULL,
+ `PropertyValue` varchar(255) NOT NULL,
+ `HEDTagID` int(10) unsigned NULL, -- Reference to hed_schema_nodes.ID. Can be null to only add parentheses
+ `TagValue` text NULL, -- For value tags
+ `Description` TEXT NULL, -- Level Description
+ `HasPairing` BOOLEAN DEFAULT FALSE, -- Is grouped with #AdditionalMembers# members
+ `PairRelID` int(10) unsigned NULL, -- The `ID` of right side of the pair
+ `AdditionalMembers` int(10) unsigned DEFAULT 0, -- Number of additional members to encapsulate
+ PRIMARY KEY (`ID`),
+ INDEX idx_event_dataset_PropertyName_PropertyValue (`PropertyName`, `PropertyValue`),
+ CONSTRAINT `FK_project_id` FOREIGN KEY (`ProjectID`) REFERENCES `Project` (`ProjectID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `FK_dataset_hed_tag_id` FOREIGN KEY (`HEDTagID`) REFERENCES `hed_schema_nodes` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+
+-- Create `bids_event_file_mapping` table
+CREATE TABLE `bids_event_file_mapping` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `EventFileID` int(10) unsigned NOT NULL,
+ `PropertyName` varchar(50) NOT NULL,
+ `PropertyValue` varchar(255) NOT NULL,
+ `HEDTagID` int(10) unsigned NULL, -- Reference to hed_schema_nodes.ID. Can be null to only add parentheses
+ `TagValue` text NULL, -- For value tags
+ `Description` TEXT NULL, -- Level Description
+ `HasPairing` BOOLEAN DEFAULT FALSE, -- Is grouped with #AdditionalMembers# members
+ `PairRelID` int(10) unsigned NULL, -- The `ID` of right side of the pair
+ `AdditionalMembers` int(10) unsigned DEFAULT 0, -- Number of additional members to encapsulate
+ PRIMARY KEY (`ID`),
+ INDEX idx_event_file_PropertyName_PropertyValue (`PropertyName`, `PropertyValue`),
+ CONSTRAINT `FK_event_mapping_file_id` FOREIGN KEY (`EventFileID`) REFERENCES `physiological_event_file` (`EventFileID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `FK_file_hed_tag_id` FOREIGN KEY (`HEDTagID`) REFERENCES `hed_schema_nodes` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
diff --git a/SQL/New_patches/2024-01-29-Physiological-Events-Replace-Annotations.sql b/SQL/New_patches/2024-01-29-Physiological-Events-Replace-Annotations.sql
new file mode 100644
index 00000000000..3ca77e98491
--- /dev/null
+++ b/SQL/New_patches/2024-01-29-Physiological-Events-Replace-Annotations.sql
@@ -0,0 +1,17 @@
+-- Dropping all tables regarding annotations
+DROP TABLE physiological_annotation_archive;
+DROP TABLE physiological_annotation_rel;
+DROP TABLE physiological_annotation_instance;
+DROP TABLE physiological_annotation_parameter;
+DROP TABLE physiological_annotation_label;
+DROP TABLE physiological_annotation_file;
+DROP TABLE physiological_annotation_file_type;
+
+-- Event files are always associated to Projects, sometimes exclusively (dataset-scope events.json files)
+-- Add ProjectID and make PhysiologicalFileID DEFAULT NULL (ProjectID should ideally not be NULLable)
+ALTER TABLE `physiological_event_file`
+ CHANGE `PhysiologicalFileID` `PhysiologicalFileID` int(10) unsigned DEFAULT NULL,
+ ADD COLUMN `ProjectID` int(10) unsigned DEFAULT NULL AFTER `PhysiologicalFileID`,
+ ADD KEY `FK_physiological_event_file_project_id` (`ProjectID`),
+ ADD CONSTRAINT `FK_physiological_event_file_project_id`
+ FOREIGN KEY (`ProjectID`) REFERENCES `Project` (`ProjectID`);
diff --git a/SQL/New_patches/2024-01-30-HED-Tag-Support.sql b/SQL/New_patches/2024-01-30-HED-Tag-Support.sql
new file mode 100644
index 00000000000..aea5395fcb2
--- /dev/null
+++ b/SQL/New_patches/2024-01-30-HED-Tag-Support.sql
@@ -0,0 +1,105 @@
+-- Remove unused column
+ALTER TABLE `physiological_task_event` DROP COLUMN `AssembledHED`;
+
+-- Add indices for performance improvement
+ALTER TABLE `physiological_task_event` ADD INDEX idx_pte_EventValue (`EventValue`);
+ALTER TABLE `physiological_task_event` ADD INDEX idx_pte_TrialType (`TrialType`);
+
+-- Add ProjectID and make PhysiologicalFileID DEFAULT NULL
+ALTER TABLE `physiological_parameter_file`
+ CHANGE `PhysiologicalFileID` `PhysiologicalFileID` int(10) unsigned DEFAULT NULL,
+ ADD COLUMN `ProjectID` int(10) unsigned DEFAULT NULL AFTER `PhysiologicalFileID`,
+ ADD KEY `FK_physiological_parameter_file_project_id` (`ProjectID`),
+ ADD CONSTRAINT `FK_physiological_parameter_file_project_id`
+ FOREIGN KEY (`ProjectID`) REFERENCES `Project` (`ProjectID`);
+
+-- Create `hed_schema` table
+CREATE TABLE `hed_schema` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `Name` varchar(255) NOT NULL,
+ `Version` varchar(255) NOT NULL,
+ `Description` text NULL,
+ `URL` varchar(255) NOT NULL UNIQUE,
+ PRIMARY KEY (`ID`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- Create `hed_schema_nodes` table
+CREATE TABLE `hed_schema_nodes` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ParentID` int(10) unsigned NULL,
+ `SchemaID` int(10) unsigned NOT NULL,
+ `Name` varchar(255) NOT NULL,
+ `LongName` varchar(255) NOT NULL,
+ `Description` text NOT NULL,
+ PRIMARY KEY (`ID`),
+ CONSTRAINT `FK_hed_parent_node`
+ FOREIGN KEY (`ParentID`)
+ REFERENCES `hed_schema_nodes` (`ID`),
+ CONSTRAINT `FK_hed_schema` FOREIGN KEY (`SchemaID`) REFERENCES `hed_schema` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- Create `physiological_task_event_hed_rel` table
+CREATE TABLE `physiological_task_event_hed_rel` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `PhysiologicalTaskEventID` int(10) unsigned NOT NULL,
+ `HEDTagID` int(10) unsigned NULL, -- Reference to hed_schema_nodes.ID. Can be null to only add parentheses
+ `TagValue` text NULL, -- For value tags
+ `HasPairing` boolean DEFAULT FALSE, -- Is grouped with #AdditionalMembers# members
+ `PairRelID` int(10) unsigned NULL, -- The `ID` of right side of the pair
+ `AdditionalMembers` int(10) unsigned DEFAULT 0, -- Number of additional members to encapsulate
+ PRIMARY KEY (`ID`),
+ CONSTRAINT `FK_physiological_task_event_hed_rel_pair` FOREIGN KEY (`PairRelID`)
+ REFERENCES `physiological_task_event_hed_rel` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ KEY `FK_physiological_task_event_hed_rel_2` (`HEDTagID`),
+ CONSTRAINT `FK_physiological_task_event_hed_rel_2` FOREIGN KEY (`HEDTagID`)
+ REFERENCES `hed_schema_nodes` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `FK_physiological_task_event_hed_rel_1` FOREIGN KEY (`PhysiologicalTaskEventID`)
+ REFERENCES `physiological_task_event` (`PhysiologicalTaskEventID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- Create `bids_event_dataset_mapping` table
+CREATE TABLE `bids_event_dataset_mapping` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `ProjectID` int(10) unsigned NOT NULL,
+ `PropertyName` varchar(50) NOT NULL,
+ `PropertyValue` varchar(255) NOT NULL,
+ `HEDTagID` int(10) unsigned NULL, -- Reference to hed_schema_nodes.ID. Can be null to only add parentheses
+ `TagValue` text NULL, -- For value tags
+ `Description` TEXT NULL, -- Level Description
+ `HasPairing` BOOLEAN DEFAULT FALSE, -- Is grouped with #AdditionalMembers# members
+ `PairRelID` int(10) unsigned NULL, -- The `ID` of right side of the pair
+ `AdditionalMembers` int(10) unsigned DEFAULT 0, -- Number of additional members to encapsulate
+ PRIMARY KEY (`ID`),
+ CONSTRAINT `FK_bids_event_dataset_mapping_pair` FOREIGN KEY (`PairRelID`)
+ REFERENCES `bids_event_dataset_mapping` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ INDEX idx_event_dataset_PropertyName_PropertyValue (`PropertyName`, `PropertyValue`),
+ CONSTRAINT `FK_project_id` FOREIGN KEY (`ProjectID`) REFERENCES `Project` (`ProjectID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `FK_dataset_hed_tag_id` FOREIGN KEY (`HEDTagID`) REFERENCES `hed_schema_nodes` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+
+-- Create `bids_event_file_mapping` table
+CREATE TABLE `bids_event_file_mapping` (
+ `ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `EventFileID` int(10) unsigned NOT NULL,
+ `PropertyName` varchar(50) NOT NULL,
+ `PropertyValue` varchar(255) NOT NULL,
+ `HEDTagID` int(10) unsigned NULL, -- Reference to hed_schema_nodes.ID. Can be null to only add parentheses
+ `TagValue` text NULL, -- For value tags
+ `Description` TEXT NULL, -- Level Description
+ `HasPairing` BOOLEAN DEFAULT FALSE, -- Is grouped with #AdditionalMembers# members
+ `PairRelID` int(10) unsigned NULL, -- The `ID` of right side of the pair
+ `AdditionalMembers` int(10) unsigned DEFAULT 0, -- Number of additional members to encapsulate
+ PRIMARY KEY (`ID`),
+ CONSTRAINT `FK_bids_event_file_mapping_pair` FOREIGN KEY (`PairRelID`)
+ REFERENCES `bids_event_file_mapping` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ INDEX idx_event_file_PropertyName_PropertyValue (`PropertyName`, `PropertyValue`),
+ CONSTRAINT `FK_event_mapping_file_id` FOREIGN KEY (`EventFileID`) REFERENCES `physiological_event_file` (`EventFileID`) ON DELETE CASCADE ON UPDATE CASCADE,
+ CONSTRAINT `FK_file_hed_tag_id` FOREIGN KEY (`HEDTagID`) REFERENCES `hed_schema_nodes` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+
+
+
+
+
diff --git a/SQL/New_patches/2024-02-31-api_docs_permission_visible.sql b/SQL/New_patches/2024-02-31-api_docs_permission_visible.sql
new file mode 100644
index 00000000000..7158950fa0f
--- /dev/null
+++ b/SQL/New_patches/2024-02-31-api_docs_permission_visible.sql
@@ -0,0 +1,2 @@
+UPDATE permissions SET moduleID = (SELECT ID FROM modules WHERE Name='api_docs'), description = "LORIS API Manual", `action` = "View" WHERE code = "api_docs";
+
diff --git a/SQL/New_patches/2024-03-11-changePermissionCodeToDictionary.sql b/SQL/New_patches/2024-03-11-changePermissionCodeToDictionary.sql
new file mode 100644
index 00000000000..c228a83f5f5
--- /dev/null
+++ b/SQL/New_patches/2024-03-11-changePermissionCodeToDictionary.sql
@@ -0,0 +1,3 @@
+UPDATE permissions
+SET moduleID = (select ID FROM modules WHERE Name = 'dictionary')
+WHERE moduleID IN (SELECT ID FROM modules WHERE Name = 'datadict');
diff --git a/htdocs/.htaccess b/htdocs/.htaccess
index 673f34ed716..389687ba1cc 100644
--- a/htdocs/.htaccess
+++ b/htdocs/.htaccess
@@ -10,6 +10,6 @@ RewriteRule ^([a-zA-Z_-]+)/ajax/([a-zA-Z0-9_.-]+)$ AjaxHelper.php?Module=$1&scri
RewriteCond "%{REQUEST_FILENAME}" "!-f" [OR]
# Redirect homepage URLs to also use index.php
RewriteCond "%{REQUEST_FILENAME}" "(\/main\.php)$"
-RewriteRule ^(.*)$ index.php?lorispath=$1 [QSA,L]
+RewriteRule ^(.*)$ index.php?lorispath=$1 "[QSA,L,B= ?,BNP]"
diff --git a/htdocs/index.php b/htdocs/index.php
index 2370f1b6837..7c2b3cfc2e7 100644
--- a/htdocs/index.php
+++ b/htdocs/index.php
@@ -41,6 +41,24 @@
$serverrequest = \Laminas\Diactoros\ServerRequestFactory::fromGlobals();
+// Remove the lorispath from the URI query parameters.
+// Both the request query parameters and the URI query string must be updated.
+$params = $serverrequest->getQueryParams();
+unset($params['lorispath']);
+$serverrequest = $serverrequest->withQueryParams($params);
+
+$query = implode(
+ "&",
+ array_map(
+ fn ($key, $value) => $key . "=" . $value,
+ array_keys($params),
+ $params
+ )
+);
+
+$uri = $serverrequest->getUri();
+$serverrequest = $serverrequest->withUri($uri->withQuery($query));
+
// Now that we've created the ServerRequest, handle it.
$factory = \NDB_Factory::singleton();
$user = $factory->user();
diff --git a/htdocs/main.css b/htdocs/main.css
index 994bfb6636e..f2d6b7091e9 100644
--- a/htdocs/main.css
+++ b/htdocs/main.css
@@ -647,7 +647,6 @@ td.MenuWidth2 input[type=text] {
height: 3em;
width: 100%;
font-size: 14px;
- font-color #000000:
color: #000;
text-align: center;
vertical-align: bottom;
@@ -683,12 +682,13 @@ tr.directentry {
border-color: #246EB6;
border-top: none;
border-width: 1px;
- position: absolute;
- left: 0px;
+ position: fixed;
+ right: 0;
overflow-y: auto;
z-index: 999;
transition: all 0.6s ease 0s;
width: 320px;
+ max-height: 100vh;
}
.help-content h1 {
diff --git a/jsx/MultiSelectDropdown.js b/jsx/MultiSelectDropdown.js
index 69badd050d1..2658d60de95 100644
--- a/jsx/MultiSelectDropdown.js
+++ b/jsx/MultiSelectDropdown.js
@@ -8,7 +8,7 @@ import PropTypes from 'prop-types';
* Note this is only used in DQT
* For generic SelectDropdown, see Select in Form.js
*/
-class SelectField extends Component {
+export class SelectField extends Component {
/**
* @constructor
* @param {object} props - React Component properties
@@ -64,7 +64,7 @@ SelectField.propTypes = {
/**
* Search Field React component
*/
-class SearchField extends Component {
+export class SearchField extends Component {
/**
* @constructor
* @param {object} props - React Component properties
@@ -127,7 +127,7 @@ SearchField.propTypes = {
/**
* Select Dropdown React component
*/
-class SelectDropdown extends Component {
+export class SelectDropdown extends Component {
/**
* @constructor
* @param {object} props - React Component properties
diff --git a/modules/battery_manager/jsx/batteryManagerForm.js b/modules/battery_manager/jsx/batteryManagerForm.js
index 78713371c66..c41342c18dd 100644
--- a/modules/battery_manager/jsx/batteryManagerForm.js
+++ b/modules/battery_manager/jsx/batteryManagerForm.js
@@ -1,6 +1,12 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
-import {NumericElement} from 'jsx/Form';
+import {
+ ButtonElement,
+ FormElement,
+ StaticElement,
+ SelectElement,
+ NumericElement,
+} from 'jsx/Form';
/**
* Battery Manager Form
diff --git a/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js b/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js
index e966aebd16b..ff9523d3e4b 100644
--- a/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js
+++ b/modules/behavioural_qc/jsx/tabs_content/behaviouralFeedback.js
@@ -128,6 +128,10 @@ class BehaviouralFeedback extends Component {
'&sessionID=' +
rowData['sessionID'];
bvlLevel ='Visit : ' + rowData['Visit'];
+ } else {
+ bvlLink = this.props.baseURL +
+ '/' + rowData['DCCID'];
+ bvlLevel ='Profile : ' + rowData['PSCID'];
}
reactElement = (
diff --git a/modules/behavioural_qc/php/provisioners/behaviouralprovisioner.class.inc b/modules/behavioural_qc/php/provisioners/behaviouralprovisioner.class.inc
index ed705c2a150..727573fbd2a 100644
--- a/modules/behavioural_qc/php/provisioners/behaviouralprovisioner.class.inc
+++ b/modules/behavioural_qc/php/provisioners/behaviouralprovisioner.class.inc
@@ -29,9 +29,9 @@ class BehaviouralProvisioner extends \LORIS\Data\Provisioners\DBObjectProvisione
fb.CandID AS _candID,
ca.PSCID AS _pscID,
s.Visit_label AS _visit,
- s.ProjectID AS _project,
+ COALESCE(s.ProjectID, ca.RegistrationProjectID) AS _project,
s.CohortID AS _cohort,
- psc.CenterID AS _site,
+ COALESCE(psc.CenterID, psc2.CenterID) AS _site,
fb.FeedbackID AS _feedbackID,
fb.SessionID AS _sessionID,
fb.CommentID AS _commentID,
@@ -42,10 +42,9 @@ class BehaviouralProvisioner extends \LORIS\Data\Provisioners\DBObjectProvisione
FROM
feedback_bvl_thread AS fb
JOIN candidate ca ON (ca.CandID = fb.CandID)
- JOIN session s ON (s.ID = fb.SessionID)
- JOIN psc ON (s.CenterID = psc.CenterID)
- JOIN project_cohort_rel psr ON
- (s.CohortID = psr.CohortID)
+ LEFT JOIN session s ON (s.ID = fb.SessionID)
+ LEFT JOIN psc ON (s.CenterID = psc.CenterID)
+ LEFT JOIN psc psc2 ON (ca.RegistrationCenterID=psc2.CenterID)
LEFT JOIN flag f ON (fb.CommentID = f.CommentID)
LEFT JOIN test_names tn ON (tn.Test_name = f.Test_name)
WHERE
diff --git a/modules/bvl_feedback/test/TestPlan.md b/modules/bvl_feedback/test/TestPlan.md
index 49a6334c8a1..f11e02d28a5 100644
--- a/modules/bvl_feedback/test/TestPlan.md
+++ b/modules/bvl_feedback/test/TestPlan.md
@@ -13,7 +13,9 @@
* Feedback Threads
5. Click on the chevron arrow on each section and make sure it toggles open/closed.
6. Type something in the 'New profile level feedback' text box and choose a 'Feedback Type' from the dropdown. Click 'Create thread'.
-7. 'Open Thread Summary' and 'Feedback Threads' should update with the submitted thread.
+7. Make sure that the thread was inserted in the `feedback_bvl_thread` table, with `Feedback_level`: 'profile' and the correct `Feedback_type`.
+ Also make sure that an appropriate `feedback_bvl_entry` was created that references the thread's `FeedbackID`.
+8. 'Open Thread Summary' and 'Feedback Threads' should update with the submitted thread.
* Open Thread Summary
* QC class should be what page the feedback was submitted on (i.e. profile, instrument)
* Instrument should be populated if QC class is instrument
@@ -25,14 +27,15 @@
* The Feedback Type should appear under 'Type'
* Current user and date should appear under 'Author'
* 'Status' should be set to 'opened'
-8. You should be able to see the original text box thread entry. If you click the chevron the thread comments should be hidden.
-9. Click on the comment icon and 'Add a comment'. Click on 'Submit'. You should be able to see the original text box thread entry and the one you just entered.
-10. Click on 'opened' and choose a different status. Status should be updated.
-11. Click on the pencil icon and you should be able to update the comment.
-12. Click on the delete icon and the comment should be deleted.
+9. You should be able to see the original text box thread entry. If you click the chevron the thread comments should be hidden.
+10. Click on the comment icon and 'Add a comment'. Click on 'Submit'. You should be able to see the original text box thread entry and the one you just entered.
+11. Click on 'opened' and choose a different status. Status should be updated.
+12. Click on the pencil icon and you should be able to update the comment.
+13. Click on the delete icon and the comment should be deleted.
+14. Make sure the update and delete operations are properly reflected in the `feedback_bvl_entry` table.
### Widget registration on the dashboard page
-11. Verify that if a user has the 'bvl_feedback' permission, the latest Behavioural Feedback Notifications are displayed (4 at most) in the Behavioural Feedback panel. Clicking on a feedback thread will take you to the proper page.
-12. Check that if a document notification occurred since the last login, it is labeled as 'New' in the Behavioural Feedback panel.
-13. Check that a 'New' notification is not labeled 'New' anymore after login in again.
+15. Verify that if a user has the 'bvl_feedback' permission, the latest Behavioural Feedback Notifications are displayed (4 at most) in the Behavioural Feedback panel. Clicking on a feedback thread will take you to the proper page.
+16. Check that if a document notification occurred since the last login, it is labeled as 'New' in the Behavioural Feedback panel.
+17. Check that a 'New' notification is not labeled 'New' anymore after login in again.
diff --git a/modules/candidate_profile/jsx/CandidateInfo.js b/modules/candidate_profile/jsx/CandidateInfo.js
index 06dfdef57b9..05f196a5c10 100644
--- a/modules/candidate_profile/jsx/CandidateInfo.js
+++ b/modules/candidate_profile/jsx/CandidateInfo.js
@@ -136,7 +136,7 @@ export class CandidateInfo extends Component {
},
{
label: subprojlabel,
- value: cohorts,
+ value: cohorts.join(', '),
},
{
label: 'Site',
diff --git a/modules/configuration/jsx/configuration_helper.js b/modules/configuration/jsx/configuration_helper.js
index 4be71bf2273..45c6aacc3e8 100644
--- a/modules/configuration/jsx/configuration_helper.js
+++ b/modules/configuration/jsx/configuration_helper.js
@@ -39,11 +39,9 @@ $(function() {
$('.btn-remove').on('click', function(e) {
e.preventDefault();
- let options = $(this).parent().parent().children().prop('options');
- let selectedIndex = $(this)
- .parent().parent().children()
- .prop('selectedIndex');
- let selectedOption = options[selectedIndex].text;
+ let selectedOption = $(this).parent().parent().children()
+ .prop('value');
+
let fieldName = $(this)
.parent().parent().parent().parent().parent().children()
.attr('data-original-title');
diff --git a/modules/conflict_resolver/README.md b/modules/conflict_resolver/README.md
index 7bfaa9d48e9..cc49440324d 100644
--- a/modules/conflict_resolver/README.md
+++ b/modules/conflict_resolver/README.md
@@ -34,7 +34,7 @@ will not be enforced by LORIS.
## Permissions
-Accessing the module requires the `conflict_resolver` permission.
+Accessing the module requires the `conflict_resolver` permission, as well as either 'Dictionary: Edit Parameter Type Descriptions' or 'Dictionary: Edit Parameter Type Descriptions'.
A user should only see conflicts at the sites at which the user is
a member.
diff --git a/modules/conflict_resolver/php/conflict_resolver.class.inc b/modules/conflict_resolver/php/conflict_resolver.class.inc
index b3583cdd77c..08c3ced9548 100644
--- a/modules/conflict_resolver/php/conflict_resolver.class.inc
+++ b/modules/conflict_resolver/php/conflict_resolver.class.inc
@@ -38,7 +38,10 @@ class Conflict_Resolver extends \NDB_Page
*/
function _hasAccess(\User $user) : bool
{
- return $user->hasPermission('conflict_resolver');
+ $hasConflictPerm = $user->hasPermission('conflict_resolver');
+ $dictPerms = ['data_dict_edit', 'data_dict_view'];
+ $hasDictPerms = $user->hasAnyPermission($dictPerms);
+ return $hasConflictPerm && $hasDictPerms;
}
/**
diff --git a/modules/conflict_resolver/test/TestPlan.md b/modules/conflict_resolver/test/TestPlan.md
index 2705e920492..28aa1a1bdb1 100644
--- a/modules/conflict_resolver/test/TestPlan.md
+++ b/modules/conflict_resolver/test/TestPlan.md
@@ -5,6 +5,7 @@
2. Menu item loads the module page
3. Check for existence of 'Resolving conflicts' permission checkbox on 'User Accounts > Edit User'
Verify that the permission works as expected (hides menu item and blocks page access)
+ 4. Check that access will be blocked for users who dont have either the 'Dictionary: Edit Parameter Type Descriptions' or 'Dictionary: View Parameter Type Descriptions'
2. Verify the following conditions are required for creation of new unresolved conflict
to be instantiated in the module table:[Manual Testing]
1. Double data entry active on instrument
diff --git a/modules/conflict_resolver/test/conflict_resolverTest.php b/modules/conflict_resolver/test/conflict_resolverTest.php
index 1b04224da90..6725d808ae9 100644
--- a/modules/conflict_resolver/test/conflict_resolverTest.php
+++ b/modules/conflict_resolver/test/conflict_resolverTest.php
@@ -94,13 +94,16 @@ function tearDown(): void
*/
function testConflictResolverPermission()
{
- $this->checkPagePermissions(
- '/conflict_resolver/',
- [
- 'conflict_resolver'
- ],
- "Conflict Resolver"
- );
+ $permissionList = ["conflict_resolver","data_dict_edit","data_dict_view"];
+ $this->setupPermissions($permissionList);
+ $this->safeGet($this->url . "/conflict_resolver/");
+ $bodyElement = $this->safeFindElement(WebDriverBy::cssSelector("body"));
+ $bodyText = $bodyElement->getText();
+ $accessError = "You do not have access to this page.";
+ $this->assertStringNotContainsString($accessError, $bodyText);
+ $loadingError = "An error occured while loading the page.";
+ $this->assertStringNotContainsString($loadingError, $bodyText);
+ $this->resetPermissions();
}
/**
* Tests clear button in the form
diff --git a/modules/dashboard/test/DashboardTest.php b/modules/dashboard/test/DashboardTest.php
index 4a42da2ca7c..add728ee714 100644
--- a/modules/dashboard/test/DashboardTest.php
+++ b/modules/dashboard/test/DashboardTest.php
@@ -429,6 +429,8 @@ public function testConflictResolver()
[
"conflict_resolver",
"access_all_profiles",
+ "data_dict_edit",
+ "data_dict_view"
]
);
$this->safeGet($this->url . '/dashboard/');
diff --git a/modules/data_release/php/data_release.class.inc b/modules/data_release/php/data_release.class.inc
index 4234b671416..63bb7ec4f8c 100644
--- a/modules/data_release/php/data_release.class.inc
+++ b/modules/data_release/php/data_release.class.inc
@@ -24,7 +24,7 @@ namespace LORIS\data_release;
* @link https://www.github.com/aces/Loris
*/
-class Data_Release extends \NDB_Menu_Filter
+class Data_Release extends \DataFrameworkMenu
{
public $AjaxModule = true;
public $skipTemplate = true;
@@ -48,55 +48,6 @@ class Data_Release extends \NDB_Menu_Filter
);
}
- /**
- * Setup all the class variables needed for the data release menu page
- *
- * @return void
- */
- function _setupVariables()
- {
- $user =& \User::singleton();
- $DB = $this->loris->getDatabaseConnection();
-
- // set the class variables
- $this->columns = [
- 'file_name AS fileName',
- 'IF(version is null or version ="","Unversioned", version) AS version',
- 'upload_date AS uploadDate',
- 'dr.id as dataReleaseID',
- ];
- $this->query = " FROM data_release dr";
-
- if (!$user->hasPermission("superuser")) {
- $this->query .= " JOIN data_release_permissions drp
- ON (dr.id=drp.data_release_id)
- JOIN users u ON (u.ID=drp.userid)
- WHERE u.UserID=".$DB->quote($user->getUsername());
- }
-
- $this->group_by = '';
- $this->order_by = 'uploadDate';
- }
-
- /**
- * Create the form for the data release menu page
- *
- * @return void
- **/
- function setup()
- {
- parent::setup();
-
- $db = $this->loris->getDatabaseConnection();
-
- $this->fieldOptions = [
- 'users' => $this->getUsersList($db),
- 'versions' => $this->getVersionsList($db),
- 'filenames' => $this->getFilesList($db),
- ];
- }
-
-
/**
* Greps the list of users available in the users database table.
*
@@ -143,7 +94,7 @@ class Data_Release extends \NDB_Menu_Filter
* @param \Database $DB database handle
*
* @return array $versionList Array of version names indexed by version
- * name.
+ * name.
*/
function getVersionsList(\Database $DB)
{
@@ -247,6 +198,62 @@ class Data_Release extends \NDB_Menu_Filter
return $userFiles;
}
+ /**
+ * Function getFieldOptions
+ *
+ * @return array
+ */
+ protected function getFieldOptions() : array
+ {
+ $db = $this->loris->getDatabaseConnection();
+ return [
+ 'users' => $this->getUsersList($db),
+ 'versions' => $this->getVersionsList($db),
+ 'filenames' => $this->getFilesList($db),
+ ];
+ }
+
+ /**
+ * Tells the base class that this page's provisioner can support
+ * the UserSiteMatch filter.
+ *
+ * @return bool always false
+ */
+ public function useSiteFilter() : bool
+ {
+ return false;
+ }
+
+ /**
+ * {@inheritDoc}
+ *
+ * @return ?array of site permissions or null
+ */
+ public function allSitePermissionNames() : ?array
+ {
+ return null;
+ }
+
+ /**
+ * {@inheritDoc}
+ *
+ * @return bool
+ */
+ public function useProjectFilter() : bool
+ {
+ return false;
+ }
+
+ /**
+ * {@inheritDoc}
+ *
+ * @return \Loris\Data\Provisioner
+ */
+ public function getBaseDataProvisioner(): \LORIS\Data\Provisioner
+ {
+ return new DataReleaseProvisioner();
+ }
+
/**
* Include the column formatter
*
diff --git a/modules/data_release/php/datareleaseprovisioner.class.inc b/modules/data_release/php/datareleaseprovisioner.class.inc
new file mode 100644
index 00000000000..73939c2c7bf
--- /dev/null
+++ b/modules/data_release/php/datareleaseprovisioner.class.inc
@@ -0,0 +1,76 @@
+
+ * @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3
+ * @link https://www.github.com/aces/Loris/
+ */
+
+namespace LORIS\data_release;
+
+/**
+ * This class implements a data provisioner to get all data released files
+ * for the data_release menu page.
+ *
+ * PHP Version 7
+ *
+ * @category Core
+ * @package Main
+ * @subpackage Core
+ * @author Rolando Acosta
+ * @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3
+ * @link https://www.github.com/aces/Loris/
+ */
+
+class DataReleaseProvisioner extends \LORIS\Data\Provisioners\DBRowProvisioner
+{
+ /**
+ * Create a DataReleaseProvisioner, which gets releases for the
+ * data release menu table.
+ */
+ function __construct()
+ {
+ $user =& \User::singleton();
+ $query = "
+ SELECT
+ file_name AS fileName,
+ IF(version is null or version ='','Unversioned', version) AS version,
+ upload_date AS uploadDate,
+ dr.id as dataReleaseID
+ FROM data_release dr";
+
+ if (!$user->hasPermission("superuser")) {
+ $query .= "
+ INNER JOIN
+ data_release_permissions drp
+ ON
+ (dr.id=drp.data_release_id)
+ WHERE
+ drp.UserID=".$user->getID();
+ }
+
+ $query .= " ORDER BY uploadDate";
+
+ parent::__construct($query, []);
+ }
+
+ /**
+ * Returns an instance of a DataReleaseRow object for a given
+ * table row.
+ *
+ * @param array $row The database row from the LORIS Database class.
+ *
+ * @return \LORIS\Data\DataInstance An instance representing this row.
+ */
+ public function getInstance($row) : \LORIS\Data\DataInstance
+ {
+ return new DataReleaseRow($row);
+ }
+}
diff --git a/modules/data_release/php/datareleaserow.class.inc b/modules/data_release/php/datareleaserow.class.inc
new file mode 100644
index 00000000000..f1ec2d5c702
--- /dev/null
+++ b/modules/data_release/php/datareleaserow.class.inc
@@ -0,0 +1,51 @@
+
+ * @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3
+ * @link https://www.github.com/aces/Loris/
+ */
+
+namespace LORIS\data_release;
+
+/**
+ * A DataReleaseRow represents a row in the data_release menu table.
+ *
+ * @category Core
+ * @package Main
+ * @subpackage Core
+ * @author Rolando Acosta
+ * @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3
+ * @link https://www.github.com/aces/Loris/
+ */
+class DataReleaseRow implements \LORIS\Data\DataInstance
+{
+ protected $DBRow;
+
+ /**
+ * Create a new DataReleaseRow
+ *
+ * @param array $row The row
+ */
+ public function __construct(array $row)
+ {
+ $this->DBRow = $row;
+ }
+
+ /**
+ * Implements \LORIS\Data\DataInstance interface for this row.
+ *
+ * @return array which can be serialized by json_encode()
+ */
+ public function jsonSerialize() : array
+ {
+ return $this->DBRow;
+ }
+}
diff --git a/modules/dataquery/help/dataquery.md b/modules/dataquery/help/dataquery.md
new file mode 100644
index 00000000000..18dba33c2da
--- /dev/null
+++ b/modules/dataquery/help/dataquery.md
@@ -0,0 +1,31 @@
+# Data Query
+
+This module allows you to query data within LORIS.
+There are three steps to defining a query:
+
+- First, you must select the fields that you're
+ interested in on the **Define Fields** page.
+- Next, you can optionally define filters on the
+ **Define Filters** page to restrict the population
+ that is returned.
+- Finally, you view your query results on the **View Data** page
+
+The **Next Steps** on the bottom right of your screen always the
+context-sensitive next steps that you can do to build your query.
+
+Your recently run queries will be displayed in the **Recent Queries** panel
+on the first screen of the module (you can return to it at any time by using
+the LORIS breadcrumbs.) Instead of building a new query, you can reload a
+query that you've recently run by clicking on the load icon next to the query.
+
+Queries can be shared with others by clicking the share icon.
+This will cause the query to be shared with all users who
+have access to the fields used by the query. It will display
+in a **Shared Queries** panel below the **Recent Queries**.
+
+You may also give a query a name at any time by clicking the
+pencil icon. This makes it easier to find queries you care
+about by giving them an easier to remember name that can be used
+for filtering. When you share a query, the name will be shared
+along with it.
+
diff --git a/modules/dataquery/jsx/components/expansionpanels.tsx b/modules/dataquery/jsx/components/expansionpanels.tsx
index c8a5510fa73..960b8b90755 100644
--- a/modules/dataquery/jsx/components/expansionpanels.tsx
+++ b/modules/dataquery/jsx/components/expansionpanels.tsx
@@ -16,6 +16,7 @@ const ExpansionPanels = (props: {
content: React.ReactElement,
defaultOpen?: boolean,
alwaysOpen: boolean,
+ id: string,
}[]
}) => {
return (
@@ -24,6 +25,7 @@ const ExpansionPanels = (props: {
{ props.panels.map((panel, index) => (
diff --git a/modules/dataquery/jsx/definefilters.tsx b/modules/dataquery/jsx/definefilters.tsx
index 3e97e519ab7..bce5c2cc9ea 100644
--- a/modules/dataquery/jsx/definefilters.tsx
+++ b/modules/dataquery/jsx/definefilters.tsx
@@ -289,6 +289,7 @@ function DefineFilters(props: {
0
);
setModalGroup(newquery);
+ setDeleteItemIndex(null);
}}
onMouseEnter={() => setDeleteItemIndex(0)}
onMouseLeave={() => setDeleteItemIndex(null)}
diff --git a/modules/dataquery/jsx/nextsteps.tsx b/modules/dataquery/jsx/nextsteps.tsx
index 6293533bc46..0264501e693 100644
--- a/modules/dataquery/jsx/nextsteps.tsx
+++ b/modules/dataquery/jsx/nextsteps.tsx
@@ -145,6 +145,7 @@ function NextSteps(props: {
display: 'flex',
alignItems: 'stretch',
height: 120,
+ paddingRight: '14px',
}}>
Next Steps
diff --git a/modules/dataquery/jsx/welcome.tsx b/modules/dataquery/jsx/welcome.tsx
index c5b0a0bea36..bcd70584916 100644
--- a/modules/dataquery/jsx/welcome.tsx
+++ b/modules/dataquery/jsx/welcome.tsx
@@ -57,6 +57,7 @@ function Welcome(props: {
content: React.ReactElement,
alwaysOpen: boolean,
defaultOpen: boolean,
+ id: string,
}[] = [];
if (props.topQueries.length > 0) {
panels.push({
@@ -82,6 +83,7 @@ function Welcome(props: {
),
alwaysOpen: false,
defaultOpen: true,
+ id: 'p1',
});
}
panels.push({
@@ -92,6 +94,7 @@ function Welcome(props: {
/>,
alwaysOpen: false,
defaultOpen: true,
+ id: 'p2',
});
panels.push({
title: 'Recent Queries',
@@ -120,6 +123,7 @@ function Welcome(props: {
),
alwaysOpen: false,
defaultOpen: true,
+ id: 'p3',
});
if (props.sharedQueries.length > 0) {
@@ -145,6 +149,7 @@ function Welcome(props: {
),
alwaysOpen: false,
defaultOpen: true,
+ id: 'p4',
});
}
diff --git a/modules/dataquery/test/TestPlan.md b/modules/dataquery/test/TestPlan.md
new file mode 100644
index 00000000000..bf919a98b8b
--- /dev/null
+++ b/modules/dataquery/test/TestPlan.md
@@ -0,0 +1,118 @@
+# Data Query - Test Plan
+
+## Welcome page
+
+1. Ensure the module loads only for a user that has the `dataquery_view` permission.
+2. Assert that: `Instructions` panel, `Recent Queries` panel, and `Next Steps` panel (bottom-right corner) collapse as expected.
+3. Assert that: `Continue to Define Fields` button in the main panel, and `Choose Fields` button in the `Next Steps` panel are redirecting to the same page.
+4. `Recent Queries` panel
+ 1. If not queries are available, make some so they will be added to this section.
+ 2. Assert that: queries you made have their parameters correctly displayed (i.e. fields and filters).
+ 3. Assert that: `text filter` immediately filter the queries.
+ 4. Assert that: clicking `Collapse queries` effectively collapse all queries.
+ 5. Make a mix of the following action on different queries: `Star` some queries, `Name` some queries, `Share` some queries, `Rerun` some queries.
+ 6. Assert that: starred queries have a yellow star, shared queries have a blue shared state.
+ 7. Assert that using the `Starred Only` checkbox filter only keep the starred one.
+ 8. Assert that removing the `Starred Only` checkbox prints the same queries originally printed.
+ 9. Repeat 3.5. and 3.6. for `Shared Only`, `Named Only` and `No run times` checkboxes.
+ 10. Assert that: mixing checkboxes returns the right query selection. Only queries that match all of the checked conditions should be displayed.
+ 11. Remove all pinned queries.
+ 12. Assert that: there is no `Study Queries` panel at the top of the page.
+ 13. Click the `Pin` icon to pin some queries.
+ 1. With and empty text in the `query name` text field, click the `Submit` button.
+ 2. Assert that: the error message `Must provide a query name to pin query as.` is triggered.
+ 3. Unchecking all checkboxes (i.e. `Pin Study Query` and `Pin Dashboard Summary`).
+ 4. Assert that: clicking `Submit` triggers the error message `Must pin as study query or pin to dashboard.`.
+ 5. Check the `Pin Study Query` checkbox and click the submit button.
+ 6. Assert that: the query is now pinned at the top of the page in the `Study Queries` panel.
+ 7. Go to LORIS main page by clicking the `LORIS` name in the top-left corner.
+ 8. Assert that: the query is **NOT** displayed inside the right-side `Study Queries` panel.
+ 9. Go back to the module.
+ 10. Create a new named pinned query, only checking the `Pin Dashboard Summary` this time.
+ 11. Assert that: the query is **NOT** pinned at the top of the page in the `Study Queries` panel.
+ 12. Go to LORIS main page by clicking the `LORIS` name in the top-left corner.
+ 13. Assert that: the query is displayed inside the right-side `Study Queries` panel.
+ 14. Click the pinned query.
+ 15. Assert that: the confirmation message `Query loaded` is displayed and query can immediately be executed.
+ 16. Try pinning a query with both `Pin Study Query` and `Pin Dashboard Summary` options.
+ 17. Assert that: both `Study Queries` in the dataquery module **AND** `Study Queries` in LORIS welcome page are displayed.
+ 14. Assert that: the query is now pinned at the top of the page, in `Study Queries` panel.
+ 15. Go back to `LORIS main page`.
+ 16. Assert that: `starred queries` are available in the right side `Starred Queries` panel.
+ 17. Assert that: clinking on any `starred query` send you back to dataquery module with the selected query loaded (bottom-right panel already with the `Run Query` button active).
+ 18. Go back to `LORIS main page`.
+ 19. Assert that: `pinned queries` are available in the right side `Study Queries` panel.
+ 20. Assert that: clinking on any `study query` send you back to dataquery module with the selected query loaded (bottom-right panel already with the `Run Query` button active).
+
+## Fields selection page
+
+### No visits
+
+1. Select the `Candidate Identifiers` field category in the top dropdown bar.
+2. Assert that: default visits are loaded, fields for this category are loaded.
+3. Assert that: clicking on a candidate-level field such as `CandID` or `PSCID` only highlights the line **AND DOES NOT** add visit information on the same line.
+4. Assert that: clicking `Add all` button adds all displayed fields in the right column.
+5. Assert that: clicking `Remove all` button removes all selected fields from the right column.
+6. Assert that: clicking `Remove all` button another time with no selected fields does nothing.
+7. Enter some text in the fields search bar with `Filter within category` placeholder.
+8. Assert that: clicking `Add all` button only adds the displayed filtered fields in the right column.
+9. Assert that: clicking `Add all` button another time does nothing
+10. Remove all selected fields from right column.
+11. Remove text from fields filter bar.
+12. Click the `Add all` button.
+13. Assert that: clicking the `Clear` button in the `Selected Fields` column effectively clears all selected fields.
+14. Click the `Add all` button.
+15. Assert that: clicking the `trashbin icon` in the `Selected Fields` column effectively removes the selected field **AND** the active selection in the main table.
+16. Assert that: clicking some selected fields in the main table (grey-ish lines in the table) also remove them from the selected column (toggle interaction).
+
+### Visits
+
+1. Select the `Other parameters` field category in the top dropdown bar.
+2. Assert that: default visits are loaded, fields for this category are loaded.
+3. Assert that: clicking on a field such as `VisitLabel` or `Project` greys the line **AND** adds visit information on the same line.
+4. Assert that: removing visits from `Default Visits` allows to reselect them, either by clicking the right arrow, or by entering corresponding text in the text area.
+5. Make sure the `Sync with selected fields` is **NOT** checked out.
+6. Add all visits from `Default Visits` box.
+7. Click some fields in the list.
+8. Assert that: selected fields should have a visit selection box each.
+9. Assert that: all visits should be displayed in the field lines (same as those ni the `Default Visits` box).
+10. Assert that: all selected fields in the right column have all visits described.
+11. Remove some visits from `Default Visits` box.
+12. Click on other fields.
+13. Assert that: new field visits only reflects what the `Default Visits` box is showing.
+14. Assert that: new selected fields in the right column only have the newly default visits.
+15. Check `Sync with selected field` checkbox.
+16. Assert that: fields that were previously with all visits now are only with the selected visits in `Default Visits`.
+17. Make sure field visits are still updatable independently (line by line).
+18. Make sure if `Default Visits` are changed, it affects all fields.
+
+
+## Filters selection page
+
+1. Make sure no filter are already selected. The sentence `Currently querying for ALL candidates` should be displayed.
+2. Make sure the blue notification saying `Note that only candidates which you have permission to access in LORIS are included in results. Number of results may vary from other users running the same query.` is there.
+3. Make sure a preview of the number of candidates matched is displayed in the top-right hand corner.
+4. Make sure the `Add Condition` button triggers field select modal.
+ 1. Add a field as a filter.
+ 2. Assert that: the condition now appears in the filter list.
+ 3. Assert that: `Add Condition` and `Import from CSV` buttons are now replaced by `Add "and" condition` and `Add "or" condition`.
+ 4. Assert that: the top-right corner is updated.
+5. Remove added conditions with the trashbin icon on the right.
+6. Make sure `Import from CSV` button feature an upload modal.
+ 1. Assert that: sending something different than CSV ends with an `Invalid CSV` alert.
+ 2. Test file import by creating and importing different files with the preset options (candidates vs. sessions, DCCID vs. PSCID, with or without headers).
+7. Ensure conditions are organized by making several queries with various operators (AND/OR) and depths (condition groups).
+8. Click on `Run query` button.
+
+
+## Run query page
+
+1. Assert that: the message `Query not yet run` is displayed when page loads.
+2. Assert that: changing the `header display format` dropdown immediately changes the table header.
+3. Assert that: changing the `Display visits as` dropdown immediately changes the table organization.
+4. Assert that: `Display visits as = inline values (no download)` has a `Display empty visits?` checkbox.
+5. Make sure the checkbox update the table.
+6. Assert that: the `Download table as CSV` button triggers the file download with the right information in it.
+7. Assert that: table pagination buttons work.
+8. Assert that: table maximum number of rows per page dropdown modifies the number of displayed rows.
+
diff --git a/modules/dicom_archive/js/view_details_link.js b/modules/dicom_archive/js/view_details_link.js
deleted file mode 100644
index 8ec6ab21e61..00000000000
--- a/modules/dicom_archive/js/view_details_link.js
+++ /dev/null
@@ -1,53 +0,0 @@
-$(document).ready(function() {
- // Filters will only get applied on a POST, so
- // on click we need to fake a form which posts
- // to the mri_violations in order to get filters
- $(".dicom_archive").click(function(e) {
- e.preventDefault();
- var form = $('
', {
- "action" : loris.BaseURL + "/mri_violations/",
- "method" : "post"
- });
- var values = {
- "reset" : "true",
- "PatientName" : this.dataset.patientname,
- "SeriesUID" : this.dataset.seriesuid,
- "filter" : "Show Data"
- };
-
- $.each(values, function(name, value) {
- $("
", {
- type: 'hidden',
- name: name,
- value: value
- }).appendTo(form);
- });
-
- form.appendTo('body').submit();
- });
-
- $(".dicom_archive_datasets").click(function(e) {
- e.preventDefault();
- var form = $('
', {
- "action" : loris.BaseURL + "/mri_violations/",
- "method" : "post"
- });
- var values = {
- "reset" : "true",
- "PatientName" : this.dataset.patientname,
- "filter" : "Show Data"
- };
-
- $.each(values, function(name, value) {
- $("
", {
- type: 'hidden',
- name: name,
- value: value
- }).appendTo(form);
- });
-
- form.appendTo('body').submit();
- });
-
-});
-
diff --git a/modules/dicom_archive/php/viewdetails.class.inc b/modules/dicom_archive/php/viewdetails.class.inc
index 388c544ea43..816a34ec329 100644
--- a/modules/dicom_archive/php/viewdetails.class.inc
+++ b/modules/dicom_archive/php/viewdetails.class.inc
@@ -357,24 +357,6 @@ class ViewDetails extends \NDB_Form
);
}
- /**
- * Overrides base getJSDependencies() to add additional JS files
- *
- * @return array of extra JS files that this page depends on
- */
- function getJSDependencies()
- {
- $factory = \NDB_Factory::singleton();
- $baseURL = $factory->settings()->getBaseURL();
- $deps = parent::getJSDependencies();
- return array_merge(
- $deps,
- [
- $baseURL . "/dicom_archive/js/view_details_link.js",
- ]
- );
- }
-
/**
* Generate a breadcrumb trail for this page.
*
@@ -392,4 +374,3 @@ class ViewDetails extends \NDB_Form
);
}
}
-
diff --git a/modules/dicom_archive/templates/form_viewDetails.tpl b/modules/dicom_archive/templates/form_viewDetails.tpl
index 4ce6792c2a9..61636b253e9 100644
--- a/modules/dicom_archive/templates/form_viewDetails.tpl
+++ b/modules/dicom_archive/templates/form_viewDetails.tpl
@@ -3,9 +3,8 @@
Acquisition ID
-
- {$archive.DicomArchiveID}
+
+ {$archive.DicomArchiveID}
@@ -124,9 +123,7 @@
{$archive_series[record].PhaseEncoding}
{$archive_series[record].NumberOfFiles}
-
+
{$archive_series[record].SeriesUID}
diff --git a/modules/document_repository/jsx/editForm.js b/modules/document_repository/jsx/editForm.js
index e6caa3184ec..1cf138aeac3 100644
--- a/modules/document_repository/jsx/editForm.js
+++ b/modules/document_repository/jsx/editForm.js
@@ -2,6 +2,14 @@
import Loader from 'Loader';
import PropTypes from 'prop-types';
import swal from 'sweetalert2';
+import {
+ FormElement,
+ TextboxElement,
+ TextareaElement,
+ SelectElement,
+ ButtonElement,
+ FileElement,
+} from 'jsx/Form';
/**
* Document Edit Form
*
diff --git a/modules/document_repository/jsx/uploadForm.js b/modules/document_repository/jsx/uploadForm.js
index 7785e00d445..beb5b893ad3 100644
--- a/modules/document_repository/jsx/uploadForm.js
+++ b/modules/document_repository/jsx/uploadForm.js
@@ -240,6 +240,12 @@ class DocUploadForm extends Component {
'error'
);
}
+ if (resp.status == 400) {
+ swal.fire('Something went wrong',
+ JSON.parse(resp.response).message,
+ 'error'
+ );
+ }
}
}).catch((error) => {
console.error(error);
diff --git a/modules/document_repository/php/files.class.inc b/modules/document_repository/php/files.class.inc
index 3eb5efc6a97..7dd50b224f1 100644
--- a/modules/document_repository/php/files.class.inc
+++ b/modules/document_repository/php/files.class.inc
@@ -316,20 +316,18 @@ class Files extends \NDB_Page
if (!is_array($body)) {
throw new \LorisException("Expected parsed body to be an array");
}
-
- $category = $body['category']; // required
- if (!\Utility::valueIsPositiveInteger($category)) {
- // $category is a string representation of an ID, and so should be
- // at least equal to zero.
- return new \LORIS\Http\Response\JSON\BadRequest(self::BAD_CATEGORY);
- }
-
$uploadedFiles = $request->getUploadedFiles()['files'] ?? null;
if (is_null($uploadedFiles)) {
header("HTTP/1.1 413 Too_large");
exit;
}
+ $category = $body['category']; // required
+ if (!\Utility::valueIsPositiveInteger(strval($category))) {
+ // $category is a string representation of an ID, and so should be
+ // at least equal to zero.
+ return new \LORIS\Http\Response\JSON\BadRequest(self::BAD_CATEGORY);
+ }
$uploadedFiles = is_array($uploadedFiles)
? $uploadedFiles : [$uploadedFiles];
diff --git a/modules/electrophysiology_browser/README.md b/modules/electrophysiology_browser/README.md
index 25bb1398b44..c1c7d89a618 100644
--- a/modules/electrophysiology_browser/README.md
+++ b/modules/electrophysiology_browser/README.md
@@ -4,14 +4,14 @@
The Electrophysiology Browser is intended to allow users to view candidate
electrophysiology (EEG, MEG...) sessions collected for a study and any associated
-annotations for each recording.
+events for each recording.
## Intended Users
The primary types of users are:
1. Electrophysiology researchers who want to know details about the inserted datasets.
2. Site coordinators or researchers ensuring the uploaded electrophysiology data have
-been correctly inserted into LORIS.
+ been correctly inserted into LORIS.
## Scope
@@ -26,22 +26,22 @@ sufficient to provide access to view data in the module. The third permission pr
permissions to add or modify annotations for data from the sites the user has access to in this module.
electrophysiology_browser_view_allsites
- - This permission gives the user access to all electrophysiology datasets present in the database.
+ - This permission gives the user access to all electrophysiology datasets present in the database.
electrophysiology_browser_view_site
- - This permission gives the user access to electrophysiology datasets from their own site(s) only.
+ - This permission gives the user access to electrophysiology datasets from their own site(s) only.
electrophysiology_browser_edit_annotations
- - This permission allows the user to add, edit, and delete annotations for raw or derived datasets
+ - This permission allows the user to add, edit, and delete annotations for raw or derived datasets
## Download
You can download all the files related to a recording (channel information,
-electrode information, task event information, the actual recording) -- as well as its annotations and their related metadata.
+electrode information, task event information, the actual recording) -- as well as its events and their related metadata.
## Updating Derivative Files
-New annotations or edits to existing annotations made through the browser must also be updated in the derivative files stored in the filesystem, before a user tries to download a derivative file package. To do this automatically, a script is provided under `tools/update_annotation_files.php`, and a cron job should be set up to execute it regularly, e.g. every evening.
+New events or edits to existing events made through the browser must also be updated in the derivative files stored in the filesystem, before a user tries to download a derivative file package. To do this automatically, a script is provided under `tools/update_event_files.php`, and a cron job should be set up to execute it regularly, e.g. every evening.
## Installation requirements to use the visualization features
diff --git a/modules/electrophysiology_browser/css/electrophysiology_browser.css b/modules/electrophysiology_browser/css/electrophysiology_browser.css
index b5516024df9..fdfe1375164 100644
--- a/modules/electrophysiology_browser/css/electrophysiology_browser.css
+++ b/modules/electrophysiology_browser/css/electrophysiology_browser.css
@@ -3,7 +3,7 @@
}
.react-series-data-viewer-scoped .dropdown-menu li {
- margin-top: 0;
+ margin: 0;
padding: 0 10px;
}
@@ -14,6 +14,38 @@
width: 100%;
}
+.checkbox-flex-label > div > input[type="checkbox"] {
+ vertical-align: top;
+}
+
+.checkbox-flex-label {
+ display: flex;
+ align-items: center;
+ margin-bottom: 0;
+ justify-content: flex-end;
+}
+
+.btn-dropdown-toggle {
+ padding: 5px 10%;
+}
+
+.col-xs-12 > .btn-dropdown-toggle {
+ padding: 5px;
+ max-width: fit-content;
+}
+
+.col-xs-12 > .dropdown-menu {
+ width: max-content;
+ line-height: 14px;
+ padding: 0
+}
+
+.col-xs-12 > .dropdown-menu li {
+ margin: 0;
+ padding: 0;
+}
+
+
.btn.btn-xs {
font-size: 12px;
}
@@ -46,42 +78,215 @@ svg:not(:root) {
overflow: clip;
}
-.list-group-item {
+.annotation.list-group-item {
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
+ padding: 0;
+ width: 100%;
}
.annotation {
background: #fffae6;
- border-left: 5px solid #ff6600;
+ border-left: 5px solid #8eecfa;
}
.epoch-details {
- padding-right: 100px;
+ display: flex;
+ width: 100%;
+ padding: 10px 0;
}
.epoch-action {
display: flex;
flex-direction: row;
- justify-content: center;
+ justify-content: end;
align-items: center;
- position: absolute;
- right: 10px;
}
.epoch-tag {
- padding: 5px;
+ padding: 10px;
background: #e7e4e4;
- border-left: 5px solid #797878;
+ word-wrap: break-word;
width: 100%;
}
-.epoch-tag p {
- word-wrap: break-word;
- width: 95%;
+.badge-pill {
+ max-width: 100%;
+}
+
+.badge-pill p {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ margin: 0;
+}
+
+.badge-property {
+ background-color: #690096;
+}
+
+.badge-hed {
+ background-color: #d54a08;
+ cursor: help;
+ position: relative;
+ display: inline-block;
+}
+
+.tag-hed, .dataset-tag-hed {
+ cursor: pointer;
+ position: relative;
+ display: inline-block;
+}
+
+.toggle-long-hed label > div {
+ padding-right: 10px !important;
+}
+
+.toggle-long-hed input[type='checkbox'] {
+ vertical-align: top;
+}
+
+.tag-hed-score {
+ cursor: pointer;
+}
+
+.badge-hed .badge-hed-tooltip,
+.tag-hed .badge-hed-tooltip {
+ visibility: hidden;
+ background-color: #555555;
+ color: #fff;
+ padding: 10px;
+ border-radius: 6px;
+ position: absolute;
+ z-index: 1;
+ top: -50px;
+ right: 105%;
+ width: 500px;
+ max-height: 350px;
+ overflow-y: scroll;
+ white-space: normal;
+ text-align: left;
+}
+
+.badge-hed:hover .badge-hed-tooltip,
+.tag-hed:hover .badge-hed-tooltip {
+ visibility: visible;
+}
+
+.badge-hed-tooltip .tooltip-title {
+ font-size: 16px;
+}
+
+.tooltip-description {
+ font-weight: normal;
+ font-style: italic;
+}
+
+.badge-hed-add {
+ color: #246EB6 !important;
+ border: solid 1px #246EB6;
+ background-color: #fff !important;
+ cursor: pointer;
+}
+
+.selection-filter-tags {
+ margin: 0;
+ font-weight: bold;
+}
+
+.tag-remove-button {
+ cursor: pointer;
+ margin-left: 5px;
+ padding-left: 7.5px;
+ border-left: #b0885d solid 1px;
+ float: right;
+ width: 15px;
+}
+
+.dataset-tag-remove-button {
+ border-left: #999 solid 1px;
+}
+
+.selection-filter-tag {
+ display: inline-block;
+ margin: 2px 5px;
+ padding: 5px 10px;
+ color: black;
+ background-color: #E89A0C;
+ border-radius: 5px;
+ height: 30px;
+ max-width: 100vw;
+}
+
+.selection-filter-dataset-tag {
+ color: #fff;
+ background-color: #A9A9A9;
+}
+
+.dataset-tag-selected {
+ background-color: rgb(24, 99, 0);
+}
+
+.filter-tag-name {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ float: left;
+ max-width: 12vw;
+}
+
+.dataset-tag-dirty {
+ opacity: 0.6;
+}
+
+.tag-modal-container-dirty:before {
+ content: '*';
+}
+
+#select_column {
+ height: 27px;
+ text-align: center;
+}
+
+.dataset-filter-tags {
+ margin: 0 2px;
+}
+
+.dataset-filter-tag {
+ max-width: 52vw;
+}
+
+.dataset-tag-name {
+ max-width: calc(100% - 20px);
+}
+
+#tag-modal-container {
+ margin-bottom: 15px;
+}
+
+#tag-modal-container > div > button {
+ position: unset;
+ width: unset;
+}
+
+
+#tag-modal-container > div > div > div {
+ width: 75vw !important;
+ height: 75vh;
+}
+
+.line-height-14 {
+ line-height: 14px;
+}
+
+.margin-top-10 {
+ margin-top: 10px;
+}
+
+.flex-basis-45 {
+ flex-basis: 45%
}
.event-list .btn.btn-primary {
@@ -111,8 +316,9 @@ svg:not(:root) {
.btn-zoom {
margin: 0 auto 3px auto;
- width: 50px;
+ width: 55px;
text-align: center;
+ text-wrap: unset;
}
.col-xs-title {
@@ -139,7 +345,7 @@ svg:not(:root) {
.electrode:hover circle {
stroke: #064785;
cursor: pointer;
- fill: #E4EBF2
+ fill: #E4EBF2;
}
.electrode:hover text {
@@ -181,6 +387,10 @@ svg:not(:root) {
width: auto;
}
+.cursor-default {
+ cursor: default;
+}
+
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
.pagination-nav {
@@ -206,6 +416,14 @@ svg:not(:root) {
#page.eegBrowser {
margin-left: 150px;
}
+
+ #tag-modal-container > div > button {
+ position: fixed;
+ left: 15px;
+ bottom: 20px;
+ width: 120px;
+ white-space: normal;
+ }
}
/* Medium Devices, Desktops */
diff --git a/modules/electrophysiology_browser/help/sessions.md b/modules/electrophysiology_browser/help/sessions.md
index 9a02d6dca8d..7aa591e5f2d 100644
--- a/modules/electrophysiology_browser/help/sessions.md
+++ b/modules/electrophysiology_browser/help/sessions.md
@@ -10,5 +10,5 @@ Files can be downloaded containing only the recording signal, the events, or oth
- EEG: the file containing the session recording data.
- Electrode info (tsv): contains electrode locations.
- Channels info (tsv): channel status and filter settings.
-- Events (tsv): events (both stimuli and responses) recorded during the session.
-- Annotations (tsv): annotations (both stimuli and responses) recorded during the session.
+- Events (tsv): events (both stimuli and responses) recorded during the session.
+
diff --git a/modules/electrophysiology_browser/jsx/components/DownloadPanel.js b/modules/electrophysiology_browser/jsx/components/DownloadPanel.js
index 027395c1c0b..a254e1c8cbf 100644
--- a/modules/electrophysiology_browser/jsx/components/DownloadPanel.js
+++ b/modules/electrophysiology_browser/jsx/components/DownloadPanel.js
@@ -21,7 +21,7 @@ class DownloadPanel extends Component {
downloads: this.props.downloads,
physioFileID: this.props.physioFileID,
annotationsAction: loris.BaseURL
- + '/electrophysiology_browser/annotations',
+ + '/electrophysiology_browser/events',
outputType: this.props.outputType,
};
}
@@ -54,27 +54,29 @@ class DownloadPanel extends Component {
maxWidth: '250px',
margin: '0 auto',
}
- }>
+ }>
{Object.entries(panel.links).map(([type, download], j) => {
const disabled = (download.file === '');
- return (
-
- );
+ >
+ Download
+
+ }
+
+ )
+ : null;
})}
);
@@ -111,7 +116,7 @@ class DownloadPanel extends Component {
diff --git a/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js b/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js
index b7a6bb37cb3..0e35200b26c 100644
--- a/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js
+++ b/modules/electrophysiology_browser/jsx/electrophysiologySessionView.js
@@ -139,10 +139,6 @@ class ElectrophysiologySessionView extends Component {
type: 'physiological_task_event_file',
file: '',
},
- {
- type: 'physiological_annotation_files',
- file: '',
- },
{
type: 'all_files',
file: '',
@@ -152,8 +148,8 @@ class ElectrophysiologySessionView extends Component {
chunksURL: null,
epochsURL: null,
electrodesURL: null,
+ coordSystemURL: null,
events: null,
- annotations: null,
splitData: null,
},
],
@@ -200,68 +196,79 @@ class ElectrophysiologySessionView extends Component {
throw Error(resp.statusText);
}
return resp.json();
- })
- .then((data) => {
- const database = data.database.map((dbEntry) => ({
- ...dbEntry,
- // EEG Visualization urls
- chunksURLs:
- dbEntry
- && dbEntry.file.chunks_urls.map(
- (url) =>
- loris.BaseURL
- + '/electrophysiology_browser/file_reader/?file='
- + url
- ),
- epochsURL:
- dbEntry
- && dbEntry.file?.epochsURL
- && [loris.BaseURL
+ }).then((data) => {
+ const database = data.database.map((dbEntry) => ({
+ ...dbEntry,
+ // EEG Visualization urls
+ chunksURLs:
+ dbEntry
+ && dbEntry.file.chunks_urls.map(
+ (url) =>
+ loris.BaseURL
+ + '/electrophysiology_browser/file_reader/?file='
+ + url
+ ),
+ epochsURL:
+ dbEntry
+ && dbEntry.file?.epochsURL
+ && [loris.BaseURL
+ + '/electrophysiology_browser/file_reader/?file='
+ + dbEntry.file.epochsURL],
+ electrodesURL:
+ dbEntry
+ && dbEntry.file.downloads.map(
+ (group) =>
+ group.links['physiological_electrode_file']?.file
+ && loris.BaseURL
+ '/electrophysiology_browser/file_reader/?file='
- + dbEntry.file.epochsURL],
- electrodesURL:
- dbEntry
- && dbEntry.file.downloads.map(
- (group) =>
- group.links['physiological_electrode_file']?.file
- && loris.BaseURL
- + '/electrophysiology_browser/file_reader/?file='
- + group.links['physiological_electrode_file'].file
- ),
- events:
- dbEntry
- && dbEntry.file.events,
- annotations:
- dbEntry
- && dbEntry.file.annotations,
- }));
+ + group.links['physiological_electrode_file'].file
+ ),
+ coordSystemURL:
+ dbEntry
+ && dbEntry.file.downloads.map(
+ (group) =>
+ group.links['physiological_coord_system_file']?.file
+ && loris.BaseURL
+ + '/electrophysiology_browser/file_reader/?file='
+ + group.links['physiological_coord_system_file'].file
+ ),
+ events:
+ dbEntry
+ && dbEntry.file.events,
+ hedSchema:
+ dbEntry
+ && dbEntry.file.hedSchema,
+ datasetTags:
+ dbEntry
+ && dbEntry.file.datasetTags,
+ }));
- this.setState({
- setup: {data},
- isLoaded: true,
- database: database,
- patient: {
- info: data.patient,
- },
- });
+ this.setState({
+ setup: {data},
+ isLoaded: true,
+ database: database,
+ patient: {
+ info: data.patient,
+ },
+ });
- document.getElementById(
- 'nav_next'
- ).href = dataURL + data.nextSession + outputTypeArg;
- document.getElementById(
- 'nav_previous'
- ).href = dataURL + data.prevSession + outputTypeArg;
- if (data.prevSession !== '') {
- document.getElementById('nav_previous').style.display = 'block';
- }
- if (data.nextSession !== '') {
- document.getElementById('nav_next').style.display = 'block';
- }
- })
- .catch((error) => {
- this.setState({error: true});
- console.error(error);
- });
+ document.getElementById(
+ 'nav_next'
+ ).href = dataURL + data.nextSession + outputTypeArg;
+ document.getElementById(
+ 'nav_previous'
+ ).href = dataURL + data.prevSession + outputTypeArg;
+ if (data.prevSession !== '') {
+ document.getElementById('nav_previous').style.display = 'block';
+ }
+ if (data.nextSession !== '') {
+ document.getElementById('nav_next').style.display = 'block';
+ }
+ })
+ .catch((error) => {
+ this.setState({error: true});
+ console.error(error);
+ });
}
/**
@@ -333,8 +340,10 @@ class ElectrophysiologySessionView extends Component {
chunksURLs,
epochsURL,
events,
- annotations,
+ hedSchema,
+ datasetTags,
electrodesURL,
+ coordSystemURL,
} = this.state.database[i];
const file = this.state.database[i].file;
const splitPagination = [];
@@ -365,9 +374,14 @@ class ElectrophysiologySessionView extends Component {
}
epochsURL={epochsURL}
events={events}
- annotations={annotations}
electrodesURL={electrodesURL}
+ coordSystemURL={coordSystemURL}
+ hedSchema={hedSchema}
+ datasetTags={datasetTags}
physioFileID={this.state.database[i].file.id}
+ samplingFrequency={
+ this.state.database[i].file.summary[0].value
+ }
>
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/eeglab/EEGLabSeriesProvider.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/eeglab/EEGLabSeriesProvider.tsx
index 0771738c896..a429c910ffa 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/eeglab/EEGLabSeriesProvider.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/eeglab/EEGLabSeriesProvider.tsx
@@ -1,46 +1,55 @@
import React, {Component} from 'react';
import {tsvParse} from 'd3-dsv';
-import {createStore, applyMiddleware, Store} from 'redux';
+import {applyMiddleware, createStore, Store} from 'redux';
import {Provider} from 'react-redux';
import {createEpicMiddleware} from 'redux-observable';
import thunk from 'redux-thunk';
import {fetchJSON, fetchText} from '../ajax';
-import {rootReducer, rootEpic} from '../series/store';
+import {rootEpic, rootReducer} from '../series/store';
+import {emptyChannels, setChannels} from '../series/store/state/channels';
import {DEFAULT_MAX_CHANNELS, DEFAULT_TIME_INTERVAL} from '../vector';
import {
- setChannels,
- emptyChannels,
-} from '../series/store/state/channels';
-import {
- setEpochs,
setDatasetMetadata,
- setPhysioFileID,
+ setDatasetTags,
+ setEpochs,
setFilteredEpochs,
+ setHedSchemaDocument,
+ setPhysioFileID,
} from '../series/store/state/dataset';
import {setDomain, setInterval} from '../series/store/state/bounds';
-import {setElectrodes} from '../series/store/state/montage';
-import {AnnotationMetadata, EventMetadata} from '../series/store/types';
+import {
+ setCoordinateSystem,
+ setElectrodes,
+} from '../series/store/state/montage';
+import {EventMetadata, HEDSchemaElement} from '../series/store/types';
+import TriggerableModal from 'jsx/TriggerableModal';
+import DatasetTagger from '../series/components/DatasetTagger';
+import {InfoIcon} from '../series/components/components';
declare global {
interface Window {
- EEGLabSeriesProviderStore: Store;
+ EEGLabSeriesProviderStore: Store[]; // Store reference per recording
}
}
type CProps = {
chunksURL: string,
+ epochsURL: string,
electrodesURL: string,
+ coordSystemURL: string,
+ hedSchema: HEDSchemaElement[],
+ datasetTags: any,
events: EventMetadata,
- annotations: AnnotationMetadata,
physioFileID: number,
limit: number,
+ samplingFrequency: number,
children: React.ReactNode,
};
/**
* EEGLabSeriesProvider component
*/
-class EEGLabSeriesProvider extends Component
{
+class EEGLabSeriesProvider extends Component {
private store: Store;
/**
@@ -58,18 +67,51 @@ class EEGLabSeriesProvider extends Component {
epicMiddleware.run(rootEpic);
- window.EEGLabSeriesProviderStore = this.store;
-
const {
chunksURL,
+ epochsURL,
electrodesURL,
+ coordSystemURL,
+ hedSchema,
+ datasetTags,
events,
- annotations,
physioFileID,
limit,
+ samplingFrequency,
} = props;
+ if (!window.EEGLabSeriesProviderStore) {
+ window.EEGLabSeriesProviderStore = [];
+ }
+ window.EEGLabSeriesProviderStore[chunksURL] = this.store;
+ /**
+ *
+ * @returns {void} - Confirmation dialog to prevent accidental page leave
+ */
+ window.onbeforeunload = function() {
+ const dataset =
+ window.EEGLabSeriesProviderStore[chunksURL].getState().dataset;
+ if ([...dataset.addedTags, ...dataset.deletedTags].length > 0) {
+ return 'Are you sure you want to leave unsaved changes behind?';
+ }
+ };
+
+ const formattedDatasetTags = {};
+ Object.keys(datasetTags).forEach((column) => {
+ formattedDatasetTags[column] = {};
+ Object.keys(datasetTags[column]).forEach((value) => {
+ formattedDatasetTags[column][value] =
+ datasetTags[column][value].map((tag) => {
+ return {
+ ...tag,
+ AdditionalMembers: parseInt(tag.AdditionalMembers),
+ };
+ });
+ });
+ });
this.store.dispatch(setPhysioFileID(physioFileID));
+ this.store.dispatch(setHedSchemaDocument(hedSchema));
+ this.store.dispatch(setDatasetTags(formattedDatasetTags));
/**
*
@@ -81,14 +123,14 @@ class EEGLabSeriesProvider extends Component {
const racers = (fetcher, url, route = '') => {
if (url) {
return [fetcher(`${url}${route}`)
- .then((json) => ({json, url}))
- // if request fails don't resolve
- .catch((error) => {
- console.error(error);
- return Promise.resolve();
- })];
+ .then((json) => ({json, url}))
+ // if request fails don't resolve
+ .catch((error) => {
+ console.error(error);
+ return new Promise(null);
+ })];
} else {
- return [Promise.resolve()];
+ return [new Promise(null)];
}
};
@@ -111,65 +153,98 @@ class EEGLabSeriesProvider extends Component {
timeInterval,
seriesRange,
limit,
+ samplingFrequency,
})
);
this.store.dispatch(setChannels(emptyChannels(
- Math.min(this.props.limit, channelMetadata.length),
- 1
+ Math.min(this.props.limit, channelMetadata.length),
+ 1
)));
this.store.dispatch(setDomain(timeInterval));
this.store.dispatch(setInterval(DEFAULT_TIME_INTERVAL));
}
- }).then(() => {
- return events.instances.map((instance) => {
- const onset = parseFloat(instance.Onset);
- const duration = parseFloat(instance.Duration);
- const label = instance.TrialType && instance.TrialType !== 'n/a' ?
- instance.TrialType : instance.EventValue;
- const hed = instance.AssembledHED;
+ }
+ ).then(() => {
+ const epochs = [];
+ events.instances.map((instance) => {
+ const epochIndex =
+ epochs.findIndex(
+ (e) => e.physiologicalTaskEventID
+ === instance.PhysiologicalTaskEventID
+ );
+
+ const extraColumns = Array.from(
+ events.extraColumns
+ ).filter((column) => {
+ return column.PhysiologicalTaskEventID
+ === instance.PhysiologicalTaskEventID;
+ });
+
+ const hedTags = Array.from(events.hedTags).filter((column) => {
+ return column.PhysiologicalTaskEventID
+ === instance.PhysiologicalTaskEventID;
+ }).map((hedTag) => {
+ const foundTag = hedSchema.find((tag) => {
+ return tag.id === hedTag.HEDTagID;
+ });
+ const additionalMembers = parseInt(hedTag.AdditionalMembers);
+
+ // Currently only supporting schema-defined HED tags
return {
- onset: onset,
- duration: duration,
- type: 'Event',
- label: label,
- comment: null,
- hed: hed,
- channels: 'all',
- annotationInstanceID: null,
+ schemaElement: foundTag ?? null,
+ HEDTagID: foundTag ? foundTag.id : null,
+ ID: hedTag.ID,
+ PropertyName: hedTag.PropertyName,
+ PropertyValue: hedTag.PropertyValue,
+ TagValue: hedTag.TagValue,
+ Description: hedTag.Description,
+ HasPairing: hedTag.HasPairing,
+ PairRelID: hedTag.PairRelID,
+ AdditionalMembers: isNaN(additionalMembers) ? 0 : additionalMembers,
};
});
- }).then((events) => {
- const epochs = events;
- annotations.instances.map((instance) => {
- const label = annotations.labels
- .find((label) =>
- label.AnnotationLabelID == instance.AnnotationLabelID
- ).LabelName;
+
+ if (epochIndex === -1) {
+ const epochLabel = [null, 'n/a'].includes(instance.TrialType)
+ ? null
+ : instance.TrialType;
epochs.push({
onset: parseFloat(instance.Onset),
duration: parseFloat(instance.Duration),
- type: 'Annotation',
- label: label,
- comment: instance.Description,
- hed: null,
+ type: 'Event',
+ label: epochLabel ?? instance.EventValue,
+ value: instance.EventValue,
+ trialType: instance.TrialType,
+ properties: extraColumns,
+ hed: hedTags,
channels: 'all',
- annotationInstanceID: instance.AnnotationInstanceID,
+ physiologicalTaskEventID: instance.PhysiologicalTaskEventID,
});
- });
+ } else {
+ console.error('ERROR: EPOCH EXISTS');
+ }
+ });
return epochs;
- }).then((epochs) => {
- this.store.dispatch(
- setEpochs(
- epochs
- .flat()
- .sort(function(a, b) {
- return a.onset - b.onset;
- })
- )
- );
- this.store.dispatch(setFilteredEpochs(epochs.map((_, index) => index)));
- })
- ;
+ }).then((epochs) => {
+ const sortedEpochs = epochs
+ .flat()
+ .sort(function(a, b) {
+ return a.onset - b.onset;
+ });
+
+ const timeInterval = this.store.getState().dataset.timeInterval;
+ this.store.dispatch(setEpochs(sortedEpochs));
+ this.store.dispatch(setFilteredEpochs({
+ plotVisibility: sortedEpochs.reduce((indices, epoch, index) => {
+ if (!(epoch.onset < 1 && epoch.duration >= timeInterval[1])) {
+ // Full-recording events not visible by default
+ indices.push(index);
+ }
+ return indices;
+ }, []),
+ columnVisibility: [],
+ }));
+ });
Promise.race(racers(fetchText, electrodesURL))
.then((text) => {
@@ -188,6 +263,27 @@ class EEGLabSeriesProvider extends Component {
.catch((error) => {
console.error(error);
});
+
+ Promise.race(racers(fetchJSON, coordSystemURL))
+ .then( ({json, _}) => {
+ if (json) {
+ const {
+ EEGCoordinateSystem,
+ EEGCoordinateUnits,
+ EEGCoordinateSystemDescription,
+ } = json;
+ this.store.dispatch(
+ setCoordinateSystem({
+ name: EEGCoordinateSystem ?? 'Other',
+ units: EEGCoordinateUnits ?? 'm',
+ description: EEGCoordinateSystemDescription ?? 'n/a',
+ })
+ );
+ }
+ })
+ .catch((error) => {
+ console.error(error);
+ });
}
/**
@@ -197,8 +293,45 @@ class EEGLabSeriesProvider extends Component {
*/
render() {
const [signalViewer, ...rest] = React.Children.toArray(this.props.children);
+
return (
+
+
+
+
+
+
+
+ Dataset Tag Manager
+
+
+
+ More about HED
+
+
+
+ }
+ label="Open Dataset Tag Manager"
+ >
+
+
+
{signalViewer}
{rest}
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/AnnotationForm.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/AnnotationForm.tsx
index c07c0b12b25..ca7d93991d0 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/AnnotationForm.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/AnnotationForm.tsx
@@ -1,19 +1,28 @@
import React, {useEffect, useState} from 'react';
import {
- AnnotationMetadata,
Epoch as EpochType,
RightPanel,
+ HEDTag,
+ HEDSchemaElement,
} from '../store/types';
import {connect} from 'react-redux';
import {setTimeSelection} from '../store/state/timeSelection';
import {setRightPanel} from '../store/state/rightPanel';
import * as R from 'ramda';
-import {toggleEpoch, updateActiveEpoch} from '../store/logic/filterEpochs';
+import {
+ getNthMemberTrailingBadgeIndex,
+ getTagsForEpoch,
+ toggleEpoch,
+ updateActiveEpoch
+} from '../store/logic/filterEpochs';
import {RootState} from '../store';
-import {setEpochs} from '../store/state/dataset';
+import {setActiveEpoch, setEpochs} from '../store/state/dataset';
import {setCurrentAnnotation} from '../store/state/currentAnnotation';
-import {NumericElement, SelectElement, TextareaElement} from './Form';
+import {NumericElement, SelectElement, TextboxElement} from './Form';
import swal from 'sweetalert2';
+import {InfoIcon} from "./components";
+import {colorOrder} from "../../color";
+
type CProps = {
timeSelection?: [number, number],
@@ -25,11 +34,11 @@ type CProps = {
currentAnnotation: EpochType,
setCurrentAnnotation: (_: EpochType) => void,
physioFileID: number,
- annotationMetadata: AnnotationMetadata,
toggleEpoch: (_: number) => void,
updateActiveEpoch: (_: number) => void,
interval: [number, number],
- domain: [number, number],
+ hedSchema: HEDSchemaElement[],
+ datasetTags: any,
};
/**
@@ -43,13 +52,11 @@ type CProps = {
* @param root0.currentAnnotation
* @param root0.setCurrentAnnotation
* @param root0.physioFileID
- * @param root0.annotationMetadata
* @param root0.toggleEpoch,
* @param root0.updateActiveEpoch,
* @param root0.interval
- * @param root0.domain
- * @param root0.toggleEpoch
- * @param root0.updateActiveEpoch
+ * @param root0.hedSchema
+ * @param root0.datasetTags
*/
const AnnotationForm = ({
timeSelection,
@@ -60,11 +67,11 @@ const AnnotationForm = ({
currentAnnotation,
setCurrentAnnotation,
physioFileID,
- annotationMetadata,
toggleEpoch,
updateActiveEpoch,
interval,
- domain,
+ hedSchema,
+ datasetTags,
}: CProps) => {
const [startEvent = '', endEvent = ''] = timeSelection || [];
const [event, setEvent] = useState<(number | string)[]>(
@@ -75,17 +82,15 @@ const AnnotationForm = ({
);
const [label, setLabel] = useState(
currentAnnotation ?
- currentAnnotation.label :
- null
- );
- const [comment, setComment] = useState(
- currentAnnotation ?
- currentAnnotation.comment :
- ''
+ currentAnnotation.label :
+ null
);
+
const [isSubmitted, setIsSubmitted] = useState(false);
const [isDeleted, setIsDeleted] = useState(false);
const [annoMessage, setAnnoMessage] = useState('');
+ const [newTags, setNewTags] = useState([]);
+ const [deletedTagIDs, setDeletedTagIDs] = useState([]);
// Time Selection
useEffect(() => {
@@ -97,13 +102,15 @@ const AnnotationForm = ({
*
* @param event
*/
- const validate = (event) => (
- (event[0] || event[0] === 0)
+ const validate = (event) => {
+ return (event[0] || event[0] === 0)
&& (event[1] || event[1] === 0)
&& event[0] <= event[1]
- && event[0] >= interval[0] && event[0] <= interval[1]
- && event[1] >= interval[0] && event[1] <= interval[1]
- );
+ && (
+ newTags.some((tag) => tag.value !== '') ||
+ deletedTagIDs.length > 0
+ );
+ };
/**
*
@@ -155,20 +162,69 @@ const AnnotationForm = ({
/**
*
- * @param name
- * @param value
*/
- const handleLabelChange = (name, value) => {
- setLabel(value);
+ const handleAddTag = (tagType: string) => {
+ // Add tag if all are filled
+ if (newTags.find((tag) => {
+ return tag.value === '';
+ })) {
+ setAnnoMessage('Fill other tags first');
+ setTimeout(() => {
+ setAnnoMessage('');
+ }, 2000);
+ } else {
+ setNewTags([
+ ...newTags,
+ {
+ type: tagType,
+ value: '',
+ }
+ ]);
+ }
};
+
+
/**
*
- * @param name
+ */
+ const handleDeleteTag = (event) => {
+ const elementID = event.target.getAttribute('id');
+ const tagRelID = elementID.split('-').pop();
+ if (currentAnnotation.hed &&
+ currentAnnotation.hed.map((tag) => {
+ return tag.ID
+ }).includes(tagRelID)
+ ) {
+ setDeletedTagIDs([...deletedTagIDs, tagRelID]);
+ }
+ };
+
+ /**
+ *
+ * @param tagIndex
+ */
+ const handleRemoveAddedTag = (tagIndex: number) => {
+ setNewTags(newTags.filter((tag, index) => {
+ return index !== tagIndex;
+ }));
+ };
+
+ /**
+ *
+ * @param tagIndex
* @param value
*/
- const handleCommentChange = (name, value) => {
- setComment(value);
+ const handleTagChange = (tagIndex, value) => {
+ setNewTags([
+ ...newTags.slice(0, tagIndex),
+ {
+ ...newTags[tagIndex],
+ value: value
+ },
+ ...newTags.slice(tagIndex + 1),
+ ])
};
+
/**
*
*/
@@ -180,11 +236,8 @@ const AnnotationForm = ({
*
*/
const handleReset = () => {
- // Clear all fields
- setEvent(['', '']);
- setTimeSelection([null, null]);
- setLabel('');
- setComment('');
+ setNewTags([]);
+ setDeletedTagIDs([]);
};
/**
@@ -212,10 +265,42 @@ const AnnotationForm = ({
return;
}
+ const newTagIDs = newTags
+ .filter((tag) => {
+ return tag.value !== '';
+ })
+ .map((tag) => {
+ const node = getNodeByName(tag.value);
+ if (node)
+ return node.id;
+ });
+
+ const currentTagIDs = (currentAnnotation.hed ?? []).map((tag) => {
+ return tag.ID;
+ }).filter(currentTagID => {
+ return !deletedTagIDs.includes(currentTagID)
+ });
+
+ // Prevent duplicates
+ // const addingNewTagMultipleTimes = newTagIDs.length !== (new Set(newTagIDs)).size;
+ // const addingExistingTag = newTagIDs.filter((tagID) => {
+ // return currentTagIDs.includes(tagID)
+ // }).length > 0;
+ //
+ // if (addingNewTagMultipleTimes || addingExistingTag) {
+ // swal.fire(
+ // 'Warning',
+ // 'Duplicates are not allowed',
+ // 'warning'
+ // );
+ // setIsSubmitted(false);
+ // return;
+ // }
+
const url = window.location.origin +
- '/electrophysiology_browser/annotations/';
+ '/electrophysiology_browser/events/';
- // get duration of annotation
+ // get duration of event
let startTime = event[0];
let endTime = event[1];
if (typeof startTime === 'string') {
@@ -227,11 +312,12 @@ const AnnotationForm = ({
const duration = endTime - startTime;
// set body
- // instance_id = null for new annotations
+ // instance_id = null for new events
const body = {
+ request_type: 'event_update',
physioFileID: physioFileID,
instance_id: currentAnnotation ?
- currentAnnotation.annotationInstanceID :
+ currentAnnotation.physiologicalTaskEventID :
null,
instance: {
onset: startTime,
@@ -239,22 +325,11 @@ const AnnotationForm = ({
label_name: label,
label_description: label,
channels: 'all',
- description: comment,
+ added_hed: newTagIDs,
+ deleted_hed: deletedTagIDs,
},
};
- const newAnnotation : EpochType = {
- onset: startTime,
- duration: duration,
- type: 'Annotation',
- label: label,
- comment: comment,
- channels: 'all',
- annotationInstanceID: currentAnnotation ?
- currentAnnotation.annotationInstanceID :
- null,
- };
-
fetch(url, {
method: 'POST',
credentials: 'same-origin',
@@ -263,47 +338,92 @@ const AnnotationForm = ({
if (response.ok) {
return response.json();
}
- }).then((data) => {
+ throw (response);
+
+ }).then((response) => {
setIsSubmitted(false);
- // if in edit mode, remove old annotation instance
+ // if in edit mode, remove old event instance
if (currentAnnotation !== null) {
epochs.splice(epochs.indexOf(currentAnnotation), 1);
- } else {
- newAnnotation.annotationInstanceID = parseInt(data.instance_id);
}
+ // } else {
+ // newAnnotation.physiologicalTaskEventID = parseInt(data.instance_id);
+ // }
+
+ const data = response.instance;
+
+ // TODO: Properly handle new event
+ const hedTags = Array.from(data.hedTags).map((hedTag : HEDTag) => {
+ const foundTag = hedSchema.find((tag) => {
+ return tag.id === hedTag.HEDTagID;
+ });
+ // Currently only supporting schema-defined HED tags
+ return {
+ schemaElement: foundTag ?? null,
+ HEDTagID: hedTag.HEDTagID,
+ ID: hedTag.ID,
+ PropertyName: hedTag.PropertyName,
+ PropertyValue: hedTag.PropertyValue,
+ TagValue: hedTag.TagValue,
+ Description: hedTag.Description,
+ HasPairing: hedTag.HasPairing,
+ PairRelID: hedTag.PairRelID,
+ AdditionalMembers: hedTag.AdditionalMembers,
+ }
+ });
+
+ const epochLabel = [null, 'n/a'].includes(data.instance.TrialType)
+ ? null
+ : data.instance.TrialType;
+ const newAnnotation : EpochType = {
+ onset: parseFloat(data.instance.Onset),
+ duration: parseFloat(data.instance.Duration),
+ type: 'Event',
+ label: epochLabel ?? data.instance.EventValue,
+ value: data.instance.EventValue,
+ trialType: data.instance.TrialType,
+ properties: data.extraColumns,
+ hed: hedTags,
+ channels: 'all',
+ physiologicalTaskEventID: data.instance.PhysiologicalTaskEventID,
+ };
+
epochs.push(newAnnotation);
setEpochs(
epochs
- .sort(function(a, b) {
- return a.onset - b.onset;
- })
+ .sort(function(a, b) {
+ return a.onset - b.onset;
+ })
);
// Reset Form
handleReset();
+ setCurrentAnnotation(newAnnotation);
// Display success message
setAnnoMessage(currentAnnotation ?
- 'Annotation Updated!' :
- 'Annotation Added!');
+ 'Event Updated!' :
+ 'Event Added!');
setTimeout(() => {
setAnnoMessage(''); // Empty string will cause success div to hide
-
- // If in edit mode, switch back to annotation panel
- if (currentAnnotation !== null) {
- setCurrentAnnotation(null);
- setRightPanel('annotationList');
- }
- }, 3000);
+ }, 2000);
}).catch((error) => {
console.error(error);
// Display error message
- swal.fire(
- 'Error',
- 'Something went wrong!',
- 'error'
- );
+ if (error.status === 401) {
+ swal.fire(
+ 'Unauthorized',
+ 'This action is not permitted.',
+ 'error'
+ );
+ } else {
+ swal.fire(
+ 'Error',
+ 'Something went wrong!',
+ 'error'
+ );
+ }
});
}, [isSubmitted]);
@@ -311,11 +431,11 @@ const AnnotationForm = ({
useEffect(() => {
if (isDeleted) {
const url = window.location.origin
- + '/electrophysiology_browser/annotations/';
+ + '/electrophysiology_browser/events/';
const body = {
physioFileID: physioFileID,
instance_id: currentAnnotation ?
- currentAnnotation.annotationInstanceID :
+ currentAnnotation.physiologicalTaskEventID :
null,
};
@@ -352,14 +472,14 @@ const AnnotationForm = ({
// Display success message
swal.fire(
'Success',
- 'Annotation Deleted!',
+ 'Event Deleted!',
'success'
);
- // If in edit mode, switch back to annotation panel
+ // If in edit mode, switch back to EventManager panel
if (currentAnnotation !== null) {
setCurrentAnnotation(null);
- setRightPanel('annotationList');
+ setRightPanel('eventList');
}
}
}).catch((error) => {
@@ -378,13 +498,226 @@ const AnnotationForm = ({
}
}, [isDeleted]);
- let labelOptions = {};
- annotationMetadata.labels.map((label) => {
- labelOptions = {
- ...labelOptions,
- [label.LabelName]: label.LabelName,
- };
- });
+ const getNodeByName = (name: string) => {
+ return hedSchema.find((node) => {
+ return node.name === name
+ });
+ }
+
+ const addHedTagOptions = [
+ {
+ type: 'SCORE',
+ value: 'SCORE Artifacts',
+ },
+ {
+ type: 'DATASET',
+ value: 'Tags in current dataset',
+ },
+ ]
+
+ const buildPropertyOptions = (optgroup: string, parentHED: string) => {
+ return hedSchema.filter((node) => {
+ return node.longName.includes(parentHED)
+ }).map((tag) => {
+ return {
+ HEDTagID: tag.id,
+ label: tag.name,
+ longName: tag.longName,
+ value: tag.id,
+ optgroup: optgroup,
+ Description: tag.description,
+ }
+ }).sort((tagA, tagB) => {
+ return tagA.label.localeCompare(tagB.label);
+ });
+ }
+
+ const artifactTagOptions = [
+ ...buildPropertyOptions(
+ 'Biological-artifact',
+ 'Artifact/Biological-artifact/'
+ ),
+ ...buildPropertyOptions(
+ 'Non-biological-artifact',
+ 'Artifact/Non-biological-artifact/'
+ ),
+ ];
+
+ const getUniqueDatasetTags = () => {
+ const idSet = new Set();
+ const tagList = [];
+ Object.keys(datasetTags).forEach((columnName) => {
+ Object.keys(datasetTags[columnName]).forEach((fieldValue) => {
+ const hedTags = datasetTags[columnName][fieldValue].map((hedTag) => {
+ if (hedTag && hedTag.HEDTagID !== null) {
+ const schemaElement = hedSchema.find((schemaTag) => {
+ return schemaTag.id === hedTag.HEDTagID;
+ })
+ if (schemaElement && !idSet.has(schemaElement.id)) {
+ idSet.add(schemaElement.id);
+ const optGroup = schemaElement.longName.substring(0, schemaElement.longName.lastIndexOf('/'));
+ return {
+ HEDTagID: schemaElement.id,
+ label: schemaElement.name,
+ longName: schemaElement.longName,
+ value: schemaElement.id,
+ optgroup: optGroup.length > 0 ? optGroup : schemaElement.name,
+ Description: schemaElement.description,
+ }
+ }
+ }
+ });
+ tagList.push(...hedTags.filter((tag) => {
+ return tag !== undefined;
+ }));
+ });
+ });
+ return tagList.sort((tagA, tagB) => {
+ return tagA.label.localeCompare(tagB.label);
+ });
+ }
+
+ const getOptions = (optionType: string) => {
+ switch (optionType) {
+ case 'SCORE':
+ return artifactTagOptions;
+ case 'DATASET':
+ return getUniqueDatasetTags();
+ default:
+ return [];
+ }
+ }
+
+ const buildGroupSpan = (char: string, colorIndex: number) => {
+ return (
+
+ {char}
+
+ );
+ }
+
+ const buildHEDBadge = (hedTag: HEDTag, belongsToEvent: boolean) => {
+ return (
+
+
+
+ {hedTag.schemaElement.name}
+
+
+ x
+
+
+
+
+ {hedTag.schemaElement.longName}
+
+
+
+ {hedTag.schemaElement.description}
+
+
+
+ );
+ }
+
+ const buildHEDBadges = (hedTags: HEDTag[], belongsToEvent: boolean = false) => {
+ const rootTags = hedTags.filter((tag) => {
+ return !hedTags.some((t) => {
+ return tag.ID === t.PairRelID
+ })
+ });
+
+ const tagBadges = [];
+
+ rootTags.forEach((tag) => {
+ if (deletedTagIDs.includes(tag.ID)) {
+ return;
+ }
+ let groupColorIndex = 0;
+ if (tag.PairRelID === null) {
+ tagBadges.push(buildHEDBadge(tag, belongsToEvent));
+ groupColorIndex++;
+ } else {
+ const tagGroup = [];
+ let groupMember = tag;
+ while (groupMember) {
+ tagGroup.push(groupMember);
+ groupMember = hedTags.find((hedTag) => {
+ return hedTag.ID === groupMember.PairRelID;
+ });
+ }
+
+ const tagBadgeGroup = [];
+ const tagBadgeSubgroup = [];
+ tagGroup.reverse().map((groupTag) => {
+ if (groupTag.PairRelID === null) {
+ tagBadgeGroup.push(buildHEDBadge(groupTag, belongsToEvent));
+ } else {
+ if (groupTag.HasPairing === '1') {
+ if (groupTag.AdditionalMembers > 0 || tagBadgeSubgroup.length === 0) {
+ let commaIndex = getNthMemberTrailingBadgeIndex(
+ tagBadgeGroup,
+ groupTag.AdditionalMembers + (
+ tagBadgeSubgroup.length > 0 ? 0 : 1
+ )
+ );
+
+ tagBadgeGroup.splice(commaIndex, 0, buildGroupSpan(')', groupColorIndex));
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeGroup.splice(0, 0, ...tagBadgeSubgroup);
+ }
+ if (groupTag.HEDTagID !== null) {
+ tagBadgeGroup.splice(0, 0, buildHEDBadge(groupTag, belongsToEvent));
+ }
+ tagBadgeGroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeSubgroup.length = 0;
+ } else {
+ if (groupTag.HEDTagID === null) {
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeSubgroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeSubgroup.push(buildGroupSpan(')', groupColorIndex));
+ } else {
+ console.error('UNEXPECTED STATE');
+ }
+ } else {
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeSubgroup.splice(0, 0, buildHEDBadge(groupTag, belongsToEvent));
+ tagBadgeSubgroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeSubgroup.push(buildGroupSpan(')', groupColorIndex));
+ } else {
+ tagBadgeGroup.splice(0, 0, buildHEDBadge(groupTag, belongsToEvent));
+ tagBadgeGroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeGroup.push(buildGroupSpan(')', groupColorIndex));
+ }
+ }
+ }
+ groupColorIndex++;
+ } else {
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeGroup.splice(0, 0, ...tagBadgeSubgroup);
+ }
+ tagBadgeSubgroup.splice(0, tagBadgeSubgroup.length, buildHEDBadge(groupTag, belongsToEvent));
+ }
+ }
+ });
+ tagBadges.push(...tagBadgeGroup);
+ }
+ });
+ return tagBadges;
+ }
return (
- {currentAnnotation ? 'Edit' : 'Add'} Annotation
+ {currentAnnotation ? 'Edit' : 'Add'} Event
{
- setRightPanel('annotationList');
+ if (deletedTagIDs.length > 0 ||
+ (newTags.length > 0 && newTags.find((tag) => tag.value !== '')
+ )) {
+ if (!confirm('Are you sure you want to discard your changes? ' +
+ ' Otherwise, press cancel and "Submit" your changes')) {
+ return;
+ }
+ }
+ setRightPanel('eventList');
setCurrentAnnotation(null);
setTimeSelection(null);
+ updateActiveEpoch(null);
}}
>
+
Event Name
+
+ {
+ currentAnnotation.label === currentAnnotation.trialType
+ ? 'trial_type'
+ : 'value'
+ }
+
+
+ }
+ value={currentAnnotation ? currentAnnotation.label : ""}
+ required={true}
+ readonly={true}
+ />
-
-
+
+ {
+ currentAnnotation && currentAnnotation.properties.length > 0 && (
+ <>
+
+ Additional Columns
+
+
+ {
+ currentAnnotation.properties.map((property) => {
+ return (
+
+ );
+ })
+ }
+
+ >
+ )
+ }
+
+
+
+ HED
+
+
+
+ {
+ currentAnnotation && currentAnnotation.hed &&
+ getTagsForEpoch(currentAnnotation, datasetTags, hedSchema)
+ .length > 0 && (
+ <>
+
Dataset
+ {
+ buildHEDBadges(
+ getTagsForEpoch(currentAnnotation, datasetTags, hedSchema),
+ false,
+ ).map((badge) => {
+ return badge;
+ })
+ }
+ >
+ )
+ }
+ {
+ (
+ (
+ currentAnnotation
+ && currentAnnotation.hed
+ && currentAnnotation.hed.length > 0
+ ) || newTags.length > 0
+ ) && (
+
Instance
+ )
+ }
+ {
+ currentAnnotation && currentAnnotation.hed &&
+ buildHEDBadges(
+ currentAnnotation.hed,
+ true,
+ ).map((badge) => {
+ return badge;
+ })
+ }
+
+ {
+ newTags.map((tag, tagIndex) => {
+ return (
+ <>
+
{
+ handleTagChange(tagIndex, value);
+ }}
+ useOptionGroups={true}
+ />
+ handleRemoveAddedTag(tagIndex)}
+ style={{
+ position: 'relative',
+ left: '100%',
+ bottom: '30px',
+ height: '0',
+ width: '10%',
+ textAlign: 'center',
+ marginLeft: '2px',
+ cursor: 'pointer',
+ fontWeight: 'bold',
+ }}
+ >
+ x
+
+ >
+ );
+ })
+ }
+
+
+
+ Select tag from:
+
+
{
+ const addOption = addHedTagOptions.find((option) => {
+ return option.value === value;
+ })
+ handleAddTag(addOption.type)
+ }}
+ />
+ {/**/}
+ {/* Add Tag*/}
+ {/* */}
+
+
+
+
Submit
-
- Clear
+ Reset
- {currentAnnotation &&
-
- Delete
-
- }
{annoMessage && (
({
+ physioFileID: state.dataset.physioFileID,
timeSelection: state.timeSelection,
epochs: state.dataset.epochs,
- filteredEpochs: state.dataset.filteredEpochs,
+ filteredEpochs: state.dataset.filteredEpochs.plotVisibility,
currentAnnotation: state.currentAnnotation,
interval: state.bounds.interval,
- domain: state.bounds.domain,
+ hedSchema: state.dataset.hedSchema,
+ datasetTags: state.dataset.datasetTags,
}),
(dispatch: (any) => void) => ({
setTimeSelection: R.compose(
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/DatasetTagger.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/DatasetTagger.tsx
new file mode 100644
index 00000000000..801f6a93771
--- /dev/null
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/DatasetTagger.tsx
@@ -0,0 +1,1392 @@
+import React, {useEffect, useRef, useState} from 'react';
+import * as R from 'ramda';
+import {connect} from "react-redux";
+import {RootState} from "../store";
+import {SelectDropdown} from 'jsx/MultiSelectDropdown';
+import {CheckboxElement} from 'jsx/Form';
+import {HEDTag, HEDSchemaElement} from "../store/types";
+import {setAddedTags, setDatasetTags, setDeletedTags, setRelOverrides} from "../store/state/dataset";
+import swal from "sweetalert2";
+import {buildHEDString, getNthMemberTrailingBadgeIndex} from "../store/logic/filterEpochs";
+import {colorOrder} from "../../color";
+
+type CProps = {
+ physioFileID: number,
+ hedSchema: HEDSchemaElement[],
+ datasetTags: HEDTag,
+ relOverrides: HEDTag[],
+ addedTags: HEDTag[],
+ deletedTags: HEDTag[],
+ setAddedTags: (_: HEDTag[]) => void,
+ setDeletedTags: (_: HEDTag[]) => void,
+ setRelOverrides: (_: HEDTag[]) => void,
+ setDatasetTags: (_: any) => void,
+};
+
+/**
+ *
+ * @param root0
+ * @param root0.physioFileID
+ * @param root0.datasetTags
+ * @param root0.relOverrides
+ * @param root0.hedSchema
+ * @param root0.addedTags
+ * @param root0.deletedTags
+ * @param root0.setAddedTags
+ * @param root0.setDeletedTags
+ * @param root0.setDatasetTags
+ * @param root0.setRelOverrides
+ */
+const DatasetTagger = ({
+ physioFileID,
+ datasetTags,
+ relOverrides,
+ hedSchema,
+ addedTags,
+ deletedTags,
+ setAddedTags,
+ setDeletedTags,
+ setDatasetTags,
+ setRelOverrides,
+}: CProps) => {
+ const tagListID = 'searchable-hed-tags';
+ const [searchText, setSearchText] = useState('');
+ const [searchTextValid, setSearchTextValid] = useState(false);
+ const [showLongFormHED, setShowLongFormHED] = useState(false);
+ const [groupMode, setGroupMode] = useState(false);
+ const [groupedTags, setGroupedTags] = useState
([]);
+ const [activeColumnName, setActiveColumnName] = useState('');
+ const [activeFieldValue, setActiveFieldValue] = useState('');
+ const [submittingChanges, setSubmittingChanges] = useState(false);
+ const [datasetTooltip, setDatasetTooltip] = useState({
+ title: '',
+ description: '',
+ });
+ const [activeHEDSchemas, setActiveHEDSchemas] = useState({});
+
+ useEffect(() => {
+ // Initialize active HED schemas
+ const activeSchemas = {};
+ hedSchema.forEach((tag) => {
+ if (!activeSchemas.hasOwnProperty(tag.schemaName.toUpperCase())) {
+ activeSchemas[tag.schemaName.toUpperCase()] = true;
+ }
+ });
+ setActiveHEDSchemas(activeSchemas);
+ }, []);
+
+ const generateTagID = (index: number) => {
+ return `add_${Date.now()}${index}`;
+ }
+
+ const schemaTags : HEDSchemaElement[] = hedSchema.map((hedTag: HEDSchemaElement) => {
+ return {
+ ...hedTag,
+ longName: hedTag.longName + (
+ hedTag.parentID === null
+ ? ' ' // Need to add space otherwise doesn't display
+ : ''
+ ),
+ };
+ });
+ const parentNodes = schemaTags.filter((hedTag: HEDSchemaElement) => {
+ return hedTag.parentID === null;
+ });
+ const inputFieldRef = useRef(null);
+
+ const handleResetAllChanges = () => {
+ swal.fire({
+ title: 'Are you sure?',
+ text: "This will undo all changes since your latest submission. You won't be able to revert this!",
+ type: 'warning',
+ showCancelButton: true,
+ confirmButtonColor: '#3085d6',
+ cancelButtonColor: '#d33',
+ confirmButtonText: 'Yes, reset all changes!'
+ }).then((result) => {
+ if (result.value) {
+ setAddedTags([]);
+ setDeletedTags([]);
+ setRelOverrides([]);
+ setGroupedTags([]);
+; }
+ });
+ }
+
+ const handleResetFieldChanges = () => {
+ setAddedTags(addedTags.filter((tag) => {
+ return !(
+ tag.PropertyName === activeColumnName &&
+ tag.PropertyValue === activeFieldValue
+ );
+ }));
+ setDeletedTags(deletedTags.filter((tag) => {
+ return !(
+ tag.PropertyName === activeColumnName &&
+ tag.PropertyValue === activeFieldValue
+ );
+ }));
+
+ const relIDs = datasetTags[activeColumnName][activeFieldValue].map((tag) => {
+ return tag.ID;
+ })
+ setRelOverrides(relOverrides.filter((tag) => {
+ return !relIDs.includes(tag.ID);
+ }));
+
+ setGroupedTags([]);
+ }
+
+ const getFirstGroupTag = (tag: HEDTag) => {
+ const tagsToSearch = applyOverrides([...addedTags, ...datasetTags[activeColumnName][activeFieldValue]]);
+
+ let rootTag = tag;
+ let tagFound = true;
+ while (tagFound) {
+ const previousTag = tagsToSearch.find((t) => {
+ return t.PairRelID === rootTag.ID;
+ });
+ if (!previousTag) {
+ tagFound = false; // redundant
+ break;
+ }
+ rootTag = previousTag;
+ }
+ return rootTag;
+ }
+
+ const sortTagsByPlaceholderIDs = (tags: HEDTag[]) => {
+ const sortedIDs = [];
+ tags.forEach((tag) => {
+ if (sortedIDs.includes(tag.ID))
+ return; // continue;
+ const rootTag = getFirstGroupTag(tag);
+ const tagPairings = getGroupedTagPairings([rootTag]);
+ sortedIDs.push(
+ ...[rootTag, ...tagPairings].map((t) => {
+ return t.ID;
+ })
+ );
+ });
+ return tags.sort((a, b) => {
+ return sortedIDs.indexOf(b.ID) - sortedIDs.indexOf(a.ID);
+ });
+ }
+
+ const handleSubmitChanges = () => {
+ setSubmittingChanges(true);
+ const url = window.location.origin +
+ '/electrophysiology_browser/events/';
+
+ const updatedAddedTags = sortTagsByPlaceholderIDs(applyOverrides(addedTags));
+
+ const editedTags = relOverrides.filter((tag) => {
+ return !updatedAddedTags.some((t) => {
+ return t.ID === tag.ID;
+ }) && !deletedTags.some((t) => {
+ return t.ID === tag.ID;
+ });
+ });
+
+ const body = {
+ request_type: 'dataset_tags',
+ physioFileID: physioFileID,
+ added_tags: updatedAddedTags, // So that new PairRelIDs can be referenced
+ deleted_tags: deletedTags,
+ edited_tags: editedTags,
+ };
+
+ fetch(url, {
+ method: 'POST',
+ credentials: 'same-origin',
+ body: JSON.stringify(body),
+ }).then((response) => {
+ setSubmittingChanges(false);
+ if (response.ok) {
+ return response.json();
+ }
+ throw (response);
+ }).then((response) => {
+ const updatedDatasetTags = datasetTags;
+
+ deletedTags.forEach((deletedTag) => {
+ const tagList = updatedDatasetTags[deletedTag.PropertyName][deletedTag.PropertyValue];
+ updatedDatasetTags[deletedTag.PropertyName][deletedTag.PropertyValue] =
+ tagList.filter((tag) => {
+ return tag.ID !== deletedTag.ID
+ });
+ })
+
+ applyOverrides(addedTags).forEach((addedTag) => {
+ const pairRelTagMapping = response['mapping'].find((mapping) => {
+ return mapping.AddID === addedTag.PairRelID
+ });
+ const addedTagID = addedTag.ID
+ const tagMapping = response['mapping'].find((mapping) => {
+ return mapping.AddID === addedTagID;
+ });
+ if (tagMapping) {
+ addedTag.ID = tagMapping.RelID
+ if (pairRelTagMapping) {
+ addedTag.PairRelID = pairRelTagMapping.RelID;
+ }
+ updatedDatasetTags[addedTag.PropertyName][addedTag.PropertyValue].push(
+ addedTag
+ );
+
+ const tagInGrouped = groupedTags.find((tag: HEDTag) => {
+ return tag.ID === addedTagID
+ });
+ if (tagInGrouped) {
+ setGroupedTags([
+ ...applyOverrides(groupedTags).filter((tag) => {
+ return tag.ID !== addedTagID;
+ }),
+ addedTag
+ ]);
+ }
+ } else {
+ swal.fire(
+ 'Error',
+ 'There was an error with the response. Please report this incident.',
+ 'error'
+ );
+ return;
+ }
+ });
+
+ editedTags.forEach((editedTag) => {
+ const tagInDataset =
+ updatedDatasetTags[editedTag.PropertyName][editedTag.PropertyValue]
+ .find((tag) => {
+ return tag.ID === editedTag.ID
+ })
+ ;
+ if (!tagInDataset) {
+ console.error('Unable to find an edited tag!');
+ return;
+ }
+ const pairRelTagMapping = response['mapping'].find((mapping) => {
+ return mapping.AddID === editedTag.PairRelID
+ });
+
+ updatedDatasetTags[editedTag.PropertyName][editedTag.PropertyValue] = [
+ ...updatedDatasetTags[editedTag.PropertyName][editedTag.PropertyValue].filter((tag) => {
+ return tag.ID !== editedTag.ID;
+ }),
+ {
+ ...editedTag,
+ PairRelID: pairRelTagMapping ? pairRelTagMapping.RelID : editedTag.PairRelID,
+ },
+ ];
+ });
+
+ // Filter invalidated tags
+ Object.keys(updatedDatasetTags).forEach((columnName) => {
+ Object.keys(updatedDatasetTags[columnName]).forEach((columnValue) => {
+ updatedDatasetTags[columnName][columnValue] =
+ updatedDatasetTags[columnName][columnValue].filter((tag) => {
+ return !(tag.HEDTagID === null && tag.PairRelID === null);
+ });
+ });
+ });
+
+ setDatasetTags(updatedDatasetTags);
+ setAddedTags([]);
+ setDeletedTags([]);
+ setRelOverrides([]);
+
+ swal.fire(
+ 'Success',
+ 'Tags updated successfully',
+ 'success'
+ );
+ }).catch((error) => {
+ console.error(error);
+ if (error.status === 401) {
+ swal.fire(
+ 'Unauthorized',
+ 'This action is not permitted.',
+ 'error'
+ );
+ } else {
+ swal.fire(
+ 'Error',
+ 'There was an error with the request! Please report this incident.',
+ 'error'
+ );
+ }
+ });
+ }
+
+ const isDirty = (columnName: string, columnValue: string) => {
+ return [...deletedTags, ...addedTags].some((tag) => {
+ return tag.PropertyName === columnName
+ && (
+ columnValue.length > 0
+ ? tag.PropertyValue === columnValue
+ : true
+ );
+ }) || (
+ columnValue.length === 0 &&
+ Object.keys(datasetTags[columnName]).some((colVal) => {
+ return datasetTags[columnName][colVal].some((tag) => {
+ return relOverrides.map((relOverride) => {
+ return relOverride.ID;
+ }).includes(tag.ID);
+ })
+ })
+ ) || (
+ columnValue.length > 0 &&
+ datasetTags[columnName][columnValue].some((tag) => {
+ return relOverrides.map((relOverride) => {
+ return relOverride.ID;
+ }).includes(tag.ID);
+ })
+ );
+ }
+
+ useEffect(() => {
+ const openTagViewerClasses = document
+ .querySelector('#tag-modal-container > div > button')
+ .classList;
+
+ if ([...addedTags, ...deletedTags].length > 0) {
+ openTagViewerClasses.add('tag-modal-container-dirty');
+ } else {
+ openTagViewerClasses.remove('tag-modal-container-dirty');
+ }
+ }, [addedTags, deletedTags])
+
+ const validateSearchTag = (longName: string) => {
+ const hedTag = schemaTags.find((tag: HEDSchemaElement) => {
+ return tag.longName === longName;
+ })
+ return hedTag ? hedTag.id : false;
+ }
+
+ const handleAddTag = () => {
+ const tagText = inputFieldRef.current.value.trim();
+
+ // Validate tag exists
+ const hedTagID = validateSearchTag(tagText);
+ const newTagID = generateTagID(0);
+
+ if (hedTagID) {
+ const hedTag = schemaTags.find((tag) => {
+ return tag.id === hedTagID;
+ })
+
+ setAddedTags([
+ ...addedTags,
+ {
+ schemaElement: hedTag,
+ HEDTagID: hedTag.id,
+ ID: newTagID,
+ PropertyName: activeColumnName,
+ PropertyValue: activeFieldValue,
+ TagValue: null,
+ Description:
+ datasetTags[activeColumnName][activeFieldValue].length > 0
+ ? datasetTags[activeColumnName][activeFieldValue][0].Description ?? ''
+ : '',
+ HasPairing: '0',
+ PairRelID: null,
+ AdditionalMembers: 0,
+ }
+ ]);
+ setSearchText('');
+ setSearchTextValid(false);
+ } else {
+ console.error('Failed to add tag. TODO: report')
+ }
+ }
+
+ const getRootTags = (tags: HEDTag[]) => {
+ return tags.filter((tag) => {
+ return tag.ID &&
+ !tags.some((t) => {
+ return tag.ID === t.PairRelID;
+ })
+ });
+ }
+
+ const handleRemoveTag = (tagRelID: any) => {
+ if (groupMode) {
+ console.warn('If you want to delete a tag, you cannot be in "Group Mode". Press the "Tag Mode" button');
+ return;
+ }
+
+ const tagsToSearch = applyOverrides(datasetTags[activeColumnName][activeFieldValue]);
+ const tagFromDataset = tagsToSearch.find((tag) => {
+ return tag.ID === tagRelID;
+ })
+
+ if (tagFromDataset) {
+ // Only allow deletion if not grouped
+ const rootTags = getRootTags(tagsToSearch);
+
+ const tagInRootTags = rootTags.find((tag) => {
+ return tag.ID === tagFromDataset.ID
+ });
+
+ const tagInGroupedTags = applyOverrides(groupedTags).find((tag) => {
+ return tag.ID === tagFromDataset.ID;
+ })
+
+ if (!tagInGroupedTags && tagInRootTags && tagInRootTags.PairRelID === null) {
+ setDeletedTags([
+ ...deletedTags,
+ tagFromDataset
+ ]);
+ } else {
+ console.error('You may not delete a grouped tag. Undo group first.');
+ }
+ } else {
+ const updatedAddedTags = applyOverrides(addedTags);
+ const updatedGroupedTags = applyOverrides(groupedTags);
+ // Remove tag from addedTags
+ if (tagRelID.startsWith('add_')) {
+ const tagFromAdded = updatedAddedTags.find((tag) => {
+ return tag.ID === tagRelID;
+ });
+ const tagInGroupedTags = tagFromAdded
+ ? updatedGroupedTags.find((tag) => {
+ return tag.ID === tagFromDataset.ID;
+ })
+ : false;
+ if (!tagInGroupedTags && tagFromAdded) {
+ setAddedTags(updatedAddedTags.filter((tag) => {
+ return tag !== tagFromAdded;
+ }));
+ }
+ }
+ }
+
+ // Force tooltip removal
+ handleHEDMouseLeave();
+ }
+
+ const handleTextChange = (e) => {
+ const newText = e.target.value;
+ let fullHEDString = newText;
+ const hedTag = schemaTags.find((tag) => {
+ return tag.name === newText;
+ })
+ if (hedTag && hedTag.longName.trim().length > fullHEDString.length)
+ fullHEDString = hedTag.longName.trim();
+ setSearchText(fullHEDString);
+ setSearchTextValid(!!validateSearchTag(fullHEDString));
+ }
+
+ const handleFieldValueChange = (e) => {
+ setActiveFieldValue(e.target.value);
+ setGroupedTags([]);
+ }
+
+ const handleColumnValueChange = (e) => {
+ setActiveColumnName(e.target.value);
+ setActiveFieldValue(null);
+ setSearchText('');
+ }
+
+ const getNumberOfDirectChildren = (tagName: string) => {
+ return schemaTags.filter((hedTag) => {
+ const tagSplit = hedTag.longName.split('/');
+ return tagSplit.length === 2 && tagSplit[0] === tagName.trim();
+ }).length;
+ }
+
+ const buildDataList = (onlyParentNodes: boolean) => {
+ return (
+
+ {
+ (onlyParentNodes
+ ? parentNodes
+ : schemaTags
+ ).map((hedTag) => {
+ if (!activeHEDSchemas[hedTag.schemaName.toUpperCase()])
+ return null;
+
+ return (
+
+ )
+ })
+ }
+
+ );
+ }
+
+ const buildColumnNames = () => {
+ return columnOptions.filter((column) => {
+ return column.value !== 'channels' // Removed until recognized
+ && column.field_values.filter((value) => {
+ return !['', 'n/a'].includes(value); // Column has real values
+ }).length > 0
+ }).map((column) => {
+ const columnName = column.value;
+ const columnIsDirty = isDirty(columnName, '');
+
+ return (
+
+ {columnName + (columnIsDirty ? ' (edited)' : '')}
+
+ )
+ });
+ }
+
+ const buildFieldValues = (columnName: string) => {
+ const column = columnOptions.find((opt) => {
+ return opt.value === columnName
+ });
+
+ if (!column)
+ return null;
+
+ return column.field_values.map((fieldValue) => {
+ const valueIsDirty = isDirty(columnName, fieldValue);
+ return (
+
+ {fieldValue + (valueIsDirty ? ' (edited)' : '')}
+
+ )
+ })
+ }
+
+ const handleHEDMouseEnter = (hedSchemaElement: HEDSchemaElement) => {
+ if (hedSchemaElement) {
+ setDatasetTooltip({
+ title: hedSchemaElement.longName,
+ description: hedSchemaElement.description,
+ });
+ }
+ }
+
+ const handleHEDMouseLeave = () => {
+ clearDatasetTooltip();
+ }
+
+ const clearDatasetTooltip = () => {
+ setDatasetTooltip({
+ title: '',
+ description: '',
+ });
+ }
+
+ const getGroupedTagPairings = (hedTags: HEDTag[]) => {
+ const tagPairings = [];
+ if (activeFieldValue) { // null between transitions
+ hedTags.forEach((hedTag) => {
+ let pairRelID = hedTag.PairRelID;
+ while (pairRelID !== null) {
+ const pairRelTag = applyOverrides([...addedTags, ...datasetTags[activeColumnName][activeFieldValue]])
+ .find((t) => {
+ return t.ID === pairRelID;
+ });
+ if (pairRelTag) {
+ tagPairings.push(pairRelTag);
+ pairRelID = pairRelTag.PairRelID;
+ } else {
+ console.error(`Something went wrong. Tag with ID ${pairRelID} not found. Should not proceed.`);
+ pairRelID = null;
+ }
+ }
+ });
+ }
+ return tagPairings;
+ }
+
+ const buildGroupSpan = (char: string, colorIndex: number) => {
+ return (
+
+ {char}
+
+ );
+ }
+
+ const buildHEDBadges = (tags: HEDTag[]) => {
+ const hedTags = applyOverrides(tags).filter((tag) => {
+ // Filter out invalidated addedTags that were added for structure (HEDTagID === null) and DB garbage
+ return tag.HEDTagID !== null || tag.PairRelID !== null;
+ });
+
+ const rootTags = getRootTags(hedTags);
+ const tagBadges = [];
+
+ rootTags.forEach((tag) => {
+ let groupColorIndex = 0;
+ if (tag.PairRelID === null) {
+ tagBadges.push(buildHEDBadge(tag.schemaElement.longName, tag.ID.toString(), true));
+ groupColorIndex++;
+ } else {
+ const tagGroup = [];
+ let groupMember = tag;
+ while (groupMember) {
+ tagGroup.push(groupMember);
+ groupMember = hedTags.find((hedTag) => {
+ return hedTag.ID === groupMember.PairRelID;
+ });
+ }
+
+ const tagBadgeGroup = [];
+ const tagBadgeSubgroup = [];
+ tagGroup.reverse().map((groupTag: HEDTag) => {
+ if (groupTag.PairRelID === null) {
+ tagBadgeGroup.push(buildHEDBadge(groupTag.schemaElement.longName, groupTag.ID, true));
+ } else {
+ if (groupTag.HasPairing === '1') {
+ if (groupTag.AdditionalMembers > 0 || tagBadgeSubgroup.length === 0) {
+ let commaIndex = getNthMemberTrailingBadgeIndex(
+ tagBadgeGroup,
+ groupTag.AdditionalMembers + (
+ tagBadgeSubgroup.length > 0 ? 0 : 1
+ )
+ );
+
+ tagBadgeGroup.splice(commaIndex, 0, buildGroupSpan(')', groupColorIndex));
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeGroup.splice(0, 0, ...tagBadgeSubgroup);
+ }
+ if (groupTag.HEDTagID !== null) {
+ tagBadgeGroup.splice(0, 0, buildHEDBadge(groupTag.schemaElement.longName, groupTag.ID, true));
+ }
+ tagBadgeGroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeSubgroup.length = 0;
+ } else {
+ if (groupTag.HEDTagID === null) {
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeSubgroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeSubgroup.push(buildGroupSpan(')', groupColorIndex));
+ } else {
+ console.error('UNEXPECTED STATE');
+ }
+ } else {
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeSubgroup.splice(0, 0, buildHEDBadge(groupTag.schemaElement.longName, groupTag.ID, true));
+ tagBadgeSubgroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeSubgroup.push(buildGroupSpan(')', groupColorIndex));
+ } else {
+ tagBadgeGroup.splice(0, 0, buildHEDBadge(groupTag.schemaElement.longName, groupTag.ID, true));
+ tagBadgeGroup.splice(0, 0, buildGroupSpan('(', groupColorIndex));
+ tagBadgeGroup.push(buildGroupSpan(')', groupColorIndex));
+ }
+ }
+ }
+ groupColorIndex++;
+ } else {
+ if (tagBadgeSubgroup.length > 0) {
+ tagBadgeGroup.splice(0, 0, ...tagBadgeSubgroup);
+ }
+ tagBadgeSubgroup.splice(0, tagBadgeSubgroup.length, buildHEDBadge(groupTag.schemaElement.longName, groupTag.ID, true));
+ }
+ }
+ });
+ tagBadges.push(...tagBadgeGroup);
+ }
+ });
+ return tagBadges;
+ }
+
+ const buildHEDBadge = (text: string, relID: string, isSubmitted: boolean = true) => {
+ const hedTag = schemaTags.find((tag) => {
+ return tag.longName.trim() === text;
+ });
+
+ const tagsToSearch = applyOverrides([...addedTags, ...datasetTags[activeColumnName][activeFieldValue]]);
+
+ let hedTagObj = isSubmitted && tagsToSearch.find((tag) => {
+ return tag.ID === relID;
+ });
+
+ const tagIsGrouped = hedTagObj && hedTagObj.HasPairing === '1' || (
+ tagsToSearch.some((tag) => {
+ return tag.PairRelID ? tag.PairRelID.toString() : undefined === relID
+ })
+ );
+
+ let tagIsSelected = false;
+
+ if (hedTagObj) {
+ tagIsSelected = applyOverrides(groupedTags).some((tag) => {
+ if (tag.ID === relID) {
+ return true;
+ }
+ if (tag.PairRelID) {
+ let tagObject = tagsToSearch.find((t) => {
+ return t.ID === tag.ID;
+ });
+ while (tagObject && (tagObject.PairRelID !== null || tagObject.HasPairing === '1')) {
+ tagObject = tagsToSearch.find((t) => {
+ return t.ID === tagObject.PairRelID;
+ });
+ if (tagObject && tagObject.ID === relID) {
+ return true;
+ }
+ }
+ }
+ });
+ }
+
+ let tagClassName = 'selection-filter-tag selection-filter-dataset-tag dataset-filter-tag';
+ tagClassName += isSubmitted ? '' : ' dataset-tag-dirty';
+ tagClassName += tagIsSelected ? ' dataset-tag-selected' : '';
+
+ return (
+ {
+ handleHEDMouseEnter(hedTag);
+ }}
+ onMouseLeave={handleHEDMouseLeave}
+ onClick={(e) => {
+ if (!isSubmitted || (!groupMode && !e.shiftKey))
+ return;
+
+ if (hedTagObj) {
+ let tagRelID = relID;
+ if (tagIsGrouped) {
+ // Find leaf tag
+ let pairRelObj = hedTagObj;
+ while (pairRelObj !== undefined) {
+ tagRelID = pairRelObj.ID;
+ hedTagObj = pairRelObj;
+ pairRelObj = tagsToSearch.find((tag) => {
+ return tag.PairRelID === pairRelObj.ID;
+ });
+ }
+ }
+ if (tagIsSelected) {
+ // Remove leaf
+ setGroupedTags(applyOverrides(groupedTags).filter((tag) => {
+ return tag.ID !== tagRelID;
+ }));
+ } else {
+ // Add leaf
+ setGroupedTags([...groupedTags, hedTagObj]);
+ }
+ } else {
+ console.error(`Tag not found: ${relID}`);
+ }
+ }}
+ >
+
+
+ {
+ hedTag
+ ? showLongFormHED
+ ? hedTag.longName
+ : hedTag.name
+ : text
+ }
+
+ {
+ if (isSubmitted) {
+ handleRemoveTag(relID);
+ } else {
+ setSearchText('');
+ clearDatasetTooltip();
+ }
+ }}
+ >
+ x
+
+
+
+ );
+ }
+
+ const applyOverrides = (hedTags: HEDTag[]): HEDTag[] => {
+ return hedTags.map((hedTag) => {
+ let schemaElement = hedTag.schemaElement;
+ if (hedTag.HEDTagID !== null && !schemaElement) {
+ schemaElement = schemaTags.find((tag) => {
+ return tag.id === hedTag.HEDTagID;
+ })
+ }
+ const overriddenTag = relOverrides.find((tag) => {
+ return tag.ID === hedTag.ID;
+ });
+
+ if (overriddenTag) {
+ hedTag = {
+ ...hedTag,
+ HasPairing: overriddenTag.HasPairing,
+ PairRelID: overriddenTag.PairRelID,
+ AdditionalMembers: overriddenTag.AdditionalMembers,
+ }
+ }
+ return {
+ ...hedTag,
+ schemaElement: schemaElement,
+ };
+ })
+ }
+
+
+ const columnOptions = Object.keys(datasetTags).map((column) => {
+ return {
+ label: column,
+ value: column,
+ description: '',
+ field_values: Object.keys(datasetTags[column]).map((columnValue) => {
+ return columnValue;
+ })
+ }
+ });
+
+ const handleConfirmGroup = () => {
+ const updatedGroupTags = applyOverrides(groupedTags);
+ const newTags = [];
+ const tagOverrides = [];
+
+ // Tag created before first
+ const newTagID = generateTagID(0);
+ const newTag: HEDTag = {
+ schemaElement: null,
+ HEDTagID: null,
+ ID: newTagID,
+ PropertyName: activeColumnName,
+ PropertyValue: activeFieldValue,
+ TagValue: null,
+ Description: updatedGroupTags[0].Description,
+ HasPairing: '1',
+ PairRelID: updatedGroupTags[0].ID,
+ AdditionalMembers: updatedGroupTags.length - 1,
+ }
+ newTags.push(newTag);
+
+ updatedGroupTags.forEach((rootTag, groupTagIndex) => {
+ const tagPairings = applyOverrides(getGroupedTagPairings([rootTag]));
+ const leafTag = tagPairings.length > 0 ? tagPairings.slice(-1)[0] : rootTag;
+ const leafHadPairing = leafTag.HasPairing === '1';
+
+ if ((groupTagIndex + 1) < updatedGroupTags.length) {
+ tagOverrides.push({
+ ...leafTag,
+ HasPairing: '0',
+ PairRelID: updatedGroupTags[groupTagIndex + 1].ID,
+ });
+ }
+
+ if (leafHadPairing) {
+ console.error('Something went wrong');
+ }
+ });
+
+ setAddedTags([...addedTags, ...newTags]);
+ setRelOverrides([
+ ...relOverrides.filter((t) => {
+ return !tagOverrides.some((relTag) => {
+ return relTag.ID === t.ID;
+ })
+ }),
+ ...tagOverrides
+ ]);
+
+ setGroupedTags([]);
+ }
+
+ const handleUndoGroup = () => {
+ let firstTag = applyOverrides(groupedTags)[0];
+ const tagPairings = getGroupedTagPairings([firstTag]);
+ const tagOverrides = [];
+ // Remove pairings
+ [firstTag, ...tagPairings].forEach((tag) => {
+ tagOverrides.push({
+ ...tag,
+ HasPairing: '0',
+ PairRelID: null,
+ AdditionalMembers: 0,
+ });
+ });
+
+ setRelOverrides([
+ ...relOverrides.filter((t) => {
+ return !tagOverrides.some((relTag) => {
+ return relTag.ID === t.ID;
+ })
+ }),
+ ...tagOverrides
+ ]);
+
+ setGroupedTags([]);
+ // TODO: IF REL SAME AS OG, DELETE FROM REL
+ }
+
+ const handleSchemaFieldClick = (key, action) => {
+ setActiveHEDSchemas(previouslyActive => ({
+ ...previouslyActive,
+ [key]: action === 'check'
+ }));
+ }
+
+ const handleToggleAllSchemas = (action) => {
+ const active = action === 'check';
+ setActiveHEDSchemas(
+ Object.keys(activeHEDSchemas).reduce((schemas, schema) => {
+ return {
+ ...schemas,
+ [schema]: active
+ };
+ }, {})
+ );
+ }
+
+ return (
+
+
+
+
+ Column Name
+
+
+
+
+ {buildColumnNames()}
+
+
+
Column Values
+
+ {buildFieldValues(activeColumnName)}
+
+
+
+
+ {
+ (activeFieldValue === null || activeFieldValue === '') && (
+
+ Select a Column Name and Value to Add or View HED Tags
+
+ )
+ }
+ {
+ (activeFieldValue !== null && activeFieldValue !== '') && (
+
+
+
{
+ setShowLongFormHED(!showLongFormHED);
+ }}
+ />
+
+
+ Currently active schemas:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Description:
+
+
+
+
+
+
+
+ {
+ buildHEDBadges([
+ ...(datasetTags[activeColumnName] && datasetTags[activeColumnName][activeFieldValue])
+ ? datasetTags[activeColumnName][activeFieldValue].filter((datasetTag) => {
+ return !deletedTags.find((tag) => {
+ return tag.ID === datasetTag.ID;
+ });
+ })
+ : [],
+ ...addedTags.filter((tag) => {
+ return tag.PropertyName === activeColumnName
+ && tag.PropertyValue === activeFieldValue;
+ })
+ ]).map((badge) => {
+ return badge;
+ })
+ }
+ {
+ searchText.length > 0
+ && buildHEDBadge(
+ searchText,
+ null,
+ false
+ )
+ }
+
+
+ )
+ }
+
+
+
+
+ {
+ groupedTags.length > 0 && (
+ <>
+
+
+ Preview : (
+ {
+ buildHEDString(
+ [...applyOverrides(groupedTags), ...getGroupedTagPairings(applyOverrides(groupedTags))],
+ showLongFormHED
+ ).join(', ')
+ }
+ )
+
+ >
+ )
+ }
+
+
+
+ {
+ (activeFieldValue !== null && activeFieldValue !== '') && (
+ <>
+ {
+ if (groupMode)
+ setGroupedTags([]);
+ setGroupMode(!groupMode)
+
+ }}
+ >
+ {
+ (groupMode ? 'Tag' : 'Group') + ' Mode'
+ }
+
+ {
+ groupedTags.length > 0 && (
+
+ Confirm Group
+
+ )
+ }
+ {
+ groupedTags.length === 1 && (
+ applyOverrides(groupedTags)[0].HasPairing === '1' || applyOverrides(groupedTags)[0].PairRelID !== null
+ ) && (
+
+ Ungroup
+
+ )
+ }
+ >
+ )
+ }
+
+
+
+ Reset All Columns
+
+ {
+ return tag.PropertyName === activeColumnName &&
+ tag.PropertyValue === activeFieldValue;
+ }) && (
+ activeColumnName && activeFieldValue &&
+ !datasetTags[activeColumnName][activeFieldValue].some((tag) => {
+ return relOverrides.map((relOverride) => {
+ return relOverride.ID;
+ }).includes(tag.ID);
+ })
+ )
+ }
+ >
+ Reset Column Changes
+
+
+ Submit Changes
+
+
+
+
+
+ );
+};
+
+DatasetTagger.defaultProps = {};
+
+export default connect(
+ (state: RootState) => ({
+ physioFileID: state.dataset.physioFileID,
+ datasetTags: state.dataset.datasetTags,
+ relOverrides: state.dataset.hedRelOverrides,
+ hedSchema: state.dataset.hedSchema,
+ addedTags: state.dataset.addedTags,
+ deletedTags: state.dataset.deletedTags,
+ }),
+ (dispatch: (_: any) => void) => ({
+ setAddedTags: R.compose(
+ dispatch,
+ setAddedTags
+ ),
+ setDeletedTags: R.compose(
+ dispatch,
+ setDeletedTags
+ ),
+ setDatasetTags: R.compose(
+ dispatch,
+ setDatasetTags
+ ),
+ setRelOverrides: R.compose(
+ dispatch,
+ setRelOverrides
+ ),
+ })
+)(DatasetTagger);
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EEGMontage.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EEGMontage.tsx
index 1fd20e27e56..7e1428c9ce3 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EEGMontage.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EEGMontage.tsx
@@ -19,6 +19,7 @@ type CProps = {
mouseY: number,
setHidden: (_: number[]) => void,
physioFileID: number,
+ chunksURL: string,
};
/**
@@ -31,6 +32,7 @@ const EEGMontage = (
{
electrodes,
physioFileID,
+ chunksURL,
}: CProps) => {
if (electrodes.length === 0) return null;
@@ -298,16 +300,18 @@ const EEGMontage = (
{view3D ?
:
-
+
}
@@ -340,6 +344,7 @@ const EEGMontage = (
EEGMontage.defaultProps = {
montage: [],
hidden: [],
+ chunksURL: '',
};
export default connect(
@@ -347,6 +352,7 @@ export default connect(
hidden: state.montage.hidden,
electrodes: state.montage.electrodes,
physioFileID: state.dataset.physioFileID,
+ chunksURL: state.dataset.chunksURL,
}),
(dispatch: (_: any) => void) => ({
setHidden: R.compose(
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EventManager.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EventManager.tsx
index 09f33ff29b8..f5390e0aa6d 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EventManager.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/EventManager.tsx
@@ -2,11 +2,13 @@ import React, {useState, useEffect} from 'react';
import {setCurrentAnnotation} from '../store/state/currentAnnotation';
import {MAX_RENDERED_EPOCHS} from '../../vector';
import {
+ buildHEDString,
getEpochsInRange,
+ getTagsForEpoch,
toggleEpoch,
updateActiveEpoch,
} from '../store/logic/filterEpochs';
-import {Epoch as EpochType, RightPanel} from '../store/types';
+import {Epoch as EpochType, EpochFilter, HEDTag, HEDSchemaElement, RightPanel} from '../store/types';
import {connect} from 'react-redux';
import {setTimeSelection} from '../store/state/timeSelection';
import {setRightPanel} from '../store/state/rightPanel';
@@ -17,16 +19,18 @@ import {setFilteredEpochs} from '../store/state/dataset';
type CProps = {
timeSelection?: [number, number],
epochs: EpochType[],
- filteredEpochs: number[],
+ filteredEpochs: EpochFilter,
rightPanel: RightPanel,
setCurrentAnnotation: (_: EpochType) => void,
setTimeSelection: (_: [number, number]) => void,
setRightPanel: (_: RightPanel) => void,
toggleEpoch: (_: number) => void,
updateActiveEpoch: (_: number) => void,
- setFilteredEpochs: (_: number[]) => void,
+ setFilteredEpochs: (_: EpochFilter) => void,
interval: [number, number],
viewerHeight: number,
+ hedSchema: HEDSchemaElement[],
+ datasetTags: any,
};
/**
@@ -43,6 +47,8 @@ type CProps = {
* @param root0.setFilteredEpochs
* @param root0.interval
* @param root0.viewerHeight
+ * @param root0.hedSchema
+ * @param root0.datasetTags
*/
const EventManager = ({
epochs,
@@ -56,60 +62,61 @@ const EventManager = ({
setFilteredEpochs,
interval,
viewerHeight,
+ hedSchema,
+ datasetTags,
}: CProps) => {
- const [epochType, setEpochType] = useState((rightPanel
- && rightPanel !== 'annotationForm'
- && rightPanel === 'eventList') ?
- 'Event' : 'Annotation');
-
- const [activeEpochs, setActiveEpochs] = useState([]);
- const [epochsInRange, setEpochsInRange] = useState(
- getEpochsInRange(epochs, interval, epochType)
- );
+ const [epochsInRange, setEpochsInRange] = useState(getEpochsInRange(epochs, interval));
const [allEpochsVisible, setAllEpochsVisibility] = useState(() => {
if (epochsInRange.length < MAX_RENDERED_EPOCHS) {
return epochsInRange.some((index) => {
- return !filteredEpochs.includes(index);
- });
+ return !filteredEpochs.plotVisibility.includes(index);
+ })
}
return true;
});
- const [visibleComments, setVisibleComments] = useState([]);
const [allCommentsVisible, setAllCommentsVisible] = useState(false);
- const totalEpochs = epochs.filter(
- (epoch) => epoch.type === epochType
- ).length;
// Update window visibility state
useEffect(() => {
- setEpochsInRange(getEpochsInRange(epochs, interval, epochType));
- if (epochsInRange.length < MAX_RENDERED_EPOCHS) {
- setAllEpochsVisibility(!epochsInRange.some((index) => {
- return !filteredEpochs.includes(index);
- })); // If one or more event isn't visible, set to be able to reveal all
+ const updatedEpochs = getEpochsInRange(epochs, interval);
+
+ if (updatedEpochs.length > 0 && updatedEpochs.length < MAX_RENDERED_EPOCHS) {
+ setAllEpochsVisibility(!updatedEpochs.some((index) => {
+ return !filteredEpochs.plotVisibility.includes(index);
+ })); // If one or more event isn't visible, set to be able to reveal all
} else {
setAllEpochsVisibility(false);
}
- }, [filteredEpochs, interval]);
- useEffect(() => {
- // Toggle comment section if in range and has a comment / tag
- if (!allCommentsVisible) {
- setVisibleComments([]);
+ if (updatedEpochs.length > 0) {
+ setAllCommentsVisible(!updatedEpochs.some((epochIndex) => {
+ return (epochs[epochIndex].properties.length > 0 || epochs[epochIndex].hed)
+ && !filteredEpochs.columnVisibility.includes(epochIndex);
+ }));
} else {
-
- const commentIndexes = getEpochsInRange(epochs, interval, epochType, true)
- .map((index) => index);
- setVisibleComments([...commentIndexes]);
+ setAllCommentsVisible(false);
}
- }, [allCommentsVisible]);
- useEffect(() => {
- setEpochType((rightPanel
- && rightPanel !== 'annotationForm'
- && rightPanel === 'eventList') ?
- 'Event' : 'Annotation');
- }, [rightPanel]);
+ setEpochsInRange(updatedEpochs);
+ }, [filteredEpochs, interval]);
+
+
+ const setCommentsInRangeVisibility = (visible) => {
+ let commentIndices = [...filteredEpochs.columnVisibility];
+ epochsInRange.forEach((epochIndex) => {
+ if (epochs[epochIndex].properties.length > 0 || epochs[epochIndex].hed) {
+ if (visible && !filteredEpochs.columnVisibility.includes(epochIndex)) {
+ commentIndices.push(epochIndex);
+ } else if (!visible && filteredEpochs.columnVisibility.includes(epochIndex)) {
+ commentIndices = commentIndices.filter((value) => value !== epochIndex);
+ }
+ }
+ });
+ setFilteredEpochs({
+ plotVisibility: filteredEpochs.plotVisibility,
+ columnVisibility: commentIndices
+ });
+ }
/**
*
@@ -117,17 +124,17 @@ const EventManager = ({
*/
const setEpochsInViewVisibility = (visible) => {
if (epochsInRange.length < MAX_RENDERED_EPOCHS) {
- epochsInRange.map((index) => {
- if ((visible && !filteredEpochs.includes(index))
- || (!visible && filteredEpochs.includes(index))) {
- toggleEpoch(index);
+ epochsInRange.forEach((epochIndex) => {
+ if ((visible && !filteredEpochs.plotVisibility.includes(epochIndex))
+ || (!visible && filteredEpochs.plotVisibility.includes(epochIndex))) {
+ toggleEpoch(epochIndex);
}
});
}
- };
+ }
const visibleEpochsInRange = epochsInRange.filter(
- (epochIndex) => filteredEpochs.includes(epochIndex)
+ (epochIndex) => filteredEpochs.plotVisibility.includes(epochIndex)
);
return (
@@ -142,13 +149,20 @@ const EventManager = ({
>
- {`${epochType}s (${visibleEpochsInRange.length}/${epochsInRange.length})`}
+ {`Events (${visibleEpochsInRange.length}/${epochsInRange.length})`}
- in timeline view [Total: {totalEpochs}]
+ in timeline view [Total: {epochs.length}]
+
setCommentsInRangeVisibility(!allCommentsVisible)}
+ >
setEpochsInViewVisibility(!allEpochsVisible)}
-
- >
-
setAllCommentsVisible(!allCommentsVisible)}
>
}
- {epochsInRange.map((index) => {
- const epoch = epochs[index];
- const visible = filteredEpochs.includes(index);
+ {epochsInRange.map((epochIndex) => {
+ const epoch = epochs[epochIndex];
+ const epochVisible = filteredEpochs.plotVisibility.includes(epochIndex);
+ const hedVisible = filteredEpochs.columnVisibility.includes(epochIndex);
/**
*
*/
const handleCommentVisibilityChange = () => {
- if (!visibleComments.includes(index)) {
- setVisibleComments([
- ...visibleComments,
- index,
- ]);
+ if (!hedVisible) {
+ setFilteredEpochs({
+ plotVisibility: filteredEpochs.plotVisibility,
+ columnVisibility: [
+ ...filteredEpochs.columnVisibility,
+ epochIndex,
+ ]
+ });
} else {
- setVisibleComments(visibleComments.filter(
- (value) => value !== index
- ));
+ setFilteredEpochs({
+ plotVisibility: filteredEpochs.plotVisibility,
+ columnVisibility: filteredEpochs.columnVisibility.filter(
+ (value) => value !== epochIndex
+ )
+ });
}
};
@@ -231,64 +246,86 @@ const EventManager = ({
return (
updateActiveEpoch(epochIndex)}
+ onMouseLeave={() => updateActiveEpoch(null)}
>
- {epoch.label}
- {Math.round(epoch.onset * 1000) / 1000}
- {epoch.duration > 0
- && ' - '
- + (Math.round((epoch.onset + epoch.duration) * 1000) / 1000)
- }
-
-
- {epoch.type === 'Annotation' &&
+
+ {epoch.label}
+
+ {Math.round(epoch.onset * 1000) / 1000}
+ {epoch.duration > 0
+ && ' - '
+ + (Math.round((epoch.onset + epoch.duration) * 1000) / 1000)
+ }
+
+
+ {(epoch.properties.length > 0 || epoch.hed) &&
+ handleCommentVisibilityChange()}
+ >
+
+
+ }
handleEditClick()}
+ className={(epochVisible ? '' : 'active ')
+ + 'btn btn-xs btn-primary'}
+ onClick={() => toggleEpoch(epochIndex)}
>
- }
- toggleEpoch(index)}
- >
-
-
- {(epoch.comment || epoch.hed) &&
- handleCommentVisibilityChange()}
- >
-
-
- }
+ {epoch.type === 'Event' &&
+ handleEditClick()}
+ >
+
+
+ }
+
- {visibleComments.includes(index) &&
+ {(hedVisible && (epoch.properties.length > 0 || epoch.hed)) &&
- {epoch.type == 'Annotation' && epoch.comment &&
-
Comment: {epoch.comment}
+ {epoch.properties.length > 0 &&
+
Additional Columns:
+ {
+ epoch.properties.map((property) =>
+ `${property.PropertyName}: ${property.PropertyValue}`
+ ).join(', ')
+ }
+
}
- {epoch.type == 'Event' && epoch.hed &&
-
HED: {epoch.hed}
+ {epoch.hed &&
+
HED:
+ {buildHEDString([
+ ...epoch.hed,
+ ...getTagsForEpoch(epoch, datasetTags, hedSchema),
+ ]).join(', ')}
+
}
}
@@ -304,7 +341,10 @@ const EventManager = ({
EventManager.defaultProps = {
timeSelection: null,
epochs: [],
- filteredEpochs: [],
+ filteredEpochs: {
+ plotVisibility: [],
+ columnVisibility: [],
+ },
};
export default connect(
@@ -315,6 +355,8 @@ export default connect(
rightPanel: state.rightPanel,
interval: state.bounds.interval,
viewerHeight: state.bounds.viewerHeight,
+ hedSchema: state.dataset.hedSchema,
+ datasetTags: state.dataset.datasetTags,
}),
(dispatch: (_: any) => void) => ({
setCurrentAnnotation: R.compose(
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/Form.js b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/Form.js
index 882a3a2a55a..a08425b6205 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/Form.js
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/Form.js
@@ -30,6 +30,7 @@ export const SelectElement = (props) => {
let emptyOptionHTML = null;
let requiredHTML = null;
let elementClass = props.noMargins ? '' : 'row form-group';
+ let useOptionGroups = props.useOptionGroups;
// Add required asterisk
if (required) {
@@ -68,18 +69,46 @@ export const SelectElement = (props) => {
);
});
} else {
- optionList = Object.keys(options).map(function(option) {
- let isDisabled = (option in disabledOptions);
- return (
-
- {options[option]}
-
- );
- });
+ if (useOptionGroups) {
+ const optGroups = new Set(options.map((opt) => opt.optgroup));
+
+ optionList = Array.from(optGroups).sort().map((optGroup) => {
+ return (
+
+ {
+ options.filter((option) =>
+ option.optgroup === optGroup
+ ).map((opt) => {
+ let isDisabled = (opt in disabledOptions);
+ return (
+
+ {opt.label}
+
+ );
+ })
+ }
+
+ );
+ });
+
+ } else {
+ optionList = options.map(function(option) {
+ let isDisabled = (option in disabledOptions);
+ return (
+
+ {option.value}
+
+ );
+ });
+ }
}
if (props.placeholder !== '') {
@@ -108,7 +137,10 @@ export const SelectElement = (props) => {
}
return (
-
+
{label}
{
SelectElement.propTypes = {
name: PropTypes.string.isRequired,
- options: PropTypes.object.isRequired,
+ options: PropTypes.array.isRequired,
disabledOptions: PropTypes.object,
label: PropTypes.string,
value: PropTypes.oneOfType([
@@ -149,11 +181,12 @@ SelectElement.propTypes = {
onUserInput: PropTypes.func,
noMargins: PropTypes.bool,
placeholder: PropTypes.string,
+ useOptionGroups: PropTypes.bool,
};
SelectElement.defaultProps = {
name: '',
- options: {},
+ options: [],
disabledOptions: {},
value: undefined,
id: null,
@@ -169,9 +202,11 @@ SelectElement.defaultProps = {
},
noMargins: false,
placeholder: '',
+ useOptionGroups: false,
};
export const NumericElement = (props) => {
+
const handleChange = (e) => {
props.onUserInput(props.name, e.target.value);
};
@@ -327,37 +362,39 @@ export const TextboxElement = (props) => {
}
props.onUserInput(props.id, value);
};
+
+ const {disabled, required} = props;
+ let requiredHTML = required ? * : null;
+ let errorMessage = null;
+ let elementClass = 'row form-group';
+
/**
* Renders the React component.
*
* @return {JSX} - React markup for component.
*/
return (
- <>
+
);
};
TextboxElement.defaultProps = {
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/ResponsiveViewer.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/ResponsiveViewer.tsx
index 36ef450ef78..8956fb8b116 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/ResponsiveViewer.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/ResponsiveViewer.tsx
@@ -1,24 +1,24 @@
import * as R from 'ramda';
-import React, {FunctionComponent, MutableRefObject} from 'react';
+import React, {FunctionComponent} from 'react';
import {scaleLinear} from 'd3-scale';
import {withParentSize} from '@visx/responsive';
+import {WithParentSizeProps} from "@visx/responsive/lib/enhancers/withParentSize";
type CProps = {
- ref: MutableRefObject,
parentWidth?: number,
parentHeight?: number,
mouseDown?: (_: any) => void,
mouseMove?: (_: any) => void,
mouseUp?: (_: any) => void,
mouseLeave?: (_: any) => void,
- children: any,
- showOverflow: boolean,
+ children?: any,
+ showOverflow?: boolean,
+ chunksURL: string,
};
/**
*
* @param root0
- * @param root0.ref
* @param root0.parentWidth
* @param root0.parentHeight
* @param root0.mouseDown
@@ -27,9 +27,9 @@ type CProps = {
* @param root0.mouseLeave
* @param root0.children
* @param root0.showOverflow
+ * @param root0.chunksURL
*/
const ResponsiveViewer : FunctionComponent = ({
- ref,
parentWidth,
parentHeight,
mouseDown,
@@ -37,7 +37,8 @@ const ResponsiveViewer : FunctionComponent = ({
mouseUp,
mouseLeave,
children,
- showOverflow
+ showOverflow,
+ chunksURL,
}) => {
/**
*
@@ -51,7 +52,7 @@ const ResponsiveViewer : FunctionComponent = ({
const layers = React.Children.toArray(children).map(provision);
- const domain = window.EEGLabSeriesProviderStore.getState().bounds.domain;
+ const domain = window.EEGLabSeriesProviderStore[chunksURL]?.getState().bounds.domain;
const amplitude = [0, 1];
const eventScale = [
scaleLinear()
@@ -149,4 +150,4 @@ ResponsiveViewer.defaultProps = {
},
};
-export default withParentSize(ResponsiveViewer);
+export default withParentSize(ResponsiveViewer);
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesCursor.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesCursor.tsx
index 89eb142b90f..9df9c957b39 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesCursor.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesCursor.tsx
@@ -180,7 +180,7 @@ const SeriesCursor = (
*
*/
const EpochMarker = () => {
- const visibleEpochs = getEpochsInRange(epochs, interval, 'Event');
+ const visibleEpochs = getEpochsInRange(epochs, interval);
if (visibleEpochs
.filter((index) => {
filteredEpochs.includes(index);
@@ -310,6 +310,6 @@ export default connect(
(state: RootState)=> ({
cursorPosition: state.cursor.cursorPosition,
epochs: state.dataset.epochs,
- filteredEpochs: state.dataset.filteredEpochs,
+ filteredEpochs: state.dataset.filteredEpochs.plotVisibility,
})
)(SeriesCursor);
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesRenderer.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesRenderer.tsx
index 73436fb5bd4..1ea89b1124f 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesRenderer.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/SeriesRenderer.tsx
@@ -17,6 +17,7 @@ import {
DEFAULT_MAX_CHANNELS,
CHANNEL_DISPLAY_OPTIONS,
SIGNAL_UNIT,
+ Vector2,
DEFAULT_TIME_INTERVAL,
STATIC_SERIES_RANGE,
DEFAULT_VIEWER_HEIGHT,
@@ -28,7 +29,7 @@ import LineChunk from './LineChunk';
import Epoch from './Epoch';
import SeriesCursor from './SeriesCursor';
import {setRightPanel} from '../store/state/rightPanel';
-import {setFilteredEpochs, setDatasetMetadata} from '../store/state/dataset';
+import {setDatasetMetadata} from '../store/state/dataset';
import {setOffsetIndex} from '../store/logic/pagination';
import IntervalSelect from './IntervalSelect';
import EventManager from './EventManager';
@@ -61,7 +62,6 @@ import {
Channel,
Epoch as EpochType,
RightPanel,
- AnnotationMetadata,
} from '../store/types';
import {setCurrentAnnotation} from '../store/state/currentAnnotation';
import {setCursorInteraction} from '../store/logic/cursorInteraction';
@@ -79,6 +79,7 @@ type CProps = {
timeSelection?: [number, number],
setCursor: (number) => void,
setRightPanel: (_: RightPanel) => void,
+ chunksURL: string,
channels: Channel[],
channelMetadata: ChannelMetadata[],
hidden: number[],
@@ -102,9 +103,8 @@ type CProps = {
setInterval: (_: [number, number]) => void,
setCurrentAnnotation: (_: EpochType) => void,
physioFileID: number,
- annotationMetadata: AnnotationMetadata,
hoveredChannels: number[],
- setHoveredChannels: (_: number[]) => void,
+ setHoveredChannels: (_: number[]) => void,
};
/**
@@ -120,6 +120,7 @@ type CProps = {
* @param root0.timeSelection
* @param root0.setCursor
* @param root0.setRightPanel
+ * @param root0.chunksURL
* @param root0.channels
* @param root0.channelMetadata
* @param root0.hidden
@@ -142,7 +143,6 @@ type CProps = {
* @param root0.limit
* @param root0.setCurrentAnnotation
* @param root0.physioFileID
- * @param root0.annotationMetadata
* @param root0.hoveredChannels
* @param root0.setHoveredChannels
*/
@@ -157,6 +157,7 @@ const SeriesRenderer: FunctionComponent = ({
timeSelection,
setCursor,
setRightPanel,
+ chunksURL,
channels,
channelMetadata,
hidden,
@@ -179,10 +180,34 @@ const SeriesRenderer: FunctionComponent = ({
limit,
setCurrentAnnotation,
physioFileID,
- annotationMetadata,
hoveredChannels,
setHoveredChannels,
}) => {
+ if (channels.length === 0) return null;
+
+ const [
+ numDisplayedChannels,
+ setNumDisplayedChannels,
+ ] = useState(DEFAULT_MAX_CHANNELS);
+ const [cursorEnabled, setCursorEnabled] = useState(false);
+ const toggleCursor = () => setCursorEnabled((value) => !value);
+ const [DCOffsetView, setDCOffsetView] = useState(true);
+ const toggleDCOffsetView = () => setDCOffsetView((value) => !value);
+ const [stackedView, setStackedView] = useState(false);
+ const toggleStackedView = () => setStackedView((value) => !value);
+ const [singleMode, setSingleMode] = useState(false);
+ const toggleSingleMode = () => setSingleMode((value) => !value);
+ const [showOverflow, setShowOverflow] = useState(false);
+ const toggleShowOverflow = () => setShowOverflow((value) => !value);
+ const [highPass, setHighPass] = useState('none');
+ const [lowPass, setLowPass] = useState('none');
+ const [refNode, setRefNode] = useState(null);
+ const [bounds, setBounds] = useState(null);
+ const getBounds = useCallback((domNode) => {
+ if (domNode) {
+ setRefNode(domNode);
+ }
+ }, []);
const intervalChange = Math.pow(
10,
@@ -259,18 +284,13 @@ const SeriesRenderer: FunctionComponent = ({
const viewerRef = useRef(null);
const cursorRef = useRef(null);
- // Memoized to singal which vars are to be read from
- const memoizedCallback = useCallback(null, [
- offsetIndex, interval, limit, timeSelection, amplitudeScale,
- ]);
-
useEffect(() => { // Keypress handler
/**
*
* @param e
*/
const keybindHandler = (e) => {
- if (cursorRef.current) { // Cursor is on page / focus
+ if (cursorRef.current) { // Cursor is on plot / focus
if ([
'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight',
].indexOf(e.code) > -1) {
@@ -321,46 +341,42 @@ const SeriesRenderer: FunctionComponent = ({
toggleSingleMode();
}
break;
+ case 'KeyC':
+ setRightPanel(null);
+ break;
+ // case 'KeyA':
+ // setRightPanel('annotationForm');
+ // break;
+ case 'KeyZ':
+ zoomToSelection();
+ break;
+ case 'KeyX':
+ zoomReset();
+ break;
+ case 'Minus':
+ zoomOut();
+ break;
+ case 'Equal': // This key combination is '+'
+ zoomIn();
+ break;
+ case 'KeyN': // Lower amplitude scale
+ setAmplitudesScale(1.1);
+ break;
+ case 'KeyM': // Increase amplitude scale
+ setAmplitudesScale(0.9);
+ break;
}
}
}
-
- // Generic keybinds that don't require focus
- if (e.shiftKey) {
- switch (e.code) {
- case 'KeyC':
- setRightPanel(null);
- break;
- case 'KeyA':
- setRightPanel('annotationForm');
- break;
- case 'KeyZ':
- zoomToSelection();
- break;
- case 'KeyX':
- zoomReset();
- break;
- case 'Minus':
- zoomOut();
- break;
- case 'Equal': // This key combination is '+'
- zoomIn();
- break;
- case 'KeyN': // Lower amplitude scale
- setAmplitudesScale(1.1);
- break;
- case 'KeyM': // Increase amplitude scale
- setAmplitudesScale(0.9);
- break;
- }
- }
};
window.addEventListener('keydown', keybindHandler);
return function cleanUp() { // Prevent multiple listeners
window.removeEventListener('keydown', keybindHandler);
};
- }, [memoizedCallback]);
+ }, [
+ offsetIndex, interval, limit, timeSelection, amplitudeScale, stackedView
+ ]);
useEffect(() => {
setViewerHeight(viewerHeight);
@@ -416,30 +432,6 @@ const SeriesRenderer: FunctionComponent = ({
prevHoveredChannels.current = hoveredChannels;
}, [hoveredChannels]);
- const [
- numDisplayedChannels,
- setNumDisplayedChannels,
- ] = useState(DEFAULT_MAX_CHANNELS);
- const [cursorEnabled, setCursorEnabled] = useState(false);
- const toggleCursor = () => setCursorEnabled((value) => !value);
- const [DCOffsetView, setDCOffsetView] = useState(true);
- const toggleDCOffsetView = () => setDCOffsetView((value) => !value);
- const [stackedView, setStackedView] = useState(false);
- const toggleStackedView = () => setStackedView((value) => !value);
- const [singleMode, setSingleMode] = useState(false);
- const toggleSingleMode = () => setSingleMode((value) => !value);
- const [showOverflow, setShowOverflow] = useState(false);
- const toggleShowOverflow = () => setShowOverflow((value) => !value);
- const [highPass, setHighPass] = useState('none');
- const [lowPass, setLowPass] = useState('none');
- const [refNode, setRefNode] = useState(null);
- const [bounds, setBounds] = useState(null);
- const getBounds = useCallback((domNode) => {
- if (domNode) {
- setRefNode(domNode);
- }
- }, []);
-
const topLeft = vec2.fromValues(
-viewerWidth/2,
viewerHeight/2
@@ -458,8 +450,8 @@ const SeriesRenderer: FunctionComponent = ({
vec2.scale(center, center, 1 / 2);
const scales: [
- ScaleLinear,
- ScaleLinear
+ ScaleLinear,
+ ScaleLinear
] = [
scaleLinear()
.domain(interval)
@@ -502,32 +494,24 @@ const SeriesRenderer: FunctionComponent = ({
);
};
- /**
- *
- */
const EpochsLayer = () => {
- const epochType = rightPanel === 'eventList'
- ? 'Event'
- : rightPanel === 'annotationList'
- ? 'Annotation'
- : null
- ;
- const visibleEpochs = getEpochsInRange(epochs, interval, epochType);
+ const visibleEpochs = rightPanel ? getEpochsInRange(epochs, interval) : [];
const minEpochWidth = (interval[1] - interval[0]) *
MIN_EPOCH_WIDTH / DEFAULT_TIME_INTERVAL[1];
return (
{
- visibleEpochs.length < MAX_RENDERED_EPOCHS &&
+ visibleEpochs.length < MAX_RENDERED_EPOCHS &&
visibleEpochs.map((index) => {
return filteredEpochs.includes(index) && (
= ({
}
{timeSelection &&
= ({
{
channelList.map((channel, i) => {
- if (!channelMetadata[channel.index]) {
- return null;
- }
- const subTopLeft = vec2.create();
- vec2.add(
- subTopLeft,
- topLeft,
- vec2.fromValues(
- 0,
- stackedView && !singleMode
- ? (numDisplayedChannels - 2) *
+ if (!channelMetadata[channel.index]) {
+ return null;
+ }
+ const subTopLeft = vec2.create();
+ vec2.add(
+ subTopLeft,
+ topLeft,
+ vec2.fromValues(
+ 0,
+ stackedView && !singleMode
+ ? (numDisplayedChannels - 2) *
diagonal[1] / (2 * numDisplayedChannels)
- : (i * diagonal[1]) / numDisplayedChannels
- )
- );
+ : (i * diagonal[1]) / numDisplayedChannels
+ )
+ );
- const subBottomRight = vec2.create();
- vec2.add(
- subBottomRight,
- topLeft,
- vec2.fromValues(
- diagonal[0],
- stackedView && !singleMode
- ? (numDisplayedChannels + 2) *
+ const subBottomRight = vec2.create();
+ vec2.add(
+ subBottomRight,
+ topLeft,
+ vec2.fromValues(
+ diagonal[0],
+ stackedView && !singleMode
+ ? (numDisplayedChannels + 2) *
diagonal[1] / (2 * numDisplayedChannels)
- : ((i + 1) * diagonal[1]) / numDisplayedChannels
- )
- );
-
- const subDiagonal = vec2.create();
- vec2.sub(subDiagonal, subBottomRight, subTopLeft);
+ : ((i + 1) * diagonal[1]) / numDisplayedChannels
+ )
+ );
- const axisEnd = vec2.create();
- vec2.add(axisEnd, subTopLeft, vec2.fromValues(0.1, subDiagonal[1]));
+ const subDiagonal = vec2.create();
+ vec2.sub(subDiagonal, subBottomRight, subTopLeft);
+
+ const axisEnd = vec2.create();
+ vec2.add(axisEnd, subTopLeft, vec2.fromValues(0.1, subDiagonal[1]));
+
+ return (
+ channel.traces.map((trace, j) => {
+ const numChunks = trace.chunks.filter(
+ (chunk) => chunk.values.length > 0
+ ).length;
+
+ const valuesInView = trace.chunks.map((chunk) => {
+ let includedIndices = [0, chunk.values.length];
+ if (chunk.interval[0] < interval[0]) {
+ const startIndex = chunk.values.length *
+ (interval[0] - chunk.interval[0]) /
+ (chunk.interval[1] - chunk.interval[0]);
+ includedIndices = [startIndex, includedIndices[1]];
+ }
+ if (chunk.interval[1] > interval[1]) {
+ const endIndex = chunk.values.length *
+ (interval[1] - chunk.interval[0]) /
+ (chunk.interval[1] - chunk.interval[0]);
+ includedIndices = [includedIndices[0], endIndex];
+ }
+ return chunk.values.slice(
+ includedIndices[0], includedIndices[1]
+ );
+ }).flat();
- return (
- channel.traces.map((trace, j) => {
- const numChunks = trace.chunks.filter(
- (chunk) => chunk.values.length > 0
- ).length;
-
- const valuesInView = trace.chunks.map((chunk) => {
- let includedIndices = [0, chunk.values.length];
- if (chunk.interval[0] < interval[0]) {
- const startIndex = chunk.values.length *
- (interval[0] - chunk.interval[0]) /
- (chunk.interval[1] - chunk.interval[0]);
- includedIndices = [startIndex, includedIndices[1]];
- }
- if (chunk.interval[1] > interval[1]) {
- const endIndex = chunk.values.length *
- (interval[1] - chunk.interval[0]) /
- (chunk.interval[1] - chunk.interval[0]);
- includedIndices = [includedIndices[0], endIndex];
+ if (valuesInView.length === 0) {
+ return;
}
- return chunk.values.slice(
- includedIndices[0], includedIndices[1]
- );
- }).flat();
- if (valuesInView.length === 0) {
- return;
- }
-
- const seriesRange: [number, number] = STATIC_SERIES_RANGE;
-
- const scales: [
- ScaleLinear,
- ScaleLinear
- ] = [
- scaleLinear()
- .domain(interval)
- .range([subTopLeft[0], subBottomRight[0]]),
- scaleLinear()
- .domain(seriesRange)
- .range(
- stackedView
- ? [
- -viewerHeight / (2 * numDisplayedChannels),
- viewerHeight / (2 * numDisplayedChannels),
- ]
- : [subTopLeft[1], subBottomRight[1]]
- ),
- ];
-
- const scaleByAmplitude = scaleLinear()
- .domain(seriesRange.map((x) => x * amplitudeScale))
- .range([-0.5, 0.5]);
-
- /**
- *
- * @param values
- */
- const getScaledMean = (values) => {
- let numValues = values.length;
- return values.reduce((a, b) => {
+ const seriesRange: [number, number] = STATIC_SERIES_RANGE;
+
+ const scales: [
+ ScaleLinear,
+ ScaleLinear
+ ] = [
+ scaleLinear()
+ .domain(interval)
+ .range([subTopLeft[0], subBottomRight[0]]),
+ scaleLinear()
+ .domain(seriesRange)
+ .range(
+ stackedView
+ ? [
+ -viewerHeight / (2 * numDisplayedChannels),
+ viewerHeight / (2 * numDisplayedChannels),
+ ]
+ : [subTopLeft[1], subBottomRight[1]]
+ ),
+ ];
+
+ const scaleByAmplitude = scaleLinear()
+ .domain(seriesRange.map((x) => x * amplitudeScale))
+ .range([-0.5, 0.5]);
+
+ /**
+ *
+ * @param values
+ */
+ const getScaledMean = (values) => {
+ let numValues = values.length;
+ return values.reduce((a, b) => {
if (isNaN(b)) {
numValues--;
return a;
}
- return a + scaleByAmplitude(b);
- }, 0) / numValues;
- };
+ return a + scaleByAmplitude(b);
+ }, 0) / numValues;
+ };
- const DCOffset = DCOffsetView
- ? getScaledMean(valuesInView)
- : 0;
+ const DCOffset = DCOffsetView
+ ? getScaledMean(valuesInView)
+ : 0;
- return (
- trace.chunks.map((chunk, k, chunks) => (
+ return (
+ trace.chunks.map((chunk, k, chunks) => (
= ({
: chunks[k - 1].values.slice(-1)[0]
}
/>
- ))
- );
- })
- );
- })}
+ ))
+ );
+ })
+ );
+ })}
>
);
};
@@ -808,23 +792,6 @@ const SeriesRenderer: FunctionComponent = ({
);
};
- const updateCursorCallback = useCallback((cursor: [number, number]) => {
- setCursor({
- cursorPosition: [cursor[0], cursor[1]],
- viewerRef: viewerRef,
- });
- }, []);
-
- /**
- *
- * @param v
- */
- const updateTimeSelectionCallback = useCallback((v: vec2) => {
- document.addEventListener('mousemove', onMouseMove);
- document.addEventListener('mouseup', onMouseUp);
- R.compose(dragStart, R.nth(0))(v);
- }, [bounds]);
-
/**
*
* @param channelIndex
@@ -892,7 +859,7 @@ const SeriesRenderer: FunctionComponent = ({
className='btn btn-primary btn-xs btn-zoom'
onClick={zoomToSelection}
disabled={!selectionCanBeZoomedTo}
- value='Region'
+ value='Fit to Window'
/>
@@ -1002,21 +969,18 @@ const SeriesRenderer: FunctionComponent
= ({
)}
-
+
= ({
+
= ({
{filteredChannels
.slice(0, numDisplayedChannels)
.map((channel) => (
-
onChannelHover(channel.index)}
- onMouseLeave={() => onChannelHover(-1)}
- >
- {channelMetadata[channel.index] &&
- channelMetadata[channel.index].name}
-
- ))}
+ ? 'bold'
+ : 'normal'}`,
+ }}
+ onMouseEnter={() => onChannelHover(channel.index)}
+ onMouseLeave={() => onChannelHover(-1)}
+ >
+ {channelMetadata[channel.index] &&
+ channelMetadata[channel.index].name}
+
+ ))}
= ({
{
+ setCursor({
+ cursorPosition: [cursor[0], cursor[1]],
+ viewerRef: viewerRef
+ });
+ }, [])}
+ mouseDown={useCallback((v: Vector2) => {
+ document.addEventListener('mousemove', onMouseMove);
+ document.addEventListener('mouseup', onMouseUp);
+ R.compose(dragStart, R.nth(0))(v);
+ }, [bounds])}
showOverflow={showOverflow}
+ chunksURL={chunksURL}
>
= ({
}
}
- {
- [...Array(epochs.length).keys()].filter((i) =>
- epochs[i].type === 'Annotation'
- ).length > 0 &&
- {
- rightPanel === 'annotationList'
- ? setRightPanel(null)
- : setRightPanel('annotationList');
- }}
- >
- {rightPanel === 'annotationList'
- ? 'Hide Annotation Panel'
- : 'Show Annotation Panel'
- }
-
- }
- {
- {
- rightPanel === 'annotationForm'
- ? setRightPanel(null)
- : setRightPanel('annotationForm');
- setCurrentAnnotation(null);
- }}
- >
- {rightPanel === 'annotationForm'
- ? 'Close Annotation Form'
- : 'Add Annotation'
- }
-
- }
{rightPanel &&
{rightPanel === 'annotationForm' &&
-
+
}
- {rightPanel === 'eventList' &&
}
- {rightPanel === 'annotationList' &&
}
+ {rightPanel === 'eventList' &&
}
}
@@ -1342,9 +1280,10 @@ export default connect(
amplitudeScale: state.bounds.amplitudeScale,
rightPanel: state.rightPanel,
timeSelection: state.timeSelection,
+ chunksURL: state.dataset.chunksURL,
channels: state.channels,
epochs: state.dataset.epochs,
- filteredEpochs: state.dataset.filteredEpochs,
+ filteredEpochs: state.dataset.filteredEpochs.plotVisibility,
activeEpoch: state.dataset.activeEpoch,
hidden: state.montage.hidden,
channelMetadata: state.dataset.channelMetadata,
@@ -1395,10 +1334,6 @@ export default connect(
dispatch,
setViewerHeight
),
- setFilteredEpochs: R.compose(
- dispatch,
- setFilteredEpochs
- ),
setDatasetMetadata: R.compose(
dispatch,
setDatasetMetadata
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/components.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/components.tsx
index bb6988f0fb6..fe26c98aed2 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/components.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/components/components.tsx
@@ -96,3 +96,37 @@ export const Tick: React.FC
= ({tick, count}) => (
);
+
+
+// *******************************************************
+// INFO ICON COMPONENT
+// *******************************************************
+interface IInfoIcon {
+ title: string;
+ url: string;
+}
+
+/**
+ *
+ * @param root0
+ * @param root0.title
+ * @param root0.url
+ */
+export const InfoIcon: React.FC = ({
+ title,
+ url,
+}) => (
+
+
+
+);
+
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/fetchChunks.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/fetchChunks.tsx
index eb7fd6abb1e..f53231d2ce7 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/fetchChunks.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/fetchChunks.tsx
@@ -15,6 +15,7 @@ export const UPDATE_VIEWED_CHUNKS = 'UPDATE_VIEWED_CHUNKS';
export const updateViewedChunks = createAction(UPDATE_VIEWED_CHUNKS);
type FetchedChunks = {
+ chunksURL: string,
channelIndex: number,
traceIndex: number,
chunks: Chunk[]
@@ -30,8 +31,9 @@ export const loadChunks = (chunksData: FetchedChunks[]) => {
return (dispatch: (_: any) => void) => {
const channels : Channel[] = [];
- const filters: Filter[] = window.EEGLabSeriesProviderStore
- .getState().filters;
+ const filters: Filter[] = window
+ .EEGLabSeriesProviderStore[chunksData[0].chunksURL]
+ .getState().filters;
for (let index = 0; index < chunksData.length; index++) {
const {channelIndex, chunks} : {
channelIndex: number,
@@ -207,6 +209,7 @@ export const createFetchChunksEpic = (fromState: (any) => State) => (
return from(
Promise.all(chunkPromises).then((chunks) => ({
+ chunksURL: chunksURL,
channelIndex: channel.index,
traceIndex: traceIndex,
chunks,
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/filterEpochs.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/filterEpochs.tsx
index 55126816403..e2f011060c3 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/filterEpochs.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/filterEpochs.tsx
@@ -5,7 +5,7 @@ import {ofType} from 'redux-observable';
import {createAction} from 'redux-actions';
import {setFilteredEpochs, setActiveEpoch} from '../state/dataset';
import {MAX_RENDERED_EPOCHS} from '../../../vector';
-import {Epoch} from '../types';
+import {Epoch, HEDSchemaElement, HEDTag} from '../types';
export const UPDATE_FILTERED_EPOCHS = 'UPDATE_FILTERED_EPOCHS';
export const updateFilteredEpochs = createAction(UPDATE_FILTERED_EPOCHS);
@@ -70,10 +70,12 @@ export const createToggleEpochEpic = (fromState: (_: any) => any) => (
const index = payload;
let newFilteredEpochs;
- if (filteredEpochs.includes(index)) {
- newFilteredEpochs = filteredEpochs.filter((i) => i !== index);
+ if (filteredEpochs.plotVisibility.includes(index)) {
+ newFilteredEpochs = filteredEpochs.plotVisibility.filter(
+ (i) => i !== index
+ );
} else if (index >= 0 && index < epochs.length) {
- newFilteredEpochs = filteredEpochs.slice();
+ newFilteredEpochs = filteredEpochs.plotVisibility.slice();
newFilteredEpochs.push(index);
newFilteredEpochs.sort();
} else {
@@ -81,7 +83,10 @@ export const createToggleEpochEpic = (fromState: (_: any) => any) => (
}
return (dispatch) => {
- dispatch(setFilteredEpochs(newFilteredEpochs));
+ dispatch(setFilteredEpochs({
+ plotVisibility: newFilteredEpochs,
+ columnVisibility: filteredEpochs.columnVisibility,
+ }));
};
})
);
@@ -121,16 +126,9 @@ export const createActiveEpochEpic = (fromState: (_: any) => any) => (
*
* @param {Epoch[]} epochs - Array of epoch
* @param {[number, number]} interval - Time interval to search
- * @param {string} epochType - Epoch type (Annotation|Event)
- * @param {boolean} withComments - Include only if has comments
* @returns {Epoch[]} - Epoch[] in interval with epochType
*/
-export const getEpochsInRange = (
- epochs,
- interval,
- epochType,
- withComments = false,
-) => {
+export const getEpochsInRange = (epochs, interval) => {
return [...Array(epochs.length).keys()].filter((index) =>
(
(isNaN(epochs[index].onset) && interval[0] === 0)
@@ -139,8 +137,221 @@ export const getEpochsInRange = (
epochs[index].onset + epochs[index].duration > interval[0] &&
epochs[index].onset < interval[1]
)
- ) &&
- epochs[index].type === epochType &&
- (!withComments || epochs[index].hed || epochs[index].comment)
+ )
);
};
+
+
+/**
+ * getTagsForEpoch
+ *
+ * @param {Epoch} epoch - An epoch
+ * @param {any[]} datasetTags - HED tags in the dataset
+ * @param {HEDSchemaElement[]} hedSchema - HED schema to search
+ * @returns {HEDTag[]} - List of HED tags within dataset associated with the epoch
+ */
+export const getTagsForEpoch = (
+ epoch: Epoch, datasetTags: any,
+ hedSchema: HEDSchemaElement[]
+) => {
+ const hedTags = [];
+
+ if (datasetTags['EventValue'].hasOwnProperty(epoch.label)) {
+ hedTags.push(...datasetTags['EventValue'][epoch.label]);
+ }
+
+ if (datasetTags['TrialType'].hasOwnProperty(epoch.trialType)) {
+ hedTags.push(...datasetTags['TrialType'][epoch.trialType]);
+ }
+
+ epoch.properties.forEach((prop) => {
+ if (datasetTags[prop.PropertyName].hasOwnProperty(prop.PropertyValue)) {
+ hedTags.push(...datasetTags[prop.PropertyName][prop.PropertyValue]);
+ }
+ });
+
+ return hedTags.map((tag) => {
+ const schemaTag = hedSchema.find((t) => {
+ return t.id === tag.HEDTagID;
+ });
+ return {
+ schemaElement: schemaTag ?? null,
+ HEDTagID: schemaTag ? schemaTag.id : null,
+ ID: tag.ID,
+ TagValue: tag.TagValue,
+ Description: tag.Description,
+ HasPairing: tag.HasPairing,
+ PairRelID: tag.PairRelID,
+ PropertyName: tag.PropertyName,
+ PropertyValue: tag.PropertyValue,
+ AdditionalMembers: tag.AdditionalMembers,
+ };
+ }).filter((tag) => {
+ return tag.HEDTagID !== null || tag.PairRelID !== null;
+ });
+};
+
+/**
+ * getNthMemberTrailingCommaIndex
+ *
+ * @param {string} tagString - HED string
+ * @param {number} n - Nth member to encapsulate. Members, (can), (be, groups)
+ * @returns {number} - Returns index of comma expected after nth member
+ */
+const getNthMemberTrailingCommaIndex = (tagString: string, n: number) => {
+ if (n < 1) {
+return tagString.length;
+}
+
+ let membersToFind = n;
+ let openParenthesesCount = 0;
+ let commaIndex = 0;
+ for (let i = 0; i < tagString.length; i++) {
+ if (tagString[i] === '(') {
+ openParenthesesCount++;
+ } else if (tagString[i] === ')') {
+ openParenthesesCount--;
+ }
+ if (openParenthesesCount === 0 && tagString[i] === ',') {
+ if (--membersToFind === 0) {
+ break;
+ }
+ }
+ commaIndex = i;
+ }
+ return commaIndex + 1;
+};
+
+/**
+ * buildHEDString
+ *
+ * @param {HEDTag[]} hedTags - List of HED tags
+ * @param {boolean} longFormHED - Shows long form of HED tag if true
+ * @returns {string[]} - String array representing the assembled HED tags
+ */
+export const buildHEDString = (hedTags: HEDTag[], longFormHED = false) => {
+ const rootTags = hedTags.filter((tag) => {
+ return !hedTags.some((t) => {
+ return tag.ID === t.PairRelID;
+ });
+ });
+
+ const tagNames = [];
+ let tagString = '';
+ rootTags.forEach((tag: HEDTag) => {
+ const tagGroup = [];
+ let groupMember = tag;
+ while (groupMember) {
+ tagGroup.push(groupMember);
+ groupMember = hedTags.find((hedTag: HEDTag) => {
+ return hedTag.ID === groupMember.PairRelID;
+ });
+ }
+
+ let subGroupString = '';
+ tagGroup.reverse().forEach((groupTag: HEDTag) => {
+ if (groupTag.PairRelID === null) {
+ tagString = longFormHED
+ ? groupTag.schemaElement.longName
+ : groupTag.schemaElement.name;
+ } else {
+ if (groupTag.HasPairing === '1') {
+ if (groupTag.AdditionalMembers > 0 || subGroupString.length === 0) {
+ const commaIndex = getNthMemberTrailingCommaIndex(
+ tagString,
+ groupTag.AdditionalMembers + (
+ subGroupString.length > 0 ? 0 : 1
+ )
+ );
+ tagString = '(' +
+ (
+ groupTag.HEDTagID !== null
+ ? `${longFormHED
+ ? groupTag.schemaElement.longName
+ : groupTag.schemaElement.name
+ }, `
+ : ''
+ ) +
+ (subGroupString.length > 0 ? `${subGroupString}, ` : '') +
+ tagString.substring(0, commaIndex) + ')' +
+ tagString.substring(commaIndex);
+
+ subGroupString = '';
+ } else {
+ if (groupTag.HEDTagID === null) {
+ if (subGroupString.length > 0) {
+ subGroupString = `(${subGroupString})`;
+ } else {
+ console.error('"UNEXPECTED" STATE');
+ }
+ } else {
+ if (subGroupString.length > 0) {
+ subGroupString = `(${longFormHED
+ ? groupTag.schemaElement.longName
+ : groupTag.schemaElement.name
+ }, ${subGroupString})`;
+ } else {
+ tagString = `(${longFormHED
+ ? groupTag.schemaElement.longName
+ : groupTag.schemaElement.name
+ }, ${tagString})`;
+ }
+ }
+ }
+ } else {
+ if (subGroupString.length > 0) {
+ tagString = `${subGroupString}, ${tagString}`;
+ }
+ subGroupString = longFormHED
+ ? groupTag.schemaElement.longName
+ : groupTag.schemaElement.name;
+ }
+ }
+ });
+ tagNames.push(tagString);
+ });
+
+ return tagNames;
+};
+
+/**
+ * getNthMemberTrailingCommaIndex
+ *
+ * @param {any[]} tagBadgeGroup - HED badge list
+ * @param {number} n - Nth member to encapsulate. Members, (can), (be, groups)
+ * @returns {number} - Returns index of comma expected after nth member
+ */
+export const getNthMemberTrailingBadgeIndex = (
+ tagBadgeGroup: any[],
+ n: number
+) => {
+ if (n === 0) {
+return tagBadgeGroup.length;
+}
+
+ let membersToFind = n;
+ let openParenthesesCount = 0;
+ let commaIndex = 0;
+
+ for (let i = 0; i < tagBadgeGroup.length; i++) {
+ if (tagBadgeGroup[i].type === 'span') {
+ if (tagBadgeGroup[i].props.children === '(') {
+ openParenthesesCount++;
+ } else if (tagBadgeGroup[i].props.children === ')') {
+ openParenthesesCount--;
+ if (openParenthesesCount === 0) {
+ membersToFind--;
+ }
+ }
+ }
+ if (tagBadgeGroup[i].type === 'div' && openParenthesesCount === 0) {
+ membersToFind--;
+ }
+
+ commaIndex = i;
+ if (membersToFind === 0) {
+ break;
+ }
+ }
+ return commaIndex + 1;
+};
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/highLowPass.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/highLowPass.tsx
index c3b09b5159f..40452d4644b 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/highLowPass.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/logic/highLowPass.tsx
@@ -40,34 +40,116 @@ const applyFilter = (coefficients, input) => {
export const LOW_PASS_FILTERS = {
'none': {
label: 'No Low Pass Filter',
- coefficients: null,
+ coefficients: {
+ '500': null,
+ '512': null,
+ '1000': null,
+ '1024': null,
+ },
},
'lopass15': {
label: 'Low Pass 15Hz',
coefficients: {
- b: [0.080716994603448, 0.072647596309189, 0.080716994603448],
- a: [1.000000000000000, -1.279860238209870, 0.527812029663189],
+ '500': {
+ b: [0.0021, 0.0042, 0.0021],
+ a: [1.0000, -1.8668, 0.8752],
+ },
+ '512': {
+ b: [0.0020, 0.0040, 0.0020],
+ a: [1.0000, -1.8700, 0.8780],
+ },
+ '1000': {
+ b: [0.0005, 0.0011, 0.0005],
+ a: [1.0000, -1.9334, 0.9355],
+ },
+ '1024': {
+ b: [0.0005, 0.0010, 0.0005],
+ a: [1.0000, -1.9349, 0.9370],
+ },
},
},
'lopass20': {
label: 'Low Pass 20Hz',
coefficients: {
- b: [0.113997925584386, 0.149768961515167, 0.113997925584386],
- a: [1.000000000000000, -1.036801335341888, 0.436950120418250],
+ '500': {
+ b: [0.0036, 0.0072, 0.0036],
+ a: [1.0000, -1.8227, 0.8372],
+ },
+ '512': {
+ b: [0.0035, 0.0069, 0.0035],
+ a: [1.0000, -1.8268, 0.8407],
+ },
+ '1000': {
+ b: [0.0009, 0.00189, 0.0009],
+ a: [1.0000, -1.9112, 0.9150],
+ },
+ '1024': {
+ b: [0.0009, 0.0018, 0.0009],
+ a: [1.0000, -1.9133, 0.9169],
+ },
},
},
'lopass30': {
label: 'Low Pass 30Hz',
coefficients: {
- b: [0.192813914343002, 0.325725940431161, 0.192813914343002],
- a: [1.000000000000000, -0.570379950222695, 0.323884080078956],
+ '500': {
+ b: [0.0078, 0.0156, 0.0078],
+ a: [1.0000, -1.7347, 0.7660],
+ },
+ '512': {
+ b: [0.0075, 0.0150, 0.0075],
+ a: [1.0000, -1.7409, 0.7708],
+ },
+ '1000': {
+ b: [0.0021, 0.0042, 0.0021],
+ a: [1.0000, -1.8669, 0.8752],
+ },
+ '1024': {
+ b: [0.0020, 0.0040, 0.0020],
+ a: [1.0000, -1.8700, 0.8780],
+ },
},
},
'lopass40': {
label: 'Low Pass 40Hz',
coefficients: {
- b: [0.281307434361307, 0.517866041871659, 0.281307434361307],
- a: [1.000000000000000, -0.135289362582513, 0.279792792112445],
+ '500': {
+ b: [0.0134, 0.0267, 0.0134],
+ a: [1.0000, -1.6475, 0.7009],
+ },
+ '512': {
+ b: [0.0128, 0.0256, 0.0128],
+ a: [1.0000, -1.6556, 0.7068],
+ },
+ '1000': {
+ b: [0.0036, 0.0072, 0.0036],
+ a: [1.0000, -1.8227, 0.8372],
+ },
+ '1024': {
+ b: [0.0035, 0.0069, 0.0035],
+ a: [1.0000, -1.8268, 0.8407],
+ },
+ },
+ },
+ 'lopass60': {
+ label: 'Low Pass 60Hz',
+ coefficients: {
+ '500': {
+ b: [0.0279, 0.0557, 0.0279],
+ a: [1.0000, -1.4754, 0.5869],
+ },
+ '512': {
+ b: [0.0267, 0.0534, 0.0267],
+ a: [1.0000, -1.4875, 0.5943],
+ },
+ '1000': {
+ b: [0.0078, 0.0156, 0.0078],
+ a: [1.0000, -1.7347, 0.7660],
+ },
+ '1024': {
+ b: [0.0075, 0.0150, 0.0075],
+ a: [1.0000, -1.7409, 0.7708],
+ },
},
},
};
@@ -84,11 +166,14 @@ export const createLowPassFilterEpic = () => (
ofType(SET_LOW_PASS_FILTER),
Rx.map(R.prop('payload')),
Rx.withLatestFrom(state$),
- Rx.map<[string, any], any>(([payload]) => (dispatch) => {
+ Rx.map<[string, any], any>(([payload, state]) => (dispatch) => {
+ const samplingFrequency = state.dataset.samplingFrequency;
dispatch(setFilter({
key: 'lowPass',
name: payload,
- fn: R.curry(applyFilter)(LOW_PASS_FILTERS[payload].coefficients),
+ fn: R.curry(applyFilter)(
+ LOW_PASS_FILTERS[payload].coefficients[samplingFrequency]
+ ),
}));
dispatch(updateViewedChunks());
})
@@ -97,34 +182,95 @@ export const createLowPassFilterEpic = () => (
export const HIGH_PASS_FILTERS = {
'none': {
label: 'No High Pass Filter',
- coefficients: null,
+ coefficients: {
+ '500': null,
+ '512': null,
+ '1000': null,
+ '1024': null,
+ },
},
'hipass0_5': {
label: 'High Pass 0.5Hz',
coefficients: {
- b: [0.937293010134975, -1.874580964130496, 0.937293010134975],
- a: [1.000000000000000, -1.985579602684723, 0.985739491853153],
+ '500': {
+ b: [0.9978, -1.9956, 0.9978],
+ a: [1.0000, -1.9956, 0.9956],
+ },
+ '512': {
+ b: [0.9978, -1.9957, 0.9978],
+ a: [1.0000, -1.9957, 0.9957],
+ },
+ '1000': {
+ b: [0.9989, -1.9978, 0.9989],
+ a: [1.0000, -1.9978, 0.9978],
+ },
+ '1024': {
+ b: [0.9989, -1.9978, 0.9989],
+ a: [1.0000, -1.9978, 0.9978],
+ },
},
},
'hipass1': {
label: 'High Pass 1Hz',
coefficients: {
- b: [0.930549324176904, -1.861078566912498, 0.930549324176904],
- a: [1.000000000000000, -1.971047525054235, 0.971682555986628],
+ '500': {
+ b: [0.9956, -1.9911, 0.9956],
+ a: [1.0000, -1.9911, 0.9912],
+ },
+ '512': {
+ b: [0.9957, -1.9913, 0.9957],
+ a: [1.0000, -1.9913, 0.9914],
+ },
+ '1000': {
+ b: [0.9978, -1.9956, 0.9978],
+ a: [1.0000, -1.9956, 0.9956],
+ },
+ '1024': {
+ b: [0.9978, -1.9957, 0.9978],
+ a: [1.0000, -1.9957, 0.9957],
+ },
},
},
'hipass5': {
label: 'High Pass 5Hz',
coefficients: {
- b: [0.877493430773021, -1.754511635757187, 0.877493430773021],
- a: [1.000000000000000, -1.851210698908115, 0.866238657864428],
+ '500': {
+ b: [0.9780, -1.9561, 0.9780],
+ a: [1.0000, -1.9556, 0.9565],
+ },
+ '512': {
+ b: [0.9785, -1.9571, 0.9785],
+ a: [1.0000, -1.9566, 0.9575],
+ },
+ '1000': {
+ b: [0.9890, -1.9779, 0.9890],
+ a: [1.0000, -1.9778, 0.9780],
+ },
+ '1024': {
+ b: [0.9892, -1.9784, 0.9892],
+ a: [1.0000, -1.9783, 0.9785],
+ },
},
},
'hipass10': {
label: 'High Pass 10Hz',
coefficients: {
- b: [0.813452161011750, -1.625120853023986, 0.813452161011750],
- a: [1.000000000000000, -1.694160769645868, 0.750559011393507],
+ '500': {
+ b: [0.9565, -1.9131, 0.9565],
+ a: [1.0000, -1.9112, 0.9150],
+ },
+ '512': {
+ b: [0.9575, -1.9151, 0.9575],
+ a: [1.0000, -1.9133, 0.9169],
+ },
+ '1000': {
+ b: [0.9780, -1.9561, 0.9780],
+ a: [1.0000, -1.9556, 0.9565],
+ },
+ '1024': {
+ b: [0.9785, -1.9571, 0.9785],
+ a: [1.0000, -1.9566, 0.9575],
+ },
},
},
};
@@ -141,11 +287,14 @@ export const createHighPassFilterEpic = () => (
ofType(SET_HIGH_PASS_FILTER),
Rx.map(R.prop('payload')),
Rx.withLatestFrom(state$),
- Rx.map<[string, any], any>(([payload]) => (dispatch) => {
+ Rx.map<[string, any], any>(([payload, state]) => (dispatch) => {
+ const samplingFrequency = state.dataset.samplingFrequency;
dispatch(setFilter({
key: 'highPass',
name: payload,
- fn: R.curry(applyFilter)(HIGH_PASS_FILTERS[payload].coefficients),
+ fn: R.curry(applyFilter)(
+ HIGH_PASS_FILTERS[payload].coefficients[samplingFrequency]
+ ),
}));
dispatch(updateViewedChunks());
})
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/dataset.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/dataset.tsx
index 399696f0b55..e651c5d2c8f 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/dataset.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/dataset.tsx
@@ -1,6 +1,12 @@
import * as R from 'ramda';
import {createAction} from 'redux-actions';
-import {ChannelMetadata, Epoch} from '../types';
+import {
+ ChannelMetadata,
+ Epoch,
+ EpochFilter,
+ HEDSchemaElement,
+ HEDTag,
+} from '../types';
import {DEFAULT_MAX_CHANNELS} from '../../../vector';
export const SET_EPOCHS = 'SET_EPOCHS';
@@ -15,6 +21,21 @@ export const setActiveEpoch = createAction(SET_ACTIVE_EPOCH);
export const SET_PHYSIOFILE_ID = 'SET_PHYSIOFILE_ID';
export const setPhysioFileID = createAction(SET_PHYSIOFILE_ID);
+export const SET_HED_SCHEMA_DOCUMENT = 'SET_HED_SCHEMA_DOCUMENT';
+export const setHedSchemaDocument = createAction(SET_HED_SCHEMA_DOCUMENT);
+
+export const SET_DATASET_TAGS = 'SET_DATASET_TAGS';
+export const setDatasetTags = createAction(SET_DATASET_TAGS);
+
+export const SET_HED_REL_OVERRIDES = 'SET_HED_REL_OVERRIDES';
+export const setRelOverrides = createAction(SET_HED_REL_OVERRIDES);
+
+export const SET_ADDED_TAGS = 'SET_ADDED_TAGS';
+export const setAddedTags = createAction(SET_ADDED_TAGS);
+
+export const SET_DELETED_TAGS = 'SET_DELETED_TAGS';
+export const setDeletedTags = createAction(SET_DELETED_TAGS);
+
export const SET_DATASET_METADATA = 'SET_DATASET_METADATA';
export const setDatasetMetadata = createAction(SET_DATASET_METADATA);
@@ -23,6 +44,11 @@ export type Action =
| {type: 'SET_FILTERED_EPOCHS', payload: number[]}
| {type: 'SET_ACTIVE_EPOCH', payload: number}
| {type: 'SET_PHYSIOFILE_ID', payload: number}
+ | {type: 'SET_HED_SCHEMA_DOCUMENT', payload: HEDSchemaElement[]}
+ | {type: 'SET_DATASET_TAGS', payload: any}
+ | {type: 'SET_HED_REL_OVERRIDES', payload: HEDTag[]}
+ | {type: 'SET_ADDED_TAGS', payload: HEDTag[]}
+ | {type: 'SET_DELETED_TAGS', payload: HEDTag[]}
| {
type: 'SET_DATASET_METADATA',
payload: {
@@ -33,6 +59,7 @@ export type Action =
timeInterval: [number, number],
seriesRange: [number, number],
limit: number,
+ samplingFrequency: string,
offsetIndex: number,
}
};
@@ -42,14 +69,20 @@ export type State = {
channelMetadata: ChannelMetadata[],
offsetIndex: number,
limit: number,
+ samplingFrequency: string,
epochs: Epoch[],
- filteredEpochs: number[],
+ filteredEpochs: EpochFilter,
activeEpoch: number | null,
physioFileID: number | null,
shapes: number[][],
validSamples: number[],
timeInterval: [number, number],
seriesRange: [number, number],
+ hedSchema: HEDSchemaElement[],
+ datasetTags: any,
+ hedRelOverrides: HEDTag[],
+ addedTags: HEDTag[],
+ deletedTags: HEDTag[],
};
/**
@@ -64,15 +97,24 @@ export const datasetReducer = (
chunksURL: '',
channelMetadata: [],
epochs: [],
- filteredEpochs: [],
+ filteredEpochs: {
+ plotVisibility: [],
+ columnVisibility: [],
+ },
activeEpoch: null,
physioFileID: null,
offsetIndex: 1,
limit: DEFAULT_MAX_CHANNELS,
+ samplingFrequency: '',
shapes: [],
validSamples: [],
timeInterval: [0, 1],
seriesRange: [-1, 2],
+ hedSchema: [],
+ datasetTags: {},
+ hedRelOverrides: [],
+ addedTags: [],
+ deletedTags: [],
},
action?: Action
): State => {
@@ -92,8 +134,23 @@ export const datasetReducer = (
case SET_PHYSIOFILE_ID: {
return R.assoc('physioFileID', action.payload, state);
}
+ case SET_HED_SCHEMA_DOCUMENT: {
+ return R.assoc('hedSchema', action.payload, state);
+ }
+ case SET_DATASET_TAGS: {
+ return R.assoc('datasetTags', action.payload, state);
+ }
+ case SET_HED_REL_OVERRIDES: {
+ return R.assoc('hedRelOverrides', action.payload, state);
+ }
+ case SET_ADDED_TAGS: {
+ return R.assoc('addedTags', action.payload, state);
+ }
+ case SET_DELETED_TAGS: {
+ return R.assoc('deletedTags', action.payload, state);
+ }
case SET_DATASET_METADATA: {
- return R.mergeAll([state, action.payload]);
+ return R.merge(state, action.payload);
}
default: {
return state;
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/montage.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/montage.tsx
index 13d2f799486..c6000c69130 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/montage.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/state/montage.tsx
@@ -1,6 +1,6 @@
import * as R from 'ramda';
import {createAction} from 'redux-actions';
-import {Electrode} from '../types';
+import {CoordinateSystem, Electrode} from '../types';
export const SET_ELECTRODES = 'SET_ELECTRODES';
export const setElectrodes = createAction(SET_ELECTRODES);
@@ -8,13 +8,18 @@ export const setElectrodes = createAction(SET_ELECTRODES);
export const SET_HIDDEN = 'SET_HIDDEN';
export const setHidden = createAction(SET_HIDDEN);
+export const SET_COORDINATE_SYSTEM = 'SET_COORDINATE_SYSTEM';
+export const setCoordinateSystem = createAction(SET_COORDINATE_SYSTEM);
+
export type Action =
| {type: 'SET_ELECTRODES', payload: Electrode[]}
- | {type: 'SET_HIDDEN', payload: number[]};
+ | {type: 'SET_HIDDEN', payload: number[]}
+ | {type: 'SET_COORDINATE_SYSTEM', payload: CoordinateSystem};
export type State = {
electrodes: Electrode[],
- hidden: number[]
+ hidden: number[],
+ coordinateSystem: CoordinateSystem,
};
export type Reducer = (state: State, action?: Action) => State;
@@ -27,7 +32,7 @@ export type Reducer = (state: State, action?: Action) => State;
* @returns {State} - The updated state
*/
export const montageReducer: Reducer = (
- state = {electrodes: [], hidden: []},
+ state = {electrodes: [], hidden: [], coordinateSystem: null},
action
) => {
if (!action) {
@@ -40,6 +45,9 @@ export const montageReducer: Reducer = (
case SET_HIDDEN: {
return R.assoc('hidden', action.payload, state);
}
+ case SET_COORDINATE_SYSTEM: {
+ return R.assoc('coordinateSystem', action.payload, state);
+ }
default: {
return state;
}
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/types.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/types.tsx
index cd826e781ee..20dedfa519c 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/types.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/series/store/types.tsx
@@ -28,30 +28,39 @@ export type Channel = {
export type Epoch = {
onset: number,
duration: number,
- type: 'Event' | 'Annotation',
+ type: 'Event',
label: string,
- comment?: string,
- hed?: string,
+ value: string,
+ trialType: string,
+ properties?: any[],
+ hed?: HEDTag[],
channels: number[] | 'all',
- annotationInstanceID?: number,
+ physiologicalTaskEventID?: number,
};
-export type EventMetadata = {
- instances: any[],
+export type EpochFilter = {
+ plotVisibility: number[],
+ columnVisibility: number[],
}
-export type AnnotationMetadata = {
+export type EventMetadata = {
instances: any[],
- labels: any[],
- metadata: any[]
+ extraColumns: any[],
+ hedTags: any[],
}
export type RightPanel =
'annotationForm'
| 'eventList'
- | 'annotationList'
| null;
+
+export type CoordinateSystem = {
+ name: string | 'Other',
+ units: string | 'm',
+ description: string | 'n/a'
+};
+
export type Electrode = {
name: string,
channelIndex?: number,
@@ -62,3 +71,27 @@ export type Cursor = {
cursorPosition: [number, number] | null,
viewerRef: MutableRefObject | null,
};
+
+export type HEDSchemaElement = {
+ id: number,
+ parentID: number,
+ schemaID: number,
+ name: string,
+ longName: string,
+ description: string,
+ schemaName: string,
+}
+
+// Currently uppercase. DB columns unprocessed
+export type HEDTag = {
+ schemaElement: HEDSchemaElement | null,
+ HEDTagID: number | null, // redundant (id above)
+ ID: any,
+ PropertyName: string | null,
+ PropertyValue: string | null,
+ TagValue: string | null,
+ Description: string, // Level Description
+ HasPairing: string,
+ PairRelID: any,
+ AdditionalMembers: number,
+};
diff --git a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/vector/index.tsx b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/vector/index.tsx
index 994fc806fe3..b050a2e9258 100644
--- a/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/vector/index.tsx
+++ b/modules/electrophysiology_browser/jsx/react-series-data-viewer/src/vector/index.tsx
@@ -1,5 +1,7 @@
import {vec2, glMatrix} from 'gl-matrix';
+export type Vector2 = typeof glMatrix.ARRAY_TYPE;
+
/**
* Apply transformation f on point p
*
diff --git a/modules/electrophysiology_browser/php/electrophysiology_browser.class.inc b/modules/electrophysiology_browser/php/electrophysiology_browser.class.inc
index 4d778f0c86b..661fefbf94d 100644
--- a/modules/electrophysiology_browser/php/electrophysiology_browser.class.inc
+++ b/modules/electrophysiology_browser/php/electrophysiology_browser.class.inc
@@ -66,9 +66,8 @@ class Electrophysiology_Browser extends \DataFrameworkMenu
*/
function getFieldOptions(): array
{
- $factory = \NDB_Factory::singleton();
- $user = $factory->user();
- $db = $factory->database();
+ $user = \User::singleton();
+ $db = $this->loris->getDatabaseConnection();
// get list of types
$list_of_types = [];
diff --git a/modules/electrophysiology_browser/php/annotations.class.inc b/modules/electrophysiology_browser/php/events.class.inc
similarity index 53%
rename from modules/electrophysiology_browser/php/annotations.class.inc
rename to modules/electrophysiology_browser/php/events.class.inc
index 0b0ea96aac4..4667fa2bc31 100644
--- a/modules/electrophysiology_browser/php/annotations.class.inc
+++ b/modules/electrophysiology_browser/php/events.class.inc
@@ -1,11 +1,14 @@
getMethod()) {
case 'GET':
+ // TODO: Get official server-side solution + Add to documentation
+ // set_time_limit(300); // Increase request time limit to 5 minutes
+ // ini_set('memory_limit', '1G'); // Increase memory allocation limit
+
$parameters = $request->getQueryParams();
$sessionID = $db->pselectOne(
'SELECT SessionID
@@ -59,7 +66,7 @@ class Annotations extends \NDB_Page
}
$physioFileID = intval($parameters['physioFileID']);
- (new ElectrophysioAnnotations($physioFileID))->updateFiles();
+ (new ElectrophysioEvents($this->loris, $physioFileID))->updateFiles();
$config = \NDB_Factory::singleton()->config();
$downloadpath = \Utility::appendForwardSlash(
@@ -73,12 +80,16 @@ class Annotations extends \NDB_Page
$downloader = new \LORIS\FilesDownloadHandler(
new \SPLFileInfo($downloadpath . $path)
);
+
return $downloader->handle(
$request->withAttribute('filename', $filename)
);
case 'DELETE':
- $parameters = json_decode((string) $request->getBody(), true);
- if (!$user->hasPermission('electrophysiology_browser_edit_annotations')
+ $parameters = json_decode((string)$request->getBody(), true);
+
+ if (!$user->hasPermission(
+ 'electrophysiology_browser_edit_annotations'
+ )
) {
return (new \LORIS\Http\Response\JSON\Unauthorized());
}
@@ -89,53 +100,71 @@ class Annotations extends \NDB_Page
return (new \LORIS\Http\Response\JSON\BadRequest());
}
- (new ElectrophysioAnnotations(intval($parameters['physioFileID'])))
- ->delete(intval($parameters['instance_id']));
-
return (new \LORIS\Http\Response\JSON\OK());
case 'POST':
- $parameters = json_decode((string) $request->getBody(), true);
- if (!$user->hasPermission('electrophysiology_browser_edit_annotations')
+ // TODO: Better failure reporting
+ $parameters = json_decode((string)$request->getBody(), true);
+
+ if (!$user->hasPermission(
+ 'electrophysiology_browser_edit_annotations'
+ )
) {
return (new \LORIS\Http\Response\JSON\Unauthorized());
}
- if (!isset($parameters['physioFileID'])) {
+ if (!isset($parameters['physioFileID'])
+ || !isset($parameters['request_type'])
+ ) {
return (new \LORIS\Http\Response\JSON\BadRequest());
}
- $instance_data = $parameters['instance'];
- // $metadata = $parameters['metadata'];
- // TODO: Figure out a better description modeled on other derivatives
- $metadata = [
- 'description' => 'An annotation',
- 'sources' => 'EEGNet LORIS',
- 'author' => $user->getFullname()
- ];
-
- $instance_id = $parameters['instance_id'] ?
- intval($parameters['instance_id']) : null;
- $parameter_id = $parameters['parameter_id'] ?? null;
-
- (new ElectrophysioAnnotations(intval($parameters['physioFileID'])))
- ->update($instance_data, $metadata, $instance_id, $parameter_id);
-
- // if new annotation, get instanceID
- if (is_null($instance_id)) {
- $instance_id = $db->pselectOne(
- "SELECT MAX(AnnotationInstanceID)
- FROM physiological_annotation_instance ai
- JOIN physiological_annotation_file af USING (AnnotationFileID)
- WHERE PhysiologicalFileID=:physioFileID
- ",
- ['physioFileID' => $parameters['physioFileID']]
+ switch ($parameters['request_type']) {
+ case 'event_update':
+ $instance_data = $parameters['instance'];
+ // $metadata = $parameters['metadata'];
+ // TODO: Figure out better description modeled on other derivatives
+ $metadata = [
+ 'description' => 'An event',
+ 'sources' => 'EEGNet LORIS',
+ 'author' => $user->getFullname()
+ ];
+
+ $instance_id = $parameters['instance_id'] ?
+ intval($parameters['instance_id']) : null;
+
+ $updated_instance = (
+ new ElectrophysioEvents(
+ $this->loris,
+ intval($parameters['physioFileID'])
+ )
+ )->update($instance_data, $metadata, $instance_id);
+
+ if (count($updated_instance) > 0) {
+ return (new \LORIS\Http\Response\JSON\OK(
+ ['instance' => $updated_instance]
+ ));
+ }
+ return (new \LORIS\Http\Response\JSON\Unauthorized());
+ case 'dataset_tags':
+ $added_tags = $parameters['added_tags'];
+ $deleted_tags = $parameters['deleted_tags'];
+ $edited_tags = $parameters['edited_tags'];
+
+ $dataset_tags = new DatasetTags(
+ $this->loris,
+ intval($parameters['physioFileID'])
+ );
+ $idMapping = $dataset_tags->update(
+ $added_tags,
+ $deleted_tags,
+ $edited_tags
);
- }
- return (new \LORIS\Http\Response\JSON\OK(
- ['instance_id' => $instance_id]
- ));
- default:
+ return (new \LORIS\Http\Response\JSON\OK(
+ ['mapping' => $idMapping]
+ ));
+ }
+ default:
return (new \LORIS\Http\Response\JSON\MethodNotAllowed(
["GET", "DELETE", "POST"]
));
diff --git a/modules/electrophysiology_browser/php/models/datasettags.class.inc b/modules/electrophysiology_browser/php/models/datasettags.class.inc
new file mode 100644
index 00000000000..64da2908bca
--- /dev/null
+++ b/modules/electrophysiology_browser/php/models/datasettags.class.inc
@@ -0,0 +1,635 @@
+
+ * @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3
+ * @link https://www.github.com/aces/Loris/
+ */
+class DatasetTags
+{
+ use LoggerAwareTrait;
+
+ private int $_physioFileID;
+ private ?int $_projectID;
+ private array $_data = [];
+ private array $_hedSchema;
+ private \LORIS\LorisInstance $loris;
+
+ /**
+ * Construct an Event object
+ *
+ * @param \LORIS\LorisInstance $loris The LORIS instance that the module
+ * is serving.
+ * @param integer $physioFileID Electrophysiological file ID
+ * to collect event data from
+ */
+ function __construct(\LORIS\LorisInstance $loris, int $physioFileID)
+ {
+ $loglevel = $loris->getConfiguration()
+ ->getLogSettings()
+ ->getRequestLogLevel();
+ $this->logger = new \LORIS\Log\ErrorLogLogger($loglevel);
+
+ $this->loris = $loris;
+ $this->_physioFileID = $physioFileID;
+ $db = $this->loris->getDatabaseConnection();
+
+ // TODO: Instead use schemas in project_schema_rel?
+ $this->_hedSchema = $db->pselect(
+ 'SELECT * FROM hed_schema_nodes AS hsn
+ LEFT JOIN hed_schema AS hs
+ ON hsn.SchemaID = hs.ID',
+ []
+ );
+
+ $this->_projectID = $db->pselectOneInt(
+ 'SELECT ProjectID FROM session AS s WHERE s.ID = (
+ SELECT SessionID FROM physiological_file
+ WHERE PhysiologicalFileID=:PFID
+ )',
+ ['PFID' => $this->_physioFileID]
+ );
+ }
+
+ /**
+ * Fetch and set data for the DatasetTags
+ *
+ * @return void
+ */
+ function setData(): void
+ {
+ $db = $this->loris->getDatabaseConnection();
+
+ $extraColumns = $db->pselect(
+ 'SELECT
+ opt.PropertyName as columnName,
+ opt.PropertyValue as columnValue,
+ sm.*
+ FROM physiological_task_event_opt AS opt
+ LEFT JOIN bids_event_dataset_mapping AS sm
+ ON sm.PropertyName = opt.PropertyName
+ AND sm.PropertyValue = opt.PropertyValue
+ WHERE opt.PhysiologicalTaskEventID IN (
+ SELECT te.PhysiologicalTaskEventID
+ FROM physiological_task_event AS te
+ WHERE te.PhysiologicalFileID IN (
+ SELECT pf.PhysiologicalFileID
+ FROM physiological_file AS pf
+ WHERE pf.SessionID IN (
+ SELECT ID FROM session
+ WHERE ProjectID=:PID
+ )
+ )
+ )
+ GROUP BY sm.ID, opt.PropertyValue
+ ORDER BY opt.PropertyValue ASC, ID DESC',
+ ['PID' => $this->_projectID]
+ );
+
+ $trialTypes = $db->pselect(
+ 'SELECT pte.TrialType, sm.*
+ FROM (
+ SELECT PhysiologicalFileID, TrialType
+ FROM physiological_task_event
+ WHERE PhysiologicalFileID IN (
+ SELECT pf.PhysiologicalFileID
+ FROM physiological_file AS pf
+ WHERE pf.SessionID IN (
+ SELECT ID FROM session
+ WHERE ProjectID=:PID
+ )
+ )
+ GROUP BY TrialType
+ ) AS pte
+ LEFT JOIN bids_event_dataset_mapping AS sm
+ ON sm.PropertyName = "TrialType"
+ AND sm.PropertyValue = pte.TrialType
+ AND sm.ProjectID=:PID
+ ORDER BY pte.TrialType ASC, sm.ID DESC',
+ ['PID' => $this->_projectID]
+ );
+
+ $eventValues = $db->pselect(
+ 'SELECT pte.EventValue, sm.*
+ FROM (
+ SELECT PhysiologicalFileID, EventValue
+ FROM physiological_task_event
+ WHERE PhysiologicalFileID IN (
+ SELECT pf.PhysiologicalFileID
+ FROM physiological_file AS pf
+ WHERE pf.SessionID IN (
+ SELECT ID FROM session
+ WHERE ProjectID=:PID
+ )
+ )
+ GROUP BY EventValue
+ ) AS pte
+ LEFT JOIN bids_event_dataset_mapping AS sm
+ ON sm.PropertyName = "EventValue"
+ AND sm.PropertyValue = pte.EventValue
+ AND sm.ProjectID=:PID
+ ORDER BY pte.EventValue ASC, sm.ID DESC',
+ ['PID' => $this->_projectID]
+ );
+
+ $columnMapping = [];
+ foreach ($extraColumns as $column) {
+ $propertyTags = [];
+ $propertyValues = [];
+ if (array_key_exists(strval($column['columnName']), $columnMapping)) {
+ $propertyValues = $columnMapping[strval($column['columnName'])];
+ }
+ if (array_key_exists(strval($column['columnValue']), $propertyValues)) {
+ $propertyTags = $propertyValues[strval($column['columnValue'])];
+ }
+ $propertyTags[] = $column;
+ $propertyValues[strval($column['columnValue'])] = $propertyTags;
+ $columnMapping[strval($column['columnName'])] = $propertyValues;
+ }
+
+ $trialTypeList = [];
+ foreach ($trialTypes as $trialType) {
+ $trialTypeTags = [];
+ $trialTypeValue = strval($trialType['TrialType']);
+ if (array_key_exists($trialTypeValue, $trialTypeList)) {
+ $trialTypeTags = $trialTypeList[$trialTypeValue];
+ }
+ $trialTypeTags[] = $trialType;
+ $trialTypeList[$trialTypeValue] = $trialTypeTags;
+ }
+
+ $eventValueList = [];
+ foreach ($eventValues as $eventValue) {
+ $eventValueTags = [];
+ $eventValueStr = strval($eventValue['EventValue']);
+ if (array_key_exists($eventValueStr, $eventValueList)) {
+ $eventValueTags = $eventValueList[$eventValueStr];
+ }
+ $eventValueTags[] = $eventValue;
+ $eventValueList[$eventValueStr] = $eventValueTags;
+ }
+
+ // This would overwrite customs
+ $columnMapping['TrialType'] = $trialTypeList;
+ $columnMapping['EventValue'] = $eventValueList;
+
+ $this->_data = $columnMapping;
+ }
+
+ /**
+ * Get data for the DatasetTags
+ *
+ * @return array The data array
+ */
+ function getData(): array
+ {
+ if (!$this->_data) {
+ $this->setData();
+ }
+ return $this->_data;
+ }
+
+ /**
+ * Updates bids_event_dataset_mapping table when there is a POST request.
+ *
+ * @param array $addedTags Added tag data
+ * @param array $deletedTags Deleted tag data
+ * @param array $editedTags Edited tag data
+ *
+ * @return array ID mapping for addedTags
+ * @throws DatabaseException
+ */
+ function update(
+ array $addedTags,
+ array $deletedTags,
+ array $editedTags,
+ ): array {
+ $user = \User::singleton();
+ $db = $this->loris->getDatabaseConnection();
+
+ $addedTagIDs = [];
+ if ($user->hasPermission('electrophysiology_browser_edit_annotations')) {
+
+ // TODO: VALIDATE HED
+
+ // TODO: FIRST RESOLVE RESOLVED TAGS [new field] -- assume all individual
+
+ foreach ($deletedTags as $deletedTag) {
+ try {
+ if (is_null($deletedTag['PairRelID'])) {
+ $db->delete(
+ 'bids_event_dataset_mapping',
+ ['ID' => $deletedTag['ID']]
+ );
+ } else {
+ throw new \LorisException(
+ "Tried deleting tag from " .
+ "an undissolved group. Tag ID: {$deletedTag['ID']}"
+ );
+ }
+ } catch (\LorisException $le) {
+ $this->logger->log(
+ \Psr\Log\LogLevel::ERROR,
+ "Failed to delete HED tag: {$le->getMessage()}"
+ );
+ }
+ }
+
+ // Tags arrive pre-sorted so that PairRelIDs always exist
+ foreach ($addedTags as $addedTag) {
+ if (true) { // TODO: Some validation
+ $freshPairRelID = null;
+ if ($this->arrayAny(
+ $addedTagIDs,
+ function ($t) use ($addedTag, &$freshPairRelID) {
+ if ($t['AddID'] == $addedTag['PairRelID']) {
+ $freshPairRelID = $t['RelID'];
+ return true;
+ }
+ return false;
+ }
+ )
+ ) {
+ $addedTag['PairRelID'] = $freshPairRelID;
+ }
+ $db->insert(
+ 'bids_event_dataset_mapping',
+ [
+ 'ProjectID' => $this->_projectID,
+ 'PropertyName' => $addedTag['PropertyName'],
+ 'PropertyValue' => $addedTag['PropertyValue'],
+ 'HEDTagID' => $addedTag['HEDTagID'],
+ 'TagValue' => $addedTag['TagValue'],
+ 'Description' => $addedTag['Description'],
+ 'HasPairing' => $addedTag['HasPairing']
+ ? '1' : '0',
+ 'AdditionalMembers' => $addedTag['AdditionalMembers'],
+ 'PairRelID' => $addedTag['PairRelID'],
+ ],
+ );
+ $addedTagIDs[] = [
+ 'RelID' => $db->getLastInsertId(),
+ 'AddID' => $addedTag['ID'],
+ ];
+ }
+ }
+
+ foreach ($editedTags as $editedTag) {
+ if (is_null($editedTag['HEDTagID'])
+ && is_null($editedTag['PairRelID'])
+ ) {
+ $db->delete(
+ 'bids_event_dataset_mapping',
+ ['ID' => $editedTag['ID']]
+ );
+ } else {
+ // Replace PairRelID with DB ID if tag was freshly added
+ foreach ($addedTagIDs as $addedTagID) {
+ if ($addedTagID['AddID'] == $editedTag['PairRelID']) {
+ $editedTag['PairRelID'] = $addedTagID['RelID'];
+ break;
+ }
+ }
+ $db->update(
+ 'bids_event_dataset_mapping',
+ [
+ 'HasPairing' => $editedTag['HasPairing'],
+ 'AdditionalMembers' => $editedTag['AdditionalMembers'],
+ 'PairRelID' => $editedTag['PairRelID'],
+ ],
+ ['ID' => $editedTag['ID']]
+ );
+ }
+ }
+
+ // TODO: Separate update function?
+ $db->update(
+ 'physiological_event_file',
+ ['LastUpdate' => date("Y-m-d H:i:s")],
+ ['PhysiologicalFileID' => $this->_physioFileID]
+ );
+ }
+ return $addedTagIDs;
+ }
+
+
+ /**
+ * Deletes one event's HED tag
+ *
+ * @param int $physiologicalTaskEventID PhysiologicalTaskEventID
+ * @param int $hedTagID HEDTagID
+ *
+ * @return void
+ */
+ function deleteHEDTag(int $physiologicalTaskEventID, int $hedTagID): void
+ {
+ $db = $this->loris->getDatabaseConnection();
+
+ $physioFileID = $db->pselectone(
+ 'SELECT PhysiologicalFileID
+ FROM physiological_task_event
+ WHERE PhysiologicalTaskEventID=:taskEventID',
+ ['taskEventID' => $physiologicalTaskEventID]
+ );
+
+ // TODO: Check that this cascades properly to rel tables
+ if ($this->_physioFileID == $physioFileID) {
+ $db->delete(
+ "physiological_task_event_hed_rel",
+ [
+ 'PhysiologicalTaskEventID' => $physiologicalTaskEventID,
+ 'HEDTagID' => $hedTagID
+ ]
+ );
+ }
+ }
+
+ /**
+ * Build HED string from HED tags
+ *
+ * @param array $instance_data Event instance data
+ * @param array $instance_extra_columns Extra columns belonging to instance
+ * @param array $instance_tags HED tags belonging to instance
+ * @param array $dataset_tags HED tags belonging to dataset
+ *
+ * @return string
+ */
+ function buildHEDString(
+ array $instance_data,
+ array $instance_extra_columns,
+ array $instance_tags,
+ array $dataset_tags
+ ): string {
+ // TODO: Add bids_event_file_mapping
+ // Get tags from IDs -- Limited support currently
+ $hed_tags = $this->buildHEDTags($instance_tags);
+
+ if (count($instance_data) > 0) {
+ // Extra Columns
+ foreach ($instance_extra_columns as $extra_column) {
+ if (array_key_exists($extra_column['PropertyName'], $dataset_tags)) {
+ $column_values = $dataset_tags[$extra_column['PropertyName']];
+ if (array_key_exists(
+ $extra_column['PropertyValue'],
+ $column_values
+ )
+ ) {
+ $hed_tags = array_merge(
+ $hed_tags,
+ $this->buildHEDTags(
+ $column_values[$extra_column['PropertyValue']]
+ )
+ );
+ }
+ }
+ }
+
+ // trial_type
+ $trial_type_values = $dataset_tags['TrialType'];
+ if (array_key_exists($instance_data['TrialType'], $trial_type_values)) {
+ $hed_tags = array_merge(
+ $hed_tags,
+ $this->buildHEDTags(
+ $trial_type_values[$instance_data['TrialType']]
+ )
+ );
+ }
+
+ // value
+ $event_values = $dataset_tags['EventValue'];
+ if (array_key_exists($instance_data['EventValue'], $event_values)) {
+ $hed_tags = array_merge(
+ $hed_tags,
+ $this->buildHEDTags($event_values[$instance_data['EventValue']])
+ );
+ }
+ }
+
+ // Get root tags
+ $root_tags = array_filter(
+ $hed_tags,
+ function ($tag) use ($hed_tags) {
+ return !is_null($tag['rel_id']) && !$this->arrayAny(
+ $hed_tags,
+ function ($t) use ($tag) {
+ return $tag['rel_id'] == $t['pair_rel_id'];
+ }
+ );
+ }
+ );
+
+ $tag_names = [];
+ $tag_string = '';
+
+ foreach ($root_tags as $root_tag) {
+ $tag_group = [];
+ $group_member = $root_tag;
+
+ while ($group_member && !is_null($group_member['rel_id'])) {
+ $tag_group[] = $group_member;
+ $member_pair = array_values(
+ array_filter(
+ $hed_tags,
+ function ($hed_tag) use ($group_member) {
+ return !is_null($hed_tag['rel_id']) &&
+ $hed_tag['rel_id'] == $group_member['pair_rel_id'];
+ }
+ )
+ );
+ $group_member = (count($member_pair) == 1)
+ ? $member_pair[0]
+ : null;
+ }
+
+ $subgroup_string = '';
+
+ foreach (array_reverse($tag_group) as $group_tag) {
+ if (is_null($group_tag['pair_rel_id'])) {
+ $tag_string = $group_tag['name'] ?? 'n/a';
+ } else {
+ try {
+ if ($group_tag['has_pairing'] == 1) {
+ if ($group_tag['additional_members'] > 0
+ || strlen($subgroup_string) == 0
+ ) {
+ $comma_index = $this
+ ->getNthTrailingMemberCommaIndex(
+ $tag_string,
+ $group_tag['additional_members'] + (
+ strlen($subgroup_string) > 0 ? 0 : 1
+ )
+ );
+ $tag_string = '(' .
+ (is_null($group_tag['id'])
+ ? ''
+ : ($group_tag['name'] . ', ')
+ ) .
+ (strlen($subgroup_string) > 0
+ ? "$subgroup_string, "
+ : ''
+ ) .
+ substr($tag_string, 0, $comma_index) . ')' .
+ substr($tag_string, $comma_index);
+ $subgroup_string = '';
+ } else {
+ if (is_null($group_tag['id'])) {
+ if (strlen($subgroup_string) > 0) {
+ $subgroup_string = "($subgroup_string)";
+ } else {
+ throw new \LorisException(
+ "Tag not found: " .
+ json_encode($group_tag)
+ );
+ }
+ } else {
+ if (strlen($subgroup_string) > 0) {
+ $subgroup_string
+ = '(' . $group_tag['name'] .
+ ", $subgroup_string)";
+ } else {
+ $tag_string
+ = '(' . $group_tag['name'] .
+ ", $tag_string)";
+ }
+ }
+ }
+ } else {
+ if (strlen($subgroup_string) > 0) {
+ $tag_string = "$subgroup_string, $tag_string";
+ }
+ // Intentional overwrite
+ $subgroup_string = $group_tag['name'];
+ }
+ } catch (\LorisException $le) {
+ $this->logger->log(
+ \Psr\Log\LogLevel::ERROR,
+ "Fatal HED tag error: {$le->getMessage()}"
+ );
+ }
+ }
+ }
+ $tag_names[] = $tag_string;
+ }
+ // Build String
+ return count($tag_names) > 0
+ ? implode(', ', $tag_names)
+ : 'n/a';
+ }
+
+
+ /**
+ * Build HED tags from schema
+ *
+ * @param array $tags List of tags to build from schema
+ *
+ * @return array
+ */
+ function buildHEDTags(array $tags): array
+ {
+ return array_map(
+ function ($tag) {
+ $hed_tag = null;
+ if (!is_null($tag['HEDTagID'])) {
+ $hed_tag = array_values(
+ array_filter(
+ $this->_hedSchema,
+ function ($node) use ($tag) {
+ return $node['ID'] == $tag['HEDTagID'];
+ }
+ )
+ );
+ }
+ return [
+ 'id' => $hed_tag
+ ? $hed_tag[0]['ID']
+ : null,
+ 'parent_id' => $hed_tag
+ ? $hed_tag[0]['ParentID']
+ : null,
+ 'schema_id' => $hed_tag
+ ? $hed_tag[0]['SchemaID']
+ : null,
+ 'name' => $hed_tag
+ ? $hed_tag[0]['Name']
+ : '',
+ 'long_mame' => $hed_tag
+ ? $hed_tag[0]['LongName']
+ : '',
+ 'description' => $hed_tag
+ ? $hed_tag[0]['Description']
+ : '',
+ 'value' => $tag['TagValue'],
+ 'has_pairing' => $tag['HasPairing'],
+ 'additional_members' => $tag['AdditionalMembers'],
+ 'rel_id' => $tag['ID'],
+ 'pair_rel_id' => $tag['PairRelID']
+ ];
+ },
+ $tags
+ );
+ }
+
+
+ /**
+ * Returns true if at least one element satisfies the function's criteria
+ *
+ * @param array $array List of elements
+ * @param callable $fn Function which determines criteria satisfaction
+ *
+ * @return bool
+ */
+ function arrayAny(array $array, callable $fn): bool
+ {
+ foreach ($array as $value) {
+ if ($fn($value)) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+
+ /**
+ * Returns index of the Nth member
+ *
+ * @param string $tag_string HED Tag string
+ * @param int $n Member index
+ *
+ * @return int
+ */
+ public function getNthTrailingMemberCommaIndex(
+ string $tag_string,
+ int $n
+ ): int {
+ if ($n < 1) {
+ return strlen($tag_string);
+ }
+
+ $members_to_find = $n;
+ $open_parentheses_count = 0;
+ $comma_index = 0;
+ $tag_string_split = str_split($tag_string);
+ for ($i = 0; $i < count($tag_string_split); $i++) {
+ if ($tag_string_split[$i] === '(') {
+ $open_parentheses_count++;
+ } else if ($tag_string_split[$i] === ')') {
+ $open_parentheses_count--;
+ }
+ if ($open_parentheses_count === 0 && $tag_string_split[$i] === ',') {
+ if (--$members_to_find === 0) {
+ break;
+ }
+ }
+ $comma_index = $i;
+ }
+ return $comma_index + 1;
+ }
+}
diff --git a/modules/electrophysiology_browser/php/models/electrophysioannotations.class.inc b/modules/electrophysiology_browser/php/models/electrophysioannotations.class.inc
deleted file mode 100644
index 82e23adadf4..00000000000
--- a/modules/electrophysiology_browser/php/models/electrophysioannotations.class.inc
+++ /dev/null
@@ -1,607 +0,0 @@
-
- * @license http://www.gnu.org/licenses/gpl-3.0.txt GPLv3
- * @link https://www.github.com/aces/Loris/
- */
-class ElectrophysioAnnotations
-{
- private int $_physioFileID;
- private array $_data;
-
- /**
- * Construct an Annotation object
- *
- * @param integer $physioFileID Electrophysiological file ID
- * to collect annotation data from
- */
- function __construct(int $physioFileID)
- {
- $this->_physioFileID = $physioFileID;
- $db = \NDB_Factory::singleton()->database();
-
- $annotationInstance = $db->pselect(
- 'SELECT i.*
- FROM physiological_annotation_instance AS i
- JOIN physiological_annotation_file AS f
- ON f.AnnotationFileID = i.AnnotationFileID
- WHERE f.PhysiologicalFileID=:PFID AND f.FileType="tsv"',
- ['PFID' => $this->_physioFileID]
- );
-
- $annotationMetadata = $db->pselect(
- 'SELECT p.*
- FROM physiological_annotation_parameter AS p
- JOIN physiological_annotation_file AS f
- ON f.AnnotationFileID = p.AnnotationFileID
- WHERE f.PhysiologicalFileID=:PFID AND f.FileType="json"',
- ['PFID' => $this->_physioFileID]
- );
-
- $annotationLabels = $db->pselect(
- 'SELECT * FROM physiological_annotation_label',
- []
- );
-
- $this->_data = [
- 'instances' => $annotationInstance,
- 'metadata' => $annotationMetadata,
- 'labels' => $annotationLabels,
- ];
- }
-
- /**
- * Get data for the Electrophysiological file annotations
- *
- * @return array The data array
- */
- function getData(): array
- {
- return $this->_data;
- }
-
- /**
- * Updates annotation tables when there is a POST request.
- * Will add new derivative files if none exist for the given instance.
- * Will either add new annotations or update existing ones.
- *
- * @param array $instance_data Instance data
- * @param array $metadata Metadata
- * @param int|null $instance_id InstanceID
- * @param int|null $parameter_id ParameterID
- *
- * @return void
- */
- function update(
- array $instance_data,
- array $metadata,
- ?int $instance_id,
- ?int $parameter_id
- ): void {
-
- $factory = \NDB_Factory::singleton();
- $user = $factory->user();
- $db = $factory->database();
-
- if ($user->hasPermission('electrophysiology_browser_edit_annotations')) {
-
- //If the label is new, add to annotation label table
- //and get label ID
- $labelID = $db->pselectOne(
- // Adding MAX here as a hack fix for now until LORIS-MRI
- // bugfix for issue https://github.com/aces/Loris-MRI/issues/763
- // is available and cleanup happens of the annotation_label table
- "SELECT MAX(AnnotationLabelID)
- FROM physiological_annotation_label
- WHERE LabelName=:label",
- ['label' => $instance_data['label_name']]
- );
- if (empty($labelID)) {
- $data = [
- 'LabelName' => $instance_data['label_name'],
- 'LabelDescription' => $instance_data['label_description']
- ];
- $db->insert("physiological_annotation_label", $data);
- $labelID = $db->pselectOne(
- "SELECT AnnotationLabelID
- FROM physiological_annotation_label
- WHERE LabelName=:label",
- ['label' => $instance_data['label_name']]
- );
- }
-
- //If no derivative files exist, must create new files
- $annotationFIDs = $db->pselect(
- "SELECT AnnotationFileID
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID",
- ['PFID' => $this->_physioFileID]
- );
-
- //Get data from POST request
- $metadata = [
- 'Description' => $metadata['description'],
- 'Sources' => $metadata['sources'],
- 'Author' => $metadata['author']
- ];
-
- $instance = [
- 'Onset' => $instance_data['onset'],
- 'Duration' => $instance_data['duration'],
- 'AnnotationLabelID' => $labelID,
- 'Channels' => $instance_data['channels'] === 'all' ?
- null :
- $instance_data['channels'],
- 'Description' => $instance_data['description']
- ];
-
- //Insert new files and data into DB
- if (empty($annotationFIDs)) {
- //Create new annotation files
- $this->_createFiles();
-
- //Get new annotation file ID
- $annotation_tsv_ID = $db->pselectOne(
- "SELECT AnnotationFileID
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID
- AND FileType='tsv'",
- ['PFID' => $this->_physioFileID]
- );
- //Get new annotation file ID
- $annotation_json_ID = $db->pselectOne(
- "SELECT AnnotationFileID
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID
- AND FileType='json'",
- ['PFID' => $this->_physioFileID]
- );
-
- $metadata['AnnotationFileID'] = $annotation_json_ID;
- $db->insert("physiological_annotation_parameter", $metadata);
-
- //Get new metadata file ID
- $metadata_ID = $db->pselectOne(
- "SELECT AnnotationParameterID
- FROM physiological_annotation_parameter
- WHERE AnnotationFileID=:annotation_ID",
- ['annotation_ID' => $annotation_json_ID]
- );
-
- $instance['AnnotationFileID'] = $annotation_tsv_ID;
- $instance['AnnotationParameterID'] = $metadata_ID;
- $db->insert("physiological_annotation_instance", $instance);
-
- } else {
- //If the files are not new
- //Get annotation file ID for the tsv file
- $tsv_ID = $db->pselectOne(
- "SELECT AnnotationFileID
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID
- AND FileType='tsv'",
- ['PFID' => $this->_physioFileID]
- );
- //Get annotation file ID for the json file
- $json_ID = $db->pselectOne(
- "SELECT AnnotationFileID
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID
- AND FileType='json'",
- ['PFID' => $this->_physioFileID]
- );
-
- $instance['AnnotationFileID'] = $tsv_ID;
- $metadata['AnnotationFileID'] = $json_ID;
-
- /* If no instance ID is specified, insert new instance
- * into instance table and get the parameter file ID
- * from the parameter table
- */
- if (is_null($instance_id)) {
- $parameterID = $db->pselectOne(
- "SELECT AnnotationParameterID
- FROM physiological_annotation_parameter
- WHERE AnnotationFileID=:annotationFID",
- ['annotationFID' => $json_ID]
- );
- $instance['AnnotationParameterID'] = $parameterID;
-
- $db->insert('physiological_annotation_instance', $instance);
- } else {
- $db->update(
- 'physiological_annotation_instance',
- $instance,
- ['AnnotationInstanceID' => $instance_id]
- );
- }
- //Update parameter table if parameter ID provided
- if (!is_null($parameter_id)) {
- $db->update(
- 'physiological_annotation_parameter',
- $metadata,
- ['AnnotationParameterID' => $parameter_id]
- );
- }
-
- //In all cases where files are not new,
- //set LastUpdate time for all related files
-
- $db->update(
- 'physiological_annotation_file',
- ['LastUpdate' => date("Y-m-d H:i:s")],
- ['PhysiologicalFileID' => $this->_physioFileID]
- );
- }
- }
- }
-
- /**
- * Deletes one annotation
- *
- * @param int $annotationID Annotation ID
- *
- * @return void
- */
- function delete(int $annotationID): void
- {
- // TODO : check that $annotationID belongs to physioFileID
- $db = \NDB_Factory::singleton()->database();
-
- $physioFileID = $db->pselectone(
- 'SELECT PhysiologicalFileID
- FROM physiological_annotation_file AS f
- INNER JOIN physiological_annotation_instance AS i
- ON f.AnnotationFileID=i.AnnotationFileID
- AND i.AnnotationInstanceID=:annotationID',
- ['annotationID' => $annotationID]
- );
-
- if ($this->_physioFileID == $physioFileID) {
- $db->delete(
- "physiological_annotation_instance",
- ['AnnotationInstanceID' => $annotationID]
- );
- }
- }
-
- /**
- * Updates the derivative files associated with the
- * physiological file ID
- *
- * @return void
- * @throws SodiumException
- */
- function updateFiles(): void
- {
- $db = \NDB_Factory::singleton()->database();
-
- //If no derivative files exist, must create new files
- $annotationFIDs = $db->pselect(
- "SELECT AnnotationFileID
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID",
- ['PFID' => $this->_physioFileID]
- );
- //Insert new files and data into DB
- if (empty($annotationFIDs)) {
- //Create new annotation files
- $this->_createFiles();
- }
-
- //Get data directory base path from Config
- $dataDir = $db->pselectOne(
- 'SELECT Value
- FROM Config AS config
- INNER JOIN ConfigSettings AS c
- ON c.Name=:name AND config.ConfigID=c.ID',
- ['name' => 'dataDirBasepath']
- );
-
- $tsv_entries = [
- 'onset', 'duration', 'label', 'channels', 'absolute_time', 'description'
- ];
-
- $tsv = $db->pselect(
- "SELECT
- AnnotationFileID AS id,
- FilePath AS filePath,
- LastUpdate AS lastUpdate,
- LastWritten AS lastWritten
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID
- AND FileType='tsv'",
- ['PFID' => $this->_physioFileID]
- );
-
- $json = $db->pselect(
- "SELECT
- AnnotationFileID AS id,
- FilePath AS filePath,
- LastUpdate AS lastUpdate,
- LastWritten AS lastWritten
- FROM physiological_annotation_file
- WHERE PhysiologicalFileID=:PFID
- AND FileType='json'",
- ['PFID' => $this->_physioFileID]
- );
-
- $tsv_path = $dataDir.$tsv[0]['filePath'];
- $json_path = $dataDir.$json[0]['filePath'];
-
- //Update files if files updated before database updated
- if ($tsv[0]['lastWritten'] <= $tsv[0]['lastUpdate']
- || $json[0]['lastWritten'] <= $json[0]['lastUpdate']
- ) {
- //Update the three files with the given paths
- $labels = []; // Label Name => Label Description
- $tsv_file = fopen($tsv_path, 'w'); //Will override all file content
-
- //Get all annotation instances
- //Then go thru each and get the label name + description
- //add label name to file and also to an array for json file
- //change anything null to n/a
- $instances = $db->pselect(
- "SELECT
- p.Onset AS Onset,
- p.Duration AS Duration,
- l.LabelName AS LabelName,
- l.LabelDescription AS LabelDescription,
- p.Channels AS Channels,
- p.AbsoluteTime AS AbsoluteTime,
- p.Description AS Description
- FROM physiological_annotation_instance p
- LEFT JOIN physiological_annotation_label l
- ON (l.AnnotationLabelID=p.AnnotationLabelID)
- WHERE p.AnnotationFileID=:AFID",
- ['AFID' => $tsv[0]['id']]
- );
-
- if (count($instances) < 1) {
- return;
- }
-
- //Add columns
- $columns = implode("\t", $tsv_entries);
- fwrite($tsv_file, $columns."\n");
-
- foreach ($instances as $instance) {
- //Add labels to list for parameter file
- $labels[$instance['LabelName']] = $instance['LabelDescription'];
-
- //Setup each column in correct order
- $input_tsv = [
- $instance['Onset'],
- $instance['Duration'],
- $instance['LabelName'],
- $instance['Channels'],
- $instance['AbsoluteTime'],
- $instance['Description']
- ];
- //Set all null values to 'n/a'
- $input_tsv = array_map(
- function ($v) {
- return (is_null($v)) ? "n/a" : $v;
- },
- $input_tsv
- );
- //Implode with tabs as delimeter
- $input = implode("\t", $input_tsv);
-
- fwrite($tsv_file, $input."\n");
- }
- fclose($tsv_file);
-
- //Write to metadata (json) file
- //Get metadata from database (should only be 1 entry)
- $json_desc = $db->pselectOne(
- "SELECT Description
- FROM physiological_annotation_parameter
- WHERE AnnotationFileID=:AFID",
- ['AFID' => $json[0]['id']]
- );
- $json_source = $db->pselectOne(
- "SELECT Sources
- FROM physiological_annotation_parameter
- WHERE AnnotationFileID=:AFID",
- ['AFID' => $json[0]['id']]
- );
- $json_author = $db->pselectOne(
- "SELECT Author
- FROM physiological_annotation_parameter
- WHERE AnnotationFileID=:AFID",
- ['AFID' => $json[0]['id']]
- );
- //Get "IntendedFor" entry: physiological file path
- $physioFilePath = $db->pselectOne(
- "SELECT FilePath
- FROM physiological_file
- WHERE PhysiologicalFileID=:PFID",
- ['PFID' => $this->_physioFileID]
- );
-
- $input_json = [
- "Description" => $json_desc,
- "IntendedFor" => $physioFilePath,
- "Sources" => $json_source,
- "Author" => $json_author,
- "LabelDescription" => $labels
- ];
- $input_encode = json_encode($input_json, JSON_PRETTY_PRINT);
-
- $json_file = fopen($json_path, 'w');
- fwrite($json_file, $input_encode);
- fclose($json_file);
-
- //Update archives and create new hash
- $this->_updateArchives([$tsv_path, $json_path]);
-
- //Update time that files were written to
- $db->update(
- 'physiological_annotation_file',
- ['LastWritten' => date("Y-m-d H:i:s")],
- ['PhysiologicalFileID' => $this->_physioFileID]
- );
- }
- }
-
- /**
- * Creates new annotation files for the given physiological file
- * and inserts their information into database
- *
- * @return void
- * @throws SodiumException
- */
- function _createFiles() : void
- {
- $db = \NDB_Factory::singleton()->database();
-
- $physioFilePath = $db->pselectOne(
- 'SELECT FilePath
- FROM physiological_file
- WHERE PhysiologicalFileID=:PFID',
- ['PFID' => $this->_physioFileID]
- );
-
- // Get output type (raw, derivative)
- $outputType = $db->pselectOne(
- 'SELECT OutputTypeName
- FROM physiological_file pf
- JOIN physiological_output_type ot USING (PhysiologicalOutputTypeID)
- WHERE PhysiologicalFileID=:PFID',
- ['PFID' => $this->_physioFileID]
- );
-
- //Create new filepaths
- //Get data directory base path from Config
- $dataDir = $db->pselectOne(
- 'SELECT Value
- FROM Config AS config
- INNER JOIN ConfigSettings AS c
- ON c.Name=:name AND config.ConfigID=c.ID',
- ['name' => 'dataDirBasepath']
- );
- //Create path with correct structure
- $subPath = strstr($physioFilePath, "sub");
-
- if ($outputType === 'derivative') {
- $destinationPath = $dataDir
- . "bids_imports/derivatives/loris_annotations/"
- . $subPath;
- } else {
- $destinationPath = $dataDir . $physioFilePath;
- }
-
- //Create directories if they don't exist
- $dirname = pathinfo($destinationPath, PATHINFO_DIRNAME);
- if (!file_exists($dirname)) {
- mkdir($dirname, 0777, true);
- }
-
- //Replace file type with "annotations"
- $pathWithoutEDF = substr(
- $destinationPath,
- 0,
- strrpos($destinationPath, "_")
- );
-
- $tsv_path = $pathWithoutEDF . "_annotations.tsv";
- $json_path = $pathWithoutEDF . "_annotations.json";
- $tgz_path = $pathWithoutEDF . "_annotations.tgz";
-
- //Create files
- $tsv_file = fopen($tsv_path, 'a+');
- $json_file = fopen($json_path, 'a+');
-
- $tgz_file = new \PharData($tgz_path);
- $tgz_file->addFile($tsv_path, basename($tsv_path));
- $tgz_file->addFile($json_path, basename($json_path));
- fclose($tsv_file);
- fclose($json_file);
-
- $annotation_f = file_get_contents($tgz_path);
- $annotation_hash = sodium_crypto_generichash($annotation_f);
-
- $params_tsv = [
- 'PhysiologicalFileID' => $this->_physioFileID,
- 'FileType' => 'tsv',
- 'FilePath' => str_replace($dataDir, '', $tsv_path)
- ];
- $params_json = [
- 'PhysiologicalFileID' => $this->_physioFileID,
- 'FileType' => 'json',
- 'FilePath' => str_replace($dataDir, '', $json_path),
- ];
- $params_archive = [
- 'PhysiologicalFileID' => $this->_physioFileID,
- 'FilePath' => str_replace($dataDir, '', $tgz_path),
- 'Blake2bHash' => bin2hex($annotation_hash)
- ];
- $db->insert("physiological_annotation_file", $params_tsv);
- $db->insert("physiological_annotation_file", $params_json);
- $db->insert("physiological_annotation_archive", $params_archive);
- }
-
- /**
- * Updates the annotation and physiological archives for the given
- * physiological file ID with the provided paths and updates
- * database with new archive file hash
- *
- * @param array $paths Paths to files to be added to archive
- *
- * @return void
- * @throws SodiumException
- */
- function _updateArchives(array $paths) : void
- {
- $db = \NDB_Factory::singleton()->database();
-
- $dataDir = $db->pselectOne(
- 'SELECT Value
- FROM Config AS config
- INNER JOIN ConfigSettings AS c
- ON c.Name=:name AND config.ConfigID=c.ID',
- ['name' => 'dataDirBasepath']
- );
- $queries = [
- 'physiological_annotation_archive',
- 'physiological_archive'
- ];
-
- foreach ($queries as $query) {
- $filepath = $db->pselectone(
- "SELECT
- DISTINCT(FilePath)
- FROM $query
- WHERE PhysiologicalFileID=:PFID",
- ['PFID' => $this->_physioFileID]
- );
- if (!$filepath) {
- continue;
- }
- $filepath = $dataDir.$filepath;
- $arch_file = new \PharData($filepath);
- foreach ($paths as $path) {
- $arch_file->addFile($path, basename($path));
- }
-
- $f = file_get_contents($filepath);
- $hash = sodium_crypto_generichash($f);
-
- //Update database with hash
- $db->update(
- $query,
- ['Blake2bHash' => bin2hex($hash)],
- ['PhysiologicalFileID' => $this->_physioFileID]
- );
- }
- }
-}
diff --git a/modules/electrophysiology_browser/php/models/electrophysioevents.class.inc b/modules/electrophysiology_browser/php/models/electrophysioevents.class.inc
index 25161a93ed3..ab83f2a85e3 100644
--- a/modules/electrophysiology_browser/php/models/electrophysioevents.class.inc
+++ b/modules/electrophysiology_browser/php/models/electrophysioevents.class.inc
@@ -1,5 +1,6 @@
loris = $loris;
$this->_physioFileID = $physioFileID;
- $db = \NDB_Factory::singleton()->database();
+ $db = $this->loris->getDatabaseConnection();
$taskEvents = $db->pselect(
- 'SELECT te.*
+ 'SELECT te.*
FROM physiological_task_event AS te
JOIN physiological_event_file AS f
- ON f.EventFileID = te.EventFileID
+ ON f.EventFileID = te.EventFileID
WHERE f.PhysiologicalFileID=:PFID AND f.FileType="tsv"',
['PFID' => $this->_physioFileID]
);
- /**
- * TODO: Get event params and metadata.
- * NOT in the scope of current task
- **/
+ $taskEventIDs = array_map(
+ function ($taskEvent) {
+ return $taskEvent['PhysiologicalTaskEventID'];
+ },
+ $taskEvents
+ );
+
+ $taskEventIDs = array_combine(
+ array_map('intval', array_keys($taskEventIDs)),
+ array_values($taskEventIDs)
+ );
+
+ $extraColumns = $db->pselect(
+ 'SELECT opt.*
+ FROM physiological_task_event_opt AS opt
+ WHERE opt.PhysiologicalTaskEventID IN ('
+ . (
+ count($taskEventIDs) > 0
+ ? join(',', $taskEventIDs)
+ : 'null'
+ ) . ')',
+ []
+ );
+
+ $hedTags = $db->pselect(
+ 'SELECT *
+ FROM physiological_task_event_hed_rel
+ WHERE PhysiologicalTaskEventID IN ('
+ . (
+ count($taskEventIDs) > 0
+ ? join(',', $taskEventIDs)
+ : 'null'
+ ) . ')',
+ []
+ );
$this->_data = [
- 'instances' => $taskEvents,
+ 'instances' => $taskEvents,
+ 'extraColumns' => $extraColumns,
+ 'hedTags' => $hedTags
];
}
/**
- * Get data for the Electrophysiological file annotations
+ * Get data for the Electrophysiological events
*
* @return array The data array
*/
@@ -57,7 +93,557 @@ class ElectrophysioEvents
}
/**
- * TODO: Add other features such as add, update, delete
- * NOT in the scope of current task
- **/
+ * Updates event tables when there is a POST request.
+ * Will add new derivative files if none exist for the given instance.
+ * Will either add new events or update existing ones.
+ *
+ * @param array $instance_data Instance data
+ * @param array $metadata Metadata
+ * @param int|null $instance_id InstanceID
+ *
+ * @return array
+ */
+ function update(
+ array $instance_data,
+ array $metadata,
+ ?int $instance_id,
+ ): array {
+
+ $user = \User::singleton();
+ $db = $this->loris->getDatabaseConnection();
+
+ if ($user->hasPermission('electrophysiology_browser_edit_annotations')) {
+
+ //If no derivative files exist, must create new files
+ $eventFileID = $db->pselect(
+ "SELECT EventFileID
+ FROM physiological_task_event
+ WHERE PhysiologicalFileID=:PFID",
+ ['PFID' => $this->_physioFileID]
+ );
+
+ if (is_null($instance_id)) {
+ // TODO: Support Instance INSERT
+ $instance_id = 1;
+ }
+
+ $instance = [
+ 'Onset' => $instance_data['onset'],
+ 'Duration' => $instance_data['duration'],
+ ];
+
+ // TODO: Support Event Instance Insert
+ if (!empty($eventFileID)) {
+ // TODO: VALIDATE HED
+ $deletedTagIDs = $instance_data['deleted_hed'];
+ $newTagIDs = $instance_data['added_hed'];
+
+ // Update physiological_task_event
+ $db->update(
+ 'physiological_task_event',
+ $instance,
+ ['PhysiologicalTaskEventID' => $instance_id]
+ );
+
+ // Update HED tags
+ foreach ($deletedTagIDs as $deletedTagID) {
+ $db->delete(
+ 'physiological_task_event_hed_rel',
+ [
+ 'PhysiologicalTaskEventID' => $instance_id,
+ 'ID' => $deletedTagID
+ ]
+ );
+ }
+
+ foreach ($newTagIDs as $newTagID) {
+ $db->insert(
+ 'physiological_task_event_hed_rel',
+ [
+ 'PhysiologicalTaskEventID' => $instance_id,
+ 'HEDTagID' => $newTagID
+ ]
+ );
+ }
+ $db->update(
+ 'physiological_event_file',
+ ['LastUpdate' => date("Y-m-d H:i:s")],
+ ['PhysiologicalFileID' => $this->_physioFileID]
+ );
+ }
+
+ $taskEvent = $db->pselect(
+ 'SELECT * FROM physiological_task_event
+ WHERE PhysiologicalTaskEventID=:PTEID',
+ ['PTEID' => $instance_id]
+ );
+
+ $extraColumns = $db->pselect(
+ 'SELECT opt.*
+ FROM physiological_task_event_opt AS opt
+ WHERE opt.PhysiologicalTaskEventID=:PTEID',
+ ['PTEID' => $instance_id]
+ );
+
+ $hedTags = $db->pselect(
+ 'SELECT *
+ FROM physiological_task_event_hed_rel
+ WHERE PhysiologicalTaskEventID=:PTEID',
+ ['PTEID' => $instance_id]
+ );
+
+ return [
+ 'instance' => $taskEvent[0],
+ 'extraColumns' => $extraColumns,
+ 'hedTags' => $hedTags
+ ];
+ }
+ return [];
+ }
+
+ /**
+ * Deletes one event instance
+ *
+ * @param int $physiologicalTaskEventID PhysiologicalTaskEventID
+ *
+ * @return void
+ */
+ function deleteEvent(int $physiologicalTaskEventID): void
+ {
+ $db = $this->loris->getDatabaseConnection();
+
+ $physioFileID = $db->pselectone(
+ 'SELECT PhysiologicalFileID
+ FROM physiological_task_event
+ WHERE PhysiologicalTaskEventID=:taskEventID',
+ ['taskEventID' => $physiologicalTaskEventID]
+ );
+
+ // TODO: Check that this cascades properly to rel tables
+ if ($this->_physioFileID == $physioFileID) {
+ $db->delete(
+ "physiological_task_event",
+ ['PhysiologicalTaskEventID' => $physiologicalTaskEventID]
+ );
+ }
+ }
+
+ /**
+ * Deletes one event's HED tag
+ *
+ * @param int $physiologicalTaskEventID PhysiologicalTaskEventID
+ * @param int $hedTagID HEDTagID
+ *
+ * @return void
+ */
+ function deleteHEDTag(int $physiologicalTaskEventID, int $hedTagID): void
+ {
+ $db = $this->loris->getDatabaseConnection();
+
+ $physioFileID = $db->pselectone(
+ 'SELECT PhysiologicalFileID
+ FROM physiological_task_event
+ WHERE PhysiologicalTaskEventID=:taskEventID',
+ ['taskEventID' => $physiologicalTaskEventID]
+ );
+
+ // TODO: Check that this cascades properly to rel tables
+ if ($this->_physioFileID == $physioFileID) {
+ $db->delete(
+ "physiological_task_event_hed_rel",
+ [
+ 'PhysiologicalTaskEventID' => $physiologicalTaskEventID,
+ 'HEDTagID' => $hedTagID
+ ]
+ );
+ }
+ }
+
+ /**
+ * Updates the event files associated with the given
+ * physiological file ID
+ *
+ * @return void
+ * @throws SodiumException
+ */
+ function updateFiles(): void
+ {
+ $db = $this->loris->getDatabaseConnection();
+
+ //Get data directory base path from Config
+ $config = \NDB_Factory::singleton()->config();
+ $dataDir = $config->getSetting("dataDirBasepath");
+
+ $tsv = $db->pselect(
+ "SELECT
+ EventFileID AS id,
+ FilePath AS filePath,
+ ProjectID AS projectID,
+ LastUpdate AS lastUpdate,
+ LastWritten AS lastWritten
+ FROM physiological_event_file
+ WHERE PhysiologicalFileID=:PFID
+ AND FileType='tsv'",
+ ['PFID' => $this->_physioFileID]
+ );
+
+ $projectID = $db->pselectOneInt(
+ 'SELECT ProjectID FROM session AS s WHERE s.ID = (
+ SELECT SessionID FROM physiological_file
+ WHERE PhysiologicalFileID=:PFID
+ )',
+ ['PFID' => $this->_physioFileID]
+ );
+
+ $json = $db->pselect(
+ "SELECT
+ EventFileID AS id,
+ FilePath AS filePath,
+ LastUpdate AS lastUpdate,
+ LastWritten AS lastWritten
+ FROM physiological_event_file
+ WHERE (
+ PhysiologicalFileID=:PFID OR ProjectID=:PID
+ )
+ AND FileType='json'",
+ [
+ 'PFID' => $this->_physioFileID,
+ 'PID' => $projectID
+ ]
+ );
+
+ $tsvPath = count($tsv) > 0
+ ? \Utility::pathJoin(
+ $dataDir,
+ \Utility::resolvePath($tsv[0]['filePath'])
+ )
+ : '';
+ $jsonPath = count($json) > 0
+ ? \Utility::pathJoin(
+ $dataDir,
+ \Utility::resolvePath($json[0]['filePath'])
+ )
+ : '';
+
+ // Define paths for creation if either file don't exist
+ if (strlen($tsvPath) === 0 || strlen($jsonPath) === 0) {
+ $physioFilePath = $db->pselectOne(
+ 'SELECT FilePath
+ FROM physiological_file
+ WHERE PhysiologicalFileID=:PFID',
+ ['PFID' => $this->_physioFileID]
+ );
+ $indexOfLastUnderscore = strripos($physioFilePath, '_');
+ $sessionDirectory = substr(
+ $physioFilePath,
+ 0,
+ $indexOfLastUnderscore
+ );
+
+ if (strlen($tsvPath) === 0) {
+ $relativePath = $sessionDirectory . '_events.tsv';
+ $db->insert(
+ 'physiological_event_file',
+ [
+ 'ProjectID' => $projectID,
+ 'PhysiologicalFileID' => $this->_physioFileID,
+ 'FileType' => 'tsv',
+ 'FilePath' => $relativePath,
+ ]
+ );
+ $tsvPath = \Utility::pathJoin(
+ $dataDir,
+ \Utility::resolvePath($relativePath)
+ );
+ }
+
+ if (strlen($jsonPath) === 0) {
+ // Second directory level: bids_imports/Dataset/
+ $datasetDirectory = substr(
+ $sessionDirectory,
+ 0,
+ strpos(
+ $sessionDirectory,
+ '/',
+ strpos($sessionDirectory, '/') + 1
+ )
+ );
+ $taskFound = preg_match(
+ '/sub-.+_(task-.+)_/',
+ $physioFilePath,
+ $matches
+ );
+ $relativePath = $datasetDirectory . '/' .
+ ($taskFound ? "$matches[1]_" : '') .
+ 'events.json';
+ $db->insert(
+ 'physiological_event_file',
+ [
+ 'ProjectID' => $projectID,
+ 'PhysiologicalFileID' => $this->_physioFileID,
+ 'FileType' => 'json',
+ 'FilePath' => $relativePath,
+ ]
+ );
+ $jsonPath = \Utility::pathJoin(
+ $dataDir,
+ \Utility::resolvePath($relativePath)
+ );
+ }
+ }
+
+ // Update files if files updated before database updated
+ if ($tsv[0]['lastWritten'] <= $tsv[0]['lastUpdate']
+ || $json[0]['lastWritten'] <= $json[0]['lastUpdate']
+ ) {
+ // events.tsv
+ $tsvFile = fopen($tsvPath, 'w'); // Will override all file content
+
+ $extraColumns = $db->pselect(
+ "SELECT *
+ FROM physiological_task_event_opt
+ WHERE PhysiologicalTaskEventID IN (
+ SELECT PhysiologicalTaskEventID
+ FROM physiological_task_event
+ WHERE PhysiologicalFileID=:PFID
+ )",
+ ['PFID' => $this->_physioFileID]
+ );
+
+ $hed_tags = $db->pselect(
+ "SELECT *
+ FROM physiological_task_event_hed_rel
+ WHERE PhysiologicalTaskEventID IN (
+ SELECT PhysiologicalTaskEventID
+ FROM physiological_task_event
+ WHERE PhysiologicalFileID=:PFID
+ )",
+ ['PFID' => $this->_physioFileID]
+ );
+
+ $columnNames = $db->pselect(
+ "SELECT DISTINCT PropertyName
+ FROM physiological_task_event_opt
+ WHERE PhysiologicalTaskEventID IN (
+ SELECT PhysiologicalTaskEventID
+ FROM physiological_task_event
+ WHERE PhysiologicalFileID=:PFID
+ )",
+ ['PFID' => $this->_physioFileID]
+ );
+
+ $datasetTags = new DatasetTags($this->loris, $this->_physioFileID);
+ $datasetHEDTags = $datasetTags->getData();
+
+ // TODO: Make columns more dynamic
+ $tsvEntries = [
+ 'onset', 'duration', 'sample', 'trial_type', 'response_time', 'value'
+ ];
+ foreach ($columnNames as $columnName) {
+ $tsvEntries[] = $columnName['PropertyName'];
+ }
+
+ $tsvEntries[] = 'HED';
+
+ // Add columns names
+ $columns = implode("\t", $tsvEntries);
+ fwrite($tsvFile, "$columns\n");
+
+ $instances = $db->pselect(
+ "SELECT
+ PhysiologicalTaskEventID,
+ Onset,
+ Duration,
+ EventSample,
+ TrialType,
+ ResponseTime,
+ EventValue
+ FROM physiological_task_event
+ WHERE PhysiologicalFileID=:PFID",
+ ['PFID' => $this->_physioFileID]
+ );
+
+ foreach ($instances as $instance) {
+ // Setup each column in correct order
+ $inputTSV = [
+ $instance['Onset'],
+ $instance['Duration'],
+ $instance['EventSample'],
+ $instance['TrialType'],
+ $instance['ResponseTime'],
+ $instance['EventValue'],
+ ];
+
+ $taskEventID = $instance['PhysiologicalTaskEventID'];
+
+ // Get instance's extra columns
+ $instanceExtraColumns
+ = array_filter(
+ array_values($extraColumns),
+ function ($column) use ($taskEventID) {
+ return
+ $column['PhysiologicalTaskEventID'] == $taskEventID;
+ }
+ );
+
+ foreach ($columnNames as $columnName) {
+ $column = array_filter(
+ array_values($instanceExtraColumns),
+ function ($col) use ($columnName) {
+ return
+ $col['PropertyName'] == $columnName['PropertyName'];
+ }
+ );
+
+ $columnValue = count($column) > 0
+ ? array_values($column)[0]['PropertyValue']
+ : 'n/a';
+
+ $inputTSV[] = $columnValue;
+ }
+
+ // Set all null values to 'n/a'
+ $inputTSV = array_map(
+ function ($v) {
+ return is_null($v) ? "n/a" : $v;
+ },
+ $inputTSV
+ );
+
+ // Build assembled HED string
+ $hed = $datasetTags->buildHEDString(
+ $instance,
+ $instanceExtraColumns,
+ array_filter(
+ $hed_tags,
+ function ($hed_tag) use ($taskEventID) {
+ return $hed_tag['PhysiologicalTaskEventID']
+ == $taskEventID;
+ }
+ ),
+ $datasetHEDTags
+ );
+ $inputTSV[] = $hed;
+
+ // Implode with tabs as delimiter
+ $input = implode("\t", $inputTSV);
+
+ fwrite($tsvFile, $input."\n");
+ }
+ fclose($tsvFile);
+
+ // events.json
+ $eventsJSON = [];
+
+ foreach (array_keys($datasetHEDTags) as $eventColumn) {
+ $levels = [];
+ $hed = [];
+ foreach (array_keys($datasetHEDTags[$eventColumn]) as $columnValue) {
+ $tags = $datasetHEDTags[$eventColumn][$columnValue];
+ $levelDescription = '';
+ $hedString = '';
+ if (count($tags) > 0) {
+ $levelDescription = $tags[0]['Description'] ?? '';
+ $hedString = $datasetTags->buildHEDString(
+ [],
+ [],
+ $tags,
+ $datasetHEDTags
+ );
+ }
+ $levels[$columnValue] = $levelDescription;
+ $hed[$columnValue] = $hedString;
+ }
+ $eventsJSON[$this->_getColumnName($eventColumn)] = [
+ 'Levels' => $levels,
+ 'HED' => $hed,
+ ];
+ }
+
+ $encodedEvents = json_encode($eventsJSON, JSON_PRETTY_PRINT);
+ $jsonFile = fopen($jsonPath, 'w');
+ fwrite($jsonFile, $encodedEvents);
+ fclose($jsonFile);
+
+ // Update archives and create new hash
+ $this->_updateArchives([$tsvPath, $jsonPath]);
+
+ // Update time that files were written to
+ $db->update(
+ 'physiological_event_file',
+ ['LastWritten' => date("Y-m-d H:i:s")],
+ ['PhysiologicalFileID' => $this->_physioFileID]
+ );
+ }
+ }
+
+ /**
+ * Convert column name from DB into BIDS-recognized column name
+ *
+ * @param string $columnName Column name from DB
+ *
+ * @return string
+ */
+ function _getColumnName(string $columnName) : string
+ {
+ return match (strtolower($columnName)) {
+ 'eventvalue', 'event_value', 'value' => 'value',
+ 'trialtype' => 'trial_type',
+ default => $columnName,
+ };
+ }
+
+ /**
+ * Updates the event and physiological archives for the given
+ * physiological file ID with the provided paths and updates
+ * database with new archive file hash
+ *
+ * @param array $paths Paths to files to be added to archive
+ *
+ * @return void
+ * @throws SodiumException
+ */
+ function _updateArchives(array $paths) : void
+ {
+ $db = $this->loris->getDatabaseConnection();
+
+ //Get data directory base path from Config
+ $config = \NDB_Factory::singleton()->config();
+ $dataDir = $config->getSetting("dataDirBasepath");
+
+ $archive_table_names = [
+ 'physiological_event_archive',
+ 'physiological_archive'
+ ];
+
+ foreach ($archive_table_names as $archive_table_name) {
+ $filepath = $db->pselectOne(
+ "SELECT
+ DISTINCT(FilePath)
+ FROM $archive_table_name
+ WHERE PhysiologicalFileID=:PFID",
+ ['PFID' => $this->_physioFileID]
+ );
+
+ $filepath = \Utility::pathJoin(
+ $dataDir,
+ \Utility::resolvePath($filepath)
+ );
+
+ $archive_file = new \PharData($filepath);
+ foreach ($paths as $path) {
+ $archive_file->addFile($path, basename($path));
+ }
+
+ $f = file_get_contents($filepath);
+ $hash = sodium_crypto_generichash($f);
+
+ //Update database with hash
+ $db->update(
+ $archive_table_name,
+ ['Blake2bHash' => bin2hex($hash)],
+ ['PhysiologicalFileID' => $this->_physioFileID]
+ );
+ }
+ }
}
diff --git a/modules/electrophysiology_browser/php/models/electrophysiofile.class.inc b/modules/electrophysiology_browser/php/models/electrophysiofile.class.inc
index 9939fa897c2..c77482463cd 100644
--- a/modules/electrophysiology_browser/php/models/electrophysiofile.class.inc
+++ b/modules/electrophysiology_browser/php/models/electrophysiofile.class.inc
@@ -28,18 +28,22 @@ class ElectrophysioFile implements \LORIS\Data\DataInstance
private $_parameters = [];
private $_chunksURLs = [];
private $_splitFileIDs = [];
+ private \LORIS\LorisInstance $loris;
+
/**
* Construct a BIDSFile
*
- * @param integer $physiologicalFileID The PhysiologicalFileID to be loaded
+ * @param \LORIS\LorisInstance $loris The LORIS instance that the
+ * module is serving.
+ * @param integer $physiologicalFileID Electrophysiological File ID
*/
- function __construct(int $physiologicalFileID)
+ function __construct(\LORIS\LorisInstance $loris, int $physiologicalFileID)
{
+ $this->loris = $loris;
+ $db = $this->loris->getDatabaseConnection();
- $db = \NDB_Factory::singleton()->database();
-
- $query = "SELECT
+ $query = "SELECT
PhysiologicalFileID,
PhysiologicalModality as Modality,
PhysiologicalOutputTypeID,
@@ -59,13 +63,13 @@ class ElectrophysioFile implements \LORIS\Data\DataInstance
$this->_fileData[$key] = $value;
}
- $query = "SELECT
- pt.Name,
+ $query = "SELECT
+ pt.Name,
ppf.Value
FROM physiological_parameter_file as ppf
LEFT JOIN parameter_type as pt USING (ParameterTypeID)
- WHERE
- PhysiologicalFileID=:PFID
+ WHERE
+ PhysiologicalFileID=:PFID
AND pt.Name <> 'electrophyiology_chunked_dataset_path'";
$parameterRaw = $db->pselect($query, ['PFID' => $physiologicalFileID]);
@@ -172,6 +176,7 @@ class ElectrophysioFile implements \LORIS\Data\DataInstance
'splitIndex' => $index,
'splitCount' => intval($this->_fileData['SplitCount']),
'splitPhysioFile' => new ElectrophysioFile(
+ $this->loris,
intval($this->_splitFileIDs[$index])
),
];
diff --git a/modules/electrophysiology_browser/php/sessions.class.inc b/modules/electrophysiology_browser/php/sessions.class.inc
index ee68788834f..9a36284840f 100644
--- a/modules/electrophysiology_browser/php/sessions.class.inc
+++ b/modules/electrophysiology_browser/php/sessions.class.inc
@@ -14,10 +14,10 @@
*/
namespace LORIS\electrophysiology_browser;
+use LORIS\electrophysiology_browser\Models\DatasetTags;
use \Psr\Http\Message\ServerRequestInterface;
use \Psr\Http\Message\ResponseInterface;
use LORIS\electrophysiology_browser\Models\ElectrophysioFile;
-use LORIS\electrophysiology_browser\Models\ElectrophysioAnnotations;
use LORIS\electrophysiology_browser\Models\ElectrophysioEvents;
/**
@@ -50,7 +50,7 @@ class Sessions extends \NDB_Page
{
return (($user->hasPermission('electrophysiology_browser_view_allsites')
|| ($user->hasCenter($this->timepoint->getCenterID())
- && $user->hasPermission('electrophysiology_browser_view_site'))
+ && $user->hasPermission('electrophysiology_browser_view_site'))
) && $user->hasProject($this->timepoint->getProject()->getId()));
}
@@ -151,7 +151,7 @@ class Sessions extends \NDB_Page
function getSessionData($outputType)
{
- $db = \NDB_Factory::singleton()->database();
+ $db = $this->loris->getDatabaseConnection();
$query = 'SELECT
DISTINCT(pf.SessionID)
@@ -164,8 +164,8 @@ class Sessions extends \NDB_Page
WHERE
s.Active = "Y"
AND pf.FileType IN ('.
- '"bdf", "cnt", "edf", "set", "vhdr", "vsm", "archive"'.
- ') ORDER BY pf.SessionID';
+ '"bdf", "cnt", "edf", "set", "vhdr", "vsm", "archive"'.
+ ') ORDER BY pf.SessionID';
$response = [];
@@ -222,7 +222,7 @@ class Sessions extends \NDB_Page
*/
function getFilesData(string $outputType)
{
- $db = \NDB_Factory::singleton()->database();
+ $db = $this->loris->getDatabaseConnection();
$fileCollection = [];
$params = [];
@@ -262,11 +262,11 @@ class Sessions extends \NDB_Page
*/
function getSummary(array $file) : array
{
- $db = \NDB_Factory::singleton()->database();
+ $db = $this->loris->getDatabaseConnection();
$fileSummary = [];
$physioFileID = intval($file['PhysiologicalFileID']);
- $physioFileObj = new ElectrophysioFile($physioFileID);
+ $physioFileObj = new ElectrophysioFile($this->loris, $physioFileID);
$physioFile = $physioFileObj->getParameter('FilePath');
$modality = $physioFileObj->getParameter('Modality');
$modalityPrefix = $modality === 'ieeg' ? 'iEEG' : 'EEG';
@@ -292,12 +292,12 @@ class Sessions extends \NDB_Page
$fileSummary['summary'],
array_map(
fn($channel) =>
- [
- 'name' => $channel.' Channel Count',
- 'value' => $physioFileObj->getParameter(
- $channel.'ChannelCount'
- ),
- ],
+ [
+ 'name' => $channel.' Channel Count',
+ 'value' => $physioFileObj->getParameter(
+ $channel.'ChannelCount'
+ ),
+ ],
$channels
)
);
@@ -460,13 +460,6 @@ class Sessions extends \NDB_Page
$fileSummary['downloads'] = $this->getDownloadLinks($physioFileObj);
$fileSummary['chunks_urls'] = $physioFileObj->getChunksURLs();
- $fileSummary['epochsURL'] = $db->pselectOne(
- "SELECT FilePath
- FROM physiological_event_file
- WHERE PhysiologicalFileID=:physioFileID
- AND FileType='tsv'",
- ['physioFileID' => $physioFileID]
- );
$fileOutput = $db->pselectone(
'SELECT pot.OutputTypeName
@@ -477,28 +470,46 @@ class Sessions extends \NDB_Page
['PFID' => $physioFileID]
);
- // Get the annotation data
- $annotations = new ElectrophysioAnnotations(
- intval($physioFileID)
- );
- $fileSummary['annotations'] = $annotations->getData();
-
- // Get the task events data
+ // Get the task's event data
$events = new ElectrophysioEvents(
- intval($physioFileID)
+ $this->loris,
+ $physioFileID
);
$fileSummary['events'] = $events->getData();
- $fileSummary['epochsURL'] = $db->pselectOne(
+ $datasetTags = new DatasetTags(
+ $this->loris,
+ $physioFileID
+ );
+ $fileSummary['datasetTags'] = $datasetTags->getData();
+
+ $fileSummary['epochsURL'] = $db->pselectOne(
"SELECT FilePath
FROM physiological_event_file
WHERE PhysiologicalFileID=:physioFileID
AND FileType='tsv'",
['physioFileID' => $physioFileID]
);
+
$fileSummary['output_type'] = $fileOutput;
$fileSummary['splitData'] = $physioFileObj->getSplitData(0);
+ // TODO: Fetch all relevant ones and merge beforehand (project_schema_rel?)
+ $hedSchema = $db->pselect(
+ "SELECT node.ID as id,
+ node.ParentID as parentID,
+ node.SchemaID as schemaID,
+ node.Name as name,
+ node.LongName as longName,
+ node.Description as description,
+ hs.Name as schemaName
+ FROM hed_schema_nodes AS node
+ LEFT JOIN hed_schema AS hs ON (hs.ID = node.SchemaID)",
+ []
+ );
+
+ $fileSummary['hedSchema'] = $hedSchema;
+
return $fileSummary;
}
@@ -553,7 +564,7 @@ class Sessions extends \NDB_Page
{
$physioFileID = $physioFileObj->getParameter('PhysiologicalFileID');
$physioFile = $physioFileObj->getParameter('FilePath');
- $db = \NDB_Factory::singleton()->database();
+ $db = $this->loris->getDatabaseConnection();
$downloadLinks = [];
$downloadLinks[] = [
@@ -583,28 +594,37 @@ class Sessions extends \NDB_Page
// Metadata
$queries = [
- 'physiological_channel' => 'physiological_channel_file',
- 'physiological_event_archive' => 'physiological_event_files',
- 'physiological_annotation_archive' => 'physiological_annotation_files',
- 'physiological_archive' => 'all_files',
+ 'physiological_electrode' => 'physiological_electrode_file',
+ 'physiological_coord_system' => 'physiological_coord_system_file',
+ 'physiological_channel' => 'physiological_channel_file',
+ 'physiological_event_archive' => 'physiological_event_files',
+ 'physiological_archive' => 'all_files',
];
$labels = [
- 'physiological_electrode_file' => 'Electrodes',
- 'physiological_channel_file' => 'Channels',
- 'physiological_event_files' => 'Events',
- 'physiological_annotation_files' => 'Annotations',
- 'all_files' => 'All Files',
+ 'physiological_electrode_file' => 'Electrodes',
+ 'physiological_coord_system_file' => 'Coordinate System',
+ 'physiological_channel_file' => 'Channels',
+ 'physiological_event_files' => 'Events',
+ 'all_files' => 'All Files',
];
foreach ($queries as $query_key => $query_value) {
+ // TODO: Revisit logic if we plan to support multiple electrode spaces
if ($query_key == 'physiological_electrode') {
// electrode filepath linked to coordinate system
- $query_statement = "SELECT DISTINCT e.FilePath
- FROM physiological_coord_system_electrode_rel AS r,
- physiological_electrode AS e
- WHERE r.PhysiologicalElectrodeID = e.PhysiologicalElectrodeID
- AND r.PhysiologicalFileID=:PFID";
+ $query_statement = "SELECT DISTINCT (FilePath)
+ FROM physiological_electrode
+ JOIN physiological_coord_system_electrode_rel
+ USING (PhysiologicalElectrodeID)
+ WHERE PhysiologicalFileID=:PFID";
+ } else if ($query_key == 'physiological_coord_system') {
+ // coordinate system json
+ $query_statement = "SELECT DISTINCT (FilePath)
+ FROM physiological_coord_system
+ JOIN physiological_coord_system_electrode_rel
+ USING (PhysiologicalCoordSystemID)
+ WHERE PhysiologicalFileID=:PFID";
} else {
// others metadata
$query_statement = "SELECT DISTINCT FilePath
@@ -628,29 +648,6 @@ class Sessions extends \NDB_Page
];
}
}
-
- // Electrodes
- $file_name = 'physiological_electrode_file';
- // TODO: If we plan to support multiple electrode spaces
- // the LIMIT logic should be revisited
- $query_statement = "SELECT DISTINCT(FilePath)
- FROM physiological_electrode
- JOIN physiological_coord_system_electrode_rel
- USING (PhysiologicalElectrodeID)
- WHERE PhysiologicalFileID=:PFID
- LIMIT 1";
- $query_statement = $db->pselect(
- $query_statement,
- ['PFID' => $physioFileID]
- );
-
- $downloadLinks[$file_name] = [
- 'file' => '',
- 'label' => $labels[$file_name],
- ];
- if (count($query_statement) > 0) {
- $downloadLinks[$file_name]['file'] = $query_statement[0]['FilePath'];
- }
return $downloadLinks;
}
diff --git a/modules/electrophysiology_browser/php/split_data.class.inc b/modules/electrophysiology_browser/php/split_data.class.inc
index 529fc7d5d66..f5658b55656 100644
--- a/modules/electrophysiology_browser/php/split_data.class.inc
+++ b/modules/electrophysiology_browser/php/split_data.class.inc
@@ -5,7 +5,7 @@ use \Psr\Http\Message\ResponseInterface;
use LORIS\electrophysiology_browser\Models\ElectrophysioFile;
/**
- * Contains the Annotations class used for electrophysiological browser
+ * Contains the Split_Data class used for electrophysiological browser
*
* PHP Version 7
*
@@ -48,8 +48,10 @@ class Split_Data extends \NDB_Page
}
return new \LORIS\Http\Response\JSON\OK(
- (new ElectrophysioFile(intval($values['physioFileID'])))
- ->getSplitData(intval($values['splitIndex']))
+ (new ElectrophysioFile(
+ $this->loris,
+ intval($values['physioFileID'])
+ ))->getSplitData(intval($values['splitIndex']))
);
default:
return (new \LORIS\Http\Response\JSON\MethodNotAllowed(
@@ -57,4 +59,4 @@ class Split_Data extends \NDB_Page
));
}
}
-}
\ No newline at end of file
+}
diff --git a/modules/electrophysiology_browser/test/TestPlan.md b/modules/electrophysiology_browser/test/TestPlan.md
index 034f93803d5..fd42442f0c1 100644
--- a/modules/electrophysiology_browser/test/TestPlan.md
+++ b/modules/electrophysiology_browser/test/TestPlan.md
@@ -1,45 +1,49 @@
## Electrophysiology Browser test plan
-
+
### A. Electrophysiology Browser front page
1. User can load Electrophysiology Browser module front page if and only if user has either permission:
- * `electrophysiology_browser_view_site` : _"View all-sites Electrophysiology Browser pages"_ [Automated Testing]
- * `electrophysiology_browser_view_allsites` : _"View own site Electrophysiology Browser pages"_ [Automated Testing]
-2. User can see other sites Electrophysiology datasets if and only if user has permission `electrophysiology_browser_view_allsites`. User can see only own-site datasets if and only if user has permission `electrophysiology_browser_view_site`.
+ * `electrophysiology_browser_view_site` : _"View all-sites Electrophysiology Browser pages"_ [Automated Testing]
+ * `electrophysiology_browser_view_allsites` : _"View own site Electrophysiology Browser pages"_ [Automated Testing]
+2. User can see other sites Electrophysiology datasets if and only if user has permission `electrophysiology_browser_view_allsites`. User can see only own-site datasets if and only if user has permission `electrophysiology_browser_view_site`.
3. Test that all Filters work. [Automated Testing]
4. Test Clear Filters button. [Automated Testing]
5. Test column table is sortable by headers. [Automated Testing]
6. Test that Links work and point to correct dataset (raw/derivative). [Manual Testing]
-### B. Subpage: Sessions
+### B. Subpage: Sessions
7. User can view a session from any site if the user has `electrophysiology_browser_view_allsites` permissions. User can see only own-site session if the user has permission `electrophysiology_browser_view_site`. [Automated Testing]
8. User can view only own-project sessions if they have either `electrophysiology_browser_view_site` or `electrophysiology_browser_view_allsites` permissions. [Automated Testing]
9. Sidebar: Navigation links work. [Automated Testing]
10. Data table display: information displayed looks decently laid out, not garbled.
-11. Click each "Download" button (there should be 6). Check: Does the download button work? Does the file that is downloaded have greater than 0kb size? Is a different file downloaded by each button?
- * Check that if a session does not have annotation files, the `Annotations` download button is not clickable
- * Check that if the session has annotation files, the `Annotations` download button is clickable and downloads the proper files
+11. Click each "Download" button (there should be 5). Check: Does the download button work? Does the file that is downloaded have greater than 0kb size? Is a different file downloaded by each button?
+ * Check that if a session does not have event files, the `Events` download button is not clickable
+ * Check that if the session has event files, the `Events` download button is clickable and downloads the proper files
12. Test Breadcrumb link back to Electrophysiology Browser. [Automated Testing]
+13. Test that if changes have been made to the session's events, the downloaded event files are correctly updated to match [Manual Testing]
-### C. Visualization
-
-13. Follow the [module README extra installation steps](../README.md#installation-requirements-to-use-the-visualization-features)
-and make sure the `Signal Viewer panel` displays correctly on the screen. (Documentation: see [react-series-data-viewer README](../jsx/react-series-data-viewer/README.md#user-manual))
-14. Delete `modules/electrophysiology_browser/jsx/react-series-data-viewer/src/protocol-buffers/chunk_pb.js` and set `useEEGBrowserVisualizationComponents` to false to simulate an environment for which the extra installation steps
-have not been run yet.
-Make sure `make dev` runs without failing, and that except the Signal Viewer panel, all the other components in the page display well.
-15. Temporarily deactivate an entry in `physiological_parameter_file`
-for a ParameterTypeID IN (SELECT ParameterTypeID from parameter_type WHERE Name = 'electrophysiology_chunked_dataset_path')
-and a chosen PhysiologicalFileID to simulate an environment for which the visualization components are not loaded.
-Load the corresponding session page and make sure that except the `Signal Viewer panel`, the rest of the page displays well, either with or without the extra installation steps.
-16. Test all the buttons on the interface to ensure they perform the action that the [react-series-data-viewer README](../jsx/react-series-data-viewer/README.md#Signal Viewer) states it will perform.
-17. Hover over a signal to ensure it responds to being hovered. It should change to a color and its value should be displayed below the signal plot.
-18. Ensure that 'Stacked View' and 'Isolate Mode' behave as stateed in the [react-series-data-viewer README](../jsx/react-series-data-viewer/README.md).
-19. Ensure that the electrodes on the 'Electrode Map' 2D view are visible and their index can be hovered to reveal their channel name.
-20. Ensure that the electrodes on the 'Electrode Map' 3D view are visible and the mesh can be manipulated/rotated with the mouse.
+### C. Visualization
+14. Follow the [module README extra installation steps](../README.md#installation-requirements-to-use-the-visualization-features)
+ and make sure the `Signal Viewer panel` displays correctly on the screen. (Documentation: see [react-series-data-viewer README](../jsx/react-series-data-viewer/README.md#user-manual))
+15. Delete `modules/electrophysiology_browser/jsx/react-series-data-viewer/src/protocol-buffers/chunk_pb.js` and set `useEEGBrowserVisualizationComponents` to false to simulate an environment for which the extra installation steps
+ have not been run yet.
+ Make sure `make dev` runs without failing, and that except the Signal Viewer panel, all the other components in the page display well.
+16. Temporarily deactivate an entry in `physiological_parameter_file`
+ for a ParameterTypeID IN (SELECT ParameterTypeID from parameter_type WHERE Name = 'electrophysiology_chunked_dataset_path')
+ and a chosen PhysiologicalFileID to simulate an environment for which the visualization components are not loaded.
+ Load the corresponding session page and make sure that except the Signal Viewer panel, the rest of the page displays well, either with or without the extra installation steps.
+17. Make sure the 'Show Event Panel' opens the 'Event Panel' and it can be closed both via its close button and the 'Hide Event Panel' button.
+18. Make sure the text fields can not be modified (support planned in future) .
+19. Make sure HED tags belonging to an individual event can be added and deleted from that individual event. The selectable tags should only be SCORE 'Artifact's.
+20. Make sure the 'Dataset Tag Viewer' can be opened with the 'Open Dataset Tag Viewer' button and the selectable fields are properly populated.
+21. Test all the buttons on the interface to ensure they perform the action that the [react-series-data-viewer README](../jsx/react-series-data-viewer/README.md#Signal Viewer) states it will perform.
+22. Hover over a signal to ensure it responds to being hovered. It should change to a color and its value should be displayed below the signal plot.
+23. Ensure that 'Stacked View' and 'Isolate Mode' behave as stateed in the [react-series-data-viewer README](../jsx/react-series-data-viewer/README.md).
+24. Ensure that the electrodes on the 'Electrode Map' 2D view are visible and their index can be hovered to reveal their channel name.
+25. Ensure that the electrodes on the 'Electrode Map' 3D view are visible and the mesh can be manipulated/rotated with the mouse.
-_For extra credit: Verify LORIS Menu permissions_
+_For extra credit: Verify LORIS Menu permissions_
User can view the top-level LORIS Menu _Electrophysiology_ and Menu item : _Electrophysiology Browser_ if and only if user has either permission:
- * `electrophysiology_browser_view_site` : _"View all-sites Electrophysiology Browser pages"_
- * `electrophysiology_browser_view_allsites` : _"View own site Electrophysiology Browser pages"_
+* `electrophysiology_browser_view_site` : _"View all-sites Electrophysiology Browser pages"_
+* `electrophysiology_browser_view_allsites` : _"View own site Electrophysiology Browser pages"_
diff --git a/modules/electrophysiology_uploader/jsx/UploadViewer.js b/modules/electrophysiology_uploader/jsx/UploadViewer.js
index a1000eeae5e..0fc1bdf2c00 100644
--- a/modules/electrophysiology_uploader/jsx/UploadViewer.js
+++ b/modules/electrophysiology_uploader/jsx/UploadViewer.js
@@ -53,10 +53,19 @@ export default function UploadViewer(props) {
{
label: 'PSCID',
show: true,
+ filter: {
+ name: 'pscid',
+ type: 'text',
+ },
},
{
label: 'Visit',
show: true,
+ filter: {
+ name: 'visitLabel',
+ type: 'select',
+ options: props.fieldOptions.visitLabel,
+ },
},
{
label: 'Upload Location',
diff --git a/modules/electrophysiology_uploader/php/electrophysiology_uploader.class.inc b/modules/electrophysiology_uploader/php/electrophysiology_uploader.class.inc
index 321867fc60d..880e83c6b77 100644
--- a/modules/electrophysiology_uploader/php/electrophysiology_uploader.class.inc
+++ b/modules/electrophysiology_uploader/php/electrophysiology_uploader.class.inc
@@ -77,7 +77,8 @@ class Electrophysiology_Uploader extends \DataFrameworkMenu
}
return [
- 'sites' => $site_options
+ 'sites' => $site_options,
+ 'visitLabel' => \Utility::getVisitList(),
];
}
diff --git a/modules/examiner/jsx/examinerIndex.js b/modules/examiner/jsx/examinerIndex.js
index bfba2b300d7..8a916f225c5 100644
--- a/modules/examiner/jsx/examinerIndex.js
+++ b/modules/examiner/jsx/examinerIndex.js
@@ -123,8 +123,8 @@ class ExaminerIndex extends Component {
}
});
} else {
- resp.text().then((message) => {
- swal.fire('Error!', message, 'error');
+ resp.json().then((message) => {
+ swal.fire('Error!', message.error, 'error');
});
}
})
diff --git a/modules/imaging_browser/php/viewsession.class.inc b/modules/imaging_browser/php/viewsession.class.inc
index 8c80fe49590..f1a2c9f7686 100644
--- a/modules/imaging_browser/php/viewsession.class.inc
+++ b/modules/imaging_browser/php/viewsession.class.inc
@@ -119,17 +119,6 @@ class ViewSession extends \NDB_Form
$this->tpl_data['showFloatJIV'] = true;
- $file = $this->_DB->pselectOne(
- "SELECT File FROM files f
- JOIN session s
- ON (s.ID=f.SessionID)
- WHERE s.ID=:sid AND FileType='obj'",
- ['sid' => $this->sessionID]
- );
- if (!empty($file)) {
- $this->tpl_data['show3DViewer'] = true;
- }
-
$this->tpl_data['status_options'] = [
'' => ' ',
'Pass' => 'Pass',
diff --git a/modules/imaging_browser/templates/form_viewSession.tpl b/modules/imaging_browser/templates/form_viewSession.tpl
index a8a40f2557f..6378c94c440 100644
--- a/modules/imaging_browser/templates/form_viewSession.tpl
+++ b/modules/imaging_browser/templates/form_viewSession.tpl
@@ -1,9 +1,4 @@
-{if $show3DViewer|default}
-{*the first opening td already opened in main.tpl *}
-
-
-{/if}
{$headerTable}
diff --git a/modules/imaging_qc/test/TestPlan.md b/modules/imaging_qc/test/TestPlan.md
index 08201adb608..369f0260804 100644
--- a/modules/imaging_qc/test/TestPlan.md
+++ b/modules/imaging_qc/test/TestPlan.md
@@ -1,6 +1,6 @@
# Imaging Quality Control - Test Plan
1. Access Imaging Quality Control page, ensure that it renders.
-2. Make sure this module can be viewed if and only if the user has “Quality Control access” permission.
+2. Make sure this module can be viewed if and only if the user has “Imaging Quality Control: View Flagged Imaging Entries” (DB name: imaging_quality_control_view) permission.
3. Change maximum rows per page. Ensure that the number of rows displayed changes correspondingly each time.
4. Navigate through pages by selecting the page numbers at the top right of the result section and the bottom right of the result section.
5. Navigate from first to last page & vice versa using the double arrows at the top right of the result section and the bottom right of the result section.
@@ -11,3 +11,12 @@
10. Select several filters to reduce the size of the imaging data set, and then select clear filters. Make sure that it returns to the full data set and that each filter is cleared.
11. Click on the column header to make sure that the rows re-organize to be ordered by the selected column. Click the same one again to make sure that it now organizes in reverse order. Try this with each of the columns.
12. For one or two candidates, verify that the results are accurate for key columns (`Scan type`, `Scan Done in MRI PF`, `Tarchive`, `Scan Location`, `QC Status`, `Selected`).
+13. Find a scan for which the value of `Scan Done in MRI PF` is set to `Yes`. Click on the link. Make sure it leads to the appropriate MRI parameter form if and only if the user has permission `data_entry`: if not, the system should display `You do not have access to this page`.
+14. Find a scan for which the value of `Tarchive` is not `Missing`. Click on the link. Make sure it leads to the appropriate DICOM archive page if and only if the user has permission `dicom_archive_view_allsites`: if not, the system should display `You do not have access to this page`.
+15. Find a scan for which the value of `Scan Location` is not `Missing`. Click on the link. Make sure it leads to the appropriate imaging browser page if and only if the user has the appropriate permissions:
+ * User can access Imaging Browser module front page if and only if they have permission `imaging_browser_view_site`, `imaging_browser_view_allsites`, `imaging_browser_phantom_allsites` or `imaging_browser_phantom_ownsite`.
+ * User can see own site and other sites Imaging datasets if and only if has permission `imaging_browser_view_allsites`.
+ * User can see only own site Imaging datasets if and only if has permission `imaging_browser_view_site`.
+ * User can see phantom data only from across all sites with the `imaging_browser_phantom_allsites`, and from own sites with `imaging_browser_phantom_ownsite`.
+
+ If the user does not have the appropriate permission to view the scan, the system should display `You do not have access to this page`.
diff --git a/modules/imaging_uploader/jsx/ImagingUploader.js b/modules/imaging_uploader/jsx/ImagingUploader.js
index 11f103d0124..00264b46ace 100644
--- a/modules/imaging_uploader/jsx/ImagingUploader.js
+++ b/modules/imaging_uploader/jsx/ImagingUploader.js
@@ -7,6 +7,7 @@ import Loader from 'Loader';
import LogPanel from './LogPanel';
import UploadForm from './UploadForm';
import {TextboxElement, SelectElement, ButtonElement} from 'jsx/Form';
+import StaticDataTable from 'jsx/StaticDataTable';
/**
* Imaging uploader component
diff --git a/modules/instrument_builder/jsx/react.questions.js b/modules/instrument_builder/jsx/react.questions.js
index 39520ed1e74..b2f5ae82b0b 100644
--- a/modules/instrument_builder/jsx/react.questions.js
+++ b/modules/instrument_builder/jsx/react.questions.js
@@ -14,6 +14,7 @@ import PropTypes from 'prop-types';
import {
SelectElement,
DateElement,
+ TextboxElement,
TextareaElement,
TextElement,
NumericElement,
diff --git a/modules/instrument_list/templates/instrument_list_controlpanel.tpl b/modules/instrument_list/templates/instrument_list_controlpanel.tpl
index aa76f55fd48..b10050bde74 100644
--- a/modules/instrument_list/templates/instrument_list_controlpanel.tpl
+++ b/modules/instrument_list/templates/instrument_list_controlpanel.tpl
@@ -21,7 +21,7 @@
{$status[item].label}
@@ -40,7 +40,12 @@
{if $send_to_dcc.set_submitted=='Check'}
{$send_to_dcc.reverse|default:"Send To DCC"}
{else}
- {$send_to_dcc.reverse|default:"Send To DCC"}
+
+ {$send_to_dcc.reverse|default:"Send To DCC"}
+
{/if}
{else}
Send To DCC
@@ -100,16 +105,15 @@
\ No newline at end of file
diff --git a/modules/instrument_manager/jsx/uploadForm.js b/modules/instrument_manager/jsx/uploadForm.js
index e83d11fa4c0..a0ba79ae257 100644
--- a/modules/instrument_manager/jsx/uploadForm.js
+++ b/modules/instrument_manager/jsx/uploadForm.js
@@ -1,6 +1,7 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import swal from 'sweetalert2';
+import {FileElement} from 'jsx/Form';
/**
* Instrument Upload Form component
diff --git a/modules/issue_tracker/php/edit.class.inc b/modules/issue_tracker/php/edit.class.inc
index aaf2fe64958..78e6d6a9d53 100644
--- a/modules/issue_tracker/php/edit.class.inc
+++ b/modules/issue_tracker/php/edit.class.inc
@@ -209,13 +209,30 @@ class Edit extends \NDB_Page implements ETagCalculator
]
);
+ // Extract userID from issue description.
+ // Without doing that, "user fullname (userid)" is used instead.
+ $issueAssigneeUserID = null;
+ if (!is_null($issueData['assignee'])
+ && !empty($issueData['assignee'])
+ ) {
+ $parPos = strpos($issueData['assignee'], '(');
+ if ($parPos !== false) {
+ $issueAssigneeUserID = substr(
+ $issueData['assignee'],
+ $parPos+1,
+ -1
+ );
+ }
+ }
// Add current assignee in assignees dropdown even if not active
- if (!isset($assignees[$issueData['assignee']])) {
- $assignees[$issueData['assignee']] = $db->pselectOne(
+ if (isset($issueAssigneeUserID)
+ && !isset($assignees[$issueAssigneeUserID])
+ ) {
+ $assignees[$issueAssigneeUserID] = $db->pselectOne(
"SELECT Real_name FROM users
WHERE UserID=:userID",
[
- 'userID' => $issueData['assignee']
+ 'userID' => $issueAssigneeUserID
]
);
}
@@ -527,7 +544,11 @@ class Edit extends \NDB_Page implements ETagCalculator
);
if (!empty($issueID)) {
- $db->unsafeUpdate('issues', $issueValues, ['issueID' => $issueID]);
+ try {
+ $db->unsafeUpdate('issues', $issueValues, ['issueID' => $issueID]);
+ } catch (\Exception $ex) {
+ return new \LORIS\Http\Response\JSON\InternalServerError();
+ }
} else {
$issueValues['reporter'] = $user->getUsername();
$issueValues['dateCreated'] = date('Y-m-d H:i:s');
diff --git a/modules/login/jsx/passwordExpiry.js b/modules/login/jsx/passwordExpiry.js
index 4c553bfd823..3372449d5a2 100644
--- a/modules/login/jsx/passwordExpiry.js
+++ b/modules/login/jsx/passwordExpiry.js
@@ -2,6 +2,7 @@ import React, {Component} from 'react';
import PropTypes from 'prop-types';
import Panel from 'Panel';
import {
+ StaticElement,
FormElement,
PasswordElement,
ButtonElement,
diff --git a/modules/media/jsx/editForm.js b/modules/media/jsx/editForm.js
index 579bc9d15db..eed8053a294 100644
--- a/modules/media/jsx/editForm.js
+++ b/modules/media/jsx/editForm.js
@@ -12,7 +12,15 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import swal from 'sweetalert2';
-
+import {
+ FormElement,
+ TextboxElement,
+ TextareaElement,
+ SelectElement,
+ DateElement,
+ FileElement,
+ ButtonElement,
+} from 'jsx/Form';
/**
* Media Edit Form component
*/
diff --git a/modules/media/php/mediafile.class.inc b/modules/media/php/mediafile.class.inc
index 462fce8950b..d6bb267e517 100644
--- a/modules/media/php/mediafile.class.inc
+++ b/modules/media/php/mediafile.class.inc
@@ -82,6 +82,9 @@ class MediaFile implements \LORIS\Data\DataInstance,
*/
public function getHideFile(): int
{
- return $this->DBRow['hideFile'];
+ if ($this->DBRow['hideFile'] == 'hidden') {
+ return 1;
+ }
+ return 0;
}
}
diff --git a/modules/mri_violations/README.md b/modules/mri_violations/README.md
index a38ed872ee5..aaa0b1dff6b 100644
--- a/modules/mri_violations/README.md
+++ b/modules/mri_violations/README.md
@@ -80,5 +80,5 @@ the problem "Could not identify scan type"
## Dashboard Widget
-The total `Violated scans` will be shown inside the Dashboard widget, named "My Tasks"
-with a link pointing to the mri_violations module.
+The total number of unresolved `Violated scans` will be shown inside the Dashboard widget, named "My Tasks"
+with a link pointing to the mri_violations module with the Resolution Status filter set to "Unresolved".
diff --git a/modules/mri_violations/test/TestPlan.md b/modules/mri_violations/test/TestPlan.md
index a20687b9d49..8534bb391a8 100644
--- a/modules/mri_violations/test/TestPlan.md
+++ b/modules/mri_violations/test/TestPlan.md
@@ -13,28 +13,31 @@
with details of why the scan failed.
3. The `Problem` column with the entry `Could not identify scan type` should
display a popup with details of why the scan type could not be identified.
-4. Go back to the MRI violations menu filter page and resolve issues with each of the
+4. The `Image File` column should have a link to
+ the correct violated scan in the Brainbrowser module. Check that this link
+ works and takes you to the Brainbrowser module.
+5. Go back to the MRI violations menu filter page and resolve issues with each of the
different types of resolutions. Once the page is refreshed, ensure the proper
resolution was set in column `Resolution Status`.
-5. Click on the question mark on the right upper side of the windows and ensure
+6. Click on the question mark on the right upper side of the windows and ensure
that the help content about MRI Violation is showing up and is up-to-date.
-6. Ensure user has access to this page if and only if he/she has either permission
+7. Ensure user has access to this page if and only if he/she has either permission
`mri_violations_view_allsite` or `mri_violations_view_ownsite`.
-7. Check that if the user only has the permission `mri_violations_view_ownsite`, he/she
+8. Check that if the user only has the permission `mri_violations_view_ownsite`, he/she
is not allowed to see the violations associated to sites other than his/her
own.
-8. Check that the violations for which the site is unknown can always be seen
+9. Check that the violations for which the site is unknown can always be seen
no matter what permission the user has (violated_scans_view_allsite or
violated_scans_view_ownsite).
### Dashboard Widget - "My Tasks" for Violated scans
1. Ensure the total of Violated scans corresponds with the correct
- number of rows inside the MRI Violations module.
+ number of rows inside the MRI Violations module where the Resolution Status is Unresolved.
2. Verify that either `violated_scans_view_allsites` or `violated_scans_view_ownsites` permissions
are necessary for the user to view the widget.
3. Click on the total number of Violated Scans and check if redirection
- to the MRI Violation module succeeds.
+ to the MRI Violation module succeeds. The MRI Violations page should have the Resolution Status filter preset to "Unresolved".
## Functionality tested by automated testing
1. Ensure that the module loads only when a user has appropriate permissions.
diff --git a/modules/new_profile/jsx/NewProfileIndex.js b/modules/new_profile/jsx/NewProfileIndex.js
index cdcdfe58e67..4faf94a1245 100644
--- a/modules/new_profile/jsx/NewProfileIndex.js
+++ b/modules/new_profile/jsx/NewProfileIndex.js
@@ -140,14 +140,12 @@ class NewProfileIndex extends React.Component {
cancelButtonColor: '#3085d6',
cancelButtonText: 'Recruit another candidate',
}).then((result) => {
- if (result.value === true) {
- window.location.href = '/' + data.CandID;
- } else {
- this.setState({
- formData: {},
- submitDisabled: false,
- });
- }
+ // Go to the candidate profile or reload the page, depending
+ // on whether the user clicked on 'Access Profile' or
+ // 'Recruit another candidate' respectively
+ window.location.href = result.value === true
+ ? '/' + data.CandID
+ : window.location.href;
});
} )
.catch((error) => {
diff --git a/modules/new_profile/test/TestPlan.md b/modules/new_profile/test/TestPlan.md
index c4315697ea4..44928da3738 100644
--- a/modules/new_profile/test/TestPlan.md
+++ b/modules/new_profile/test/TestPlan.md
@@ -6,7 +6,9 @@
[Manual Testing]
3. Ensure that you get an error if dates don't match (both DoB and EDC).
[Automation Testing]
-4. Ensure that you get an error if any field is missing.
+4. Ensure that you get an error if any field is missing and you have config setting
+useEDC turned off. If you have useEDC turned on, ensure all fields are required,
+except the DoB, which is optional in that case.
[Manual Testing]
5. Ensure that when the logged-in user has only 1 site affiliation, the site
dropdown shows only one site and it is already selected.
@@ -23,10 +25,11 @@ get an error if an invalid PSCID entered (and not if a valid PSCID is entered).
[Automation Testing]
9. Go to the Configuration module and change the "Minimum candidate age" value,
ensure that "Date of Birth" and "Date of Birth Confirm" fields
-properly reflects the changes. If no value is entered, this two fields should
+properly reflects the changes. Note that the minimum and maximum possible birth years are calculated based on 'StartYear' and 'EndYear' rather than the current date, so it is possible to create a candidate with an age which is *currently* outside of the specified range. For context, check the setup() function in the new profile php class. If no value is entered, this two fields should
have the current day as the maximum possible value to choose.
[Manual Testing]
10. Change date format from 'YMd' to 'YM' in the Configuration module
and repeat steps 4 to 6 while asserting that database values being
saved are correct.
+11. As a user with only one site affiliation, fill the form with valid values and create a new user. When the popup indicating that the creation succeeded is displayed, click on 'Recruit another candidate'. Ensure that when the page reloads, the user's (unique) site is selected.
[Manual Testing]
diff --git a/modules/publication/jsx/projectFields.js b/modules/publication/jsx/projectFields.js
index f7ed8569418..2f99ce20dc6 100644
--- a/modules/publication/jsx/projectFields.js
+++ b/modules/publication/jsx/projectFields.js
@@ -163,8 +163,8 @@ class ProjectFormFields extends React.Component {
showCancelButton: true,
confirmButtonText: 'Yes, I am sure!',
cancelButtonText: 'No, cancel it!',
- }).then(function(willDelete) {
- if (willDelete) {
+ }).then((result) => {
+ if (result.value) {
let url = loris.BaseURL
+ '/publication/ajax/FileDelete.php?uploadID='
+ uploadID;
diff --git a/modules/publication/jsx/publicationIndex.js b/modules/publication/jsx/publicationIndex.js
index f81c66720ef..e99564a460b 100644
--- a/modules/publication/jsx/publicationIndex.js
+++ b/modules/publication/jsx/publicationIndex.js
@@ -5,6 +5,7 @@ import {createRoot} from 'react-dom/client';
import React from 'react';
import PropTypes from 'prop-types';
import {ButtonElement} from 'jsx/Form';
+import StaticDataTable from 'jsx/StaticDataTable';
/**
* Publication index component
diff --git a/modules/statistics/php/statistics_site.class.inc b/modules/statistics/php/statistics_site.class.inc
index 80385063abd..d2f2f505432 100644
--- a/modules/statistics/php/statistics_site.class.inc
+++ b/modules/statistics/php/statistics_site.class.inc
@@ -98,9 +98,9 @@ class Statistics_Site extends \NDB_Menu
{
//SITES
-
- $factory = \NDB_Factory::singleton();
- $user = $factory->user();
+ $projectID = new \ProjectID(strval($projectID));
+ $factory = \NDB_Factory::singleton();
+ $user = $factory->user();
if (!empty($centerID) && $user->hasCenter($centerID)) {
$this->query_criteria .= " AND s.CenterID =:cid ";
diff --git a/modules/statistics/templates/form_stats_MRI.tpl b/modules/statistics/templates/form_stats_MRI.tpl
index 2e75a21f267..917a7e83243 100644
--- a/modules/statistics/templates/form_stats_MRI.tpl
+++ b/modules/statistics/templates/form_stats_MRI.tpl
@@ -9,8 +9,8 @@
- Select All
- {html_checkboxes id="MRIScans" options=$scan_types name="MRIScans" selected=$Scans_sel_box class="timesheet-daily-checkbox"}
+ Select All
+ {html_checkboxes id="MRIScans" options=$scan_types name="MRIScans" selected=$Scans_sel_box class="timesheet-daily-checkbox" style="margin: 4px 0 4px;"}
{*All Scan Types
{foreach item=scan key=scanid from=$scan_types}
{$scan}
diff --git a/npm-postinstall.js b/npm-postinstall.js
index 7c561ed1618..b4eaba4eaf2 100644
--- a/npm-postinstall.js
+++ b/npm-postinstall.js
@@ -88,7 +88,7 @@ getConfig.stdout.on('data', (data) => {
);
}
- if (EEGVisEnabled === 'true') {
+ if (EEGVisEnabled === 'true' || EEGVisEnabled === '1') {
console.info('\n ----- \n >> '
+ 'EEG Browser visualization components enabled '
+ '\n -----'
diff --git a/php/installer/Installer.class.inc b/php/installer/Installer.class.inc
index dd686d0e411..3df7ac734ef 100644
--- a/php/installer/Installer.class.inc
+++ b/php/installer/Installer.class.inc
@@ -424,22 +424,22 @@ class Installer
// new user, since the new user is also going to be used from
// the same web server so should have the same address.
$connectHost = $DB->PDO->query(
- "SELECT host FROM `mysql`.`user`
- WHERE CONCAT(user, '@', host)=CURRENT_USER"
+ "SELECT Host FROM mysql.user
+ WHERE CONCAT(User, '@', Host)=CURRENT_USER"
)->fetch(\PDO::FETCH_ASSOC);
- if (!is_array($connectHost) || empty($connectHost['host'])) {
+ if (!is_array($connectHost) || empty($connectHost['Host'])) {
// This should never happen. It would mean that the user
// that we ran the query from isn't connected..
$this->_lastErr = "Could not retrieve hostname for MySQL user";
return false;
}
- $connectHost = $connectHost['host'];
+ $connectHost = $connectHost['Host'];
$userExistsQ = $DB->prepare(
"SELECT 'x' FROM mysql.user
- WHERE user=:q_user AND host=:q_host"
+ WHERE User=:q_user AND Host=:q_host"
);
$userExistsQ->execute(
[
diff --git a/php/libraries/NDB_BVL_Instrument_LINST.class.inc b/php/libraries/NDB_BVL_Instrument_LINST.class.inc
index fb78107ae7d..b09130339f1 100644
--- a/php/libraries/NDB_BVL_Instrument_LINST.class.inc
+++ b/php/libraries/NDB_BVL_Instrument_LINST.class.inc
@@ -390,7 +390,8 @@ class NDB_BVL_Instrument_LINST extends \NDB_BVL_Instrument
'Delimiter' => $this->_GUIDelimiter,
];
- while (($line = fgets($fp, 4096)) !== false) {
+ // Buffer = 128KB
+ while (($line = fgets($fp, 131072)) !== false) {
$pieces = preg_split("/{@}/", $line);
$this->LinstLines[] = $pieces;
diff --git a/php/libraries/NDB_Client.class.inc b/php/libraries/NDB_Client.class.inc
index 773564b2475..ab85d27da01 100644
--- a/php/libraries/NDB_Client.class.inc
+++ b/php/libraries/NDB_Client.class.inc
@@ -126,7 +126,7 @@ class NDB_Client
. "default-src 'self' 'unsafe-inline'; "
. "script-src 'self' 'unsafe-inline' 'unsafe-eval' $CaptchaDomains; "
. "font-src 'self' data:; "
- . "img-src 'self' data:; "
+ . "img-src 'self' https://images.loris.ca data:; "
. "frame-ancestors 'none'; "
. "form-action 'self'; "
. $config_additions
diff --git a/php/libraries/User.class.inc b/php/libraries/User.class.inc
index 46a5a3dba8b..a477d7d674d 100644
--- a/php/libraries/User.class.inc
+++ b/php/libraries/User.class.inc
@@ -351,6 +351,37 @@ class User extends UserPermissions implements
return $site_list;
}
+ /**
+ * Returns all user's sites
+ *
+ * @return array
+ */
+ function getSites(): array
+ {
+ return array_map(
+ function ($centerID) {
+ return \Site::singleton($centerID);
+ },
+ $this->getCenterIDs()
+ );
+ }
+
+ /**
+ * Returns all user's sites in associative
+ * array (CenterID => CenterName)
+ *
+ * @return array
+ */
+ function getSiteNamesList(): array
+ {
+ $sites = [];
+ foreach ($this->getSites() as $site) {
+ $sites[$site->getCenterID()->__toString()] = $site->getCenterName();
+ }
+ return $sites;
+ }
+
+
/**
* Returns all user's sites that are StudySites
*
diff --git a/raisinbread/RB_files/RB_ConfigSettings.sql b/raisinbread/RB_files/RB_ConfigSettings.sql
index e63ab65f799..06f11cabd06 100644
--- a/raisinbread/RB_files/RB_ConfigSettings.sql
+++ b/raisinbread/RB_files/RB_ConfigSettings.sql
@@ -29,14 +29,15 @@ INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMult
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (28,'base','The base filesystem path where LORIS is installed',1,0,'web_path',26,'Base',1);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (33,'log','Path to logs (relative path starting from /var/www/$projectname)',1,0,'path',26,'Logs',2);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (34,'IncomingPath','Path for imaging data transferred to the project server (e.g. /data/incoming/$project/)',1,0,'web_path',26,'Incoming data',7);
-INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (35,'MRICodePath','Path to directory where Loris-MRI (git) code is installed',1,0,'path',26,'LORIS-MRI code',6);
-INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (36,'MRIUploadIncomingPath','Path to the upload directory for incoming MRI studies',1,0,'web_path',26,'MRI Incoming Directory',7);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (35,'MRICodePath','Path to directory where Loris-MRI (git) code is installed',1,0,'path',69,'LORIS-MRI code',6);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (36,'MRIUploadIncomingPath','Path to the upload directory for incoming MRI studies',1,0,'web_path',69,'MRI Incoming Directory',7);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (37,'GenomicDataPath','Path to Genomic data files',1,0,'web_path',26,'Genomic Data Path',8);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (38,'mediaPath','Path to uploaded media files',1,0,'web_path',26,'Media',9);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (39,'gui','Settings related to the overall display of LORIS',1,0,NULL,NULL,'GUI',3);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (42,'StudyDescription','Description of the Study',1,0,'textarea',39,'Study Description',2);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (43,'www','Web address settings',1,0,NULL,NULL,'WWW',4);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (44,'host','Host',1,0,'text',43,'Host',1);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (45,'eeg_pipeline','EEG Pipeline settings',1,0,NULL,NULL,'EEG Pipeline',15);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (46,'mantis_url','Bug tracker URL',0,0,'text',43,'Bug tracker URL',3);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (47,'dashboard','Settings that affect the appearance of the dashboard and its charts',1,0,NULL,NULL,'Dashboard',5);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (48,'projectDescription','Description of the study displayed in main dashboard panel',1,0,'textarea',47,'Project Description',1);
@@ -60,7 +61,7 @@ INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMult
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (66,'JWTKey','Secret key for signing JWT tokens on this server. This should be unique and never shared with anyone. ',1,0,'text',65,'JWT Secret Key',1);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (67,'reCAPTCHAPrivate','Private Key for Google reCAPTCHA',1,0,'text',65,'reCAPTCHA Private Key',2);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (68,'reCAPTCHAPublic','Public Key for Google reCaptcha',1,0,'text',65,'reCAPTCHA Public Key',3);
-INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (69,'imaging_pipeline','Imaging Pipeline settings',1,0,NULL,NULL,'Imaging Pipeline',12);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (69,'imaging_pipeline','Imaging Pipeline settings',1,0,NULL,NULL,'Imaging Pipeline',14);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (70,'dataDirBasepath','Base Path to the data directory of Loris-MRI',1,0,'web_path',69,'Loris-MRI Data Directory',1);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (71,'prefix','Study prefix or study name',1,0,'text',69,'Study Name',2);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (72,'mail_user','User to be notified during imaging pipeline execution',1,0,'text',69,'User to notify when executing the pipeline',3);
@@ -91,7 +92,7 @@ INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMult
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (98,'publication_deletions','Path to deleted publications',1,0,'web_path',26,'Deleted Publications',11);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (99,'usePwnedPasswordsAPI','Whether to query the Have I Been Pwned password API on password changes to prevent the usage of common and breached passwords',1,0,'boolean',1,'Enable \"Pwned Password\" check',22);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (100,'EnvironmentFile','Name of the environment file that need to be sourced for the imaging pipeline',1,0,'text',69,'Name of the environment file',24);
-INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (101,'MINCToolsPath','Path to the MINC tools',1,0,'web_path',26,'Path to the MINC tools',12);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (101,'MINCToolsPath','Path to the MINC tools',1,0,'web_path',69,'Path to the MINC tools',12);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (102,'documentRepositoryPath','Path to uploaded document repository files',1,0,'text',26,'Document Repository Upload Path',13);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (103,'dataReleasePath','Path to uploaded data release files',1,0,'text',26,'Data Release Upload Path',14);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (104,'dodFormat','Format of the Date of Death',1,0,'date_format',1,'DOD Format',10);
@@ -112,12 +113,15 @@ INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMult
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (122,'AWS_S3_Endpoint','Endpoint to use for accessing files stored in S3. Endpoint or region are required for S3 support.',1,0,'text',121,'AWS S3 Endpoint',3);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (123,'AWS_S3_Region','AWS Region to use for accessing files stored in S3. Endpoint or region are required for S3 support.',1,0,'text',121,'AWS S3 Region',3);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (124,'AWS_S3_Default_Bucket','Default bucket for LORIS to use for accessing files in S3.',1,0,'text',121,'AWS S3 Default Bucket',3);
-INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (125,'useEEGBrowserVisualizationComponents','Whether to enable the visualization components on the EEG Browser module',1,0,'boolean',39,'Enable the EEG Browser components',4);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES
+(125,'useEEGBrowserVisualizationComponents','Whether to enable the visualization components on the EEG Browser module',1,0,'boolean',39,'Enable the EEG Browser components',4);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (126,'createVisit','Enable visit creation in the imaging pipeline',1,0,'boolean',69,'Enable visit creation',11);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (127,'default_project','Default project used when creating scan candidate or visit',1,0,'text',69,'Default project',12);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (128,'default_cohort','Default cohort used when creating scan visit',1,0,'text',69,'Default cohort',13);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (129,'UserMaximumDaysInactive','The maximum number of days since last login before making a user inactive.',1,0,'text',1,'Maximum Days Before Making User Inactive',30);
INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (130,'DownloadPath','Where files are downloaded',1,0,'text',26,'Downloads',4);
-INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (131,'EEGUploadIncomingPath','Path to the upload directory for incoming EEG studies',1,0,'text',26,'EEG Incoming Directory',15);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (131,'EEGUploadIncomingPath','Path to the upload directory for incoming EEG studies',1,0,'text',45,'EEG Incoming Directory',15);
+INSERT INTO `ConfigSettings` (`ID`, `Name`, `Description`, `Visible`, `AllowMultiple`, `DataType`, `Parent`, `Label`, `OrderNumber`) VALUES (132,'EEGS3DataPath','EEG S3 data path for assembly data',1,0,'text',45,'EEG S3 data path',15);
+
UNLOCK TABLES;
SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_bids_event_dataset_mapping.sql b/raisinbread/RB_files/RB_bids_event_dataset_mapping.sql
new file mode 100644
index 00000000000..196f5cb05ec
--- /dev/null
+++ b/raisinbread/RB_files/RB_bids_event_dataset_mapping.sql
@@ -0,0 +1,53 @@
+SET FOREIGN_KEY_CHECKS=0;
+TRUNCATE TABLE `bids_event_dataset_mapping`;
+LOCK TABLES `bids_event_dataset_mapping` WRITE;
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (1,1,'TrialType','boundary',682,NULL,'boundary event',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (2,1,'TrialType','boundary',6,NULL,'boundary event',0,1,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (3,1,'TrialType','checker-left',966,NULL,'checker board stimuli on left half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (4,1,'TrialType','checker-left',561,NULL,'checker board stimuli on left half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (5,1,'TrialType','checker-left',340,NULL,'checker board stimuli on left half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (6,1,'TrialType','checker-left',893,NULL,'checker board stimuli on left half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (7,1,'TrialType','checker-left',923,NULL,'checker board stimuli on left half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (8,1,'TrialType','checker-left',2,NULL,'checker board stimuli on left half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (9,1,'TrialType','checker-right',966,NULL,'checker board stimuli on right half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (10,1,'TrialType','checker-right',563,NULL,'checker board stimuli on right half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (11,1,'TrialType','checker-right',340,NULL,'checker board stimuli on right half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (12,1,'TrialType','checker-right',893,NULL,'checker board stimuli on right half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (13,1,'TrialType','checker-right',923,NULL,'checker board stimuli on right half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (14,1,'TrialType','checker-right',2,NULL,'checker board stimuli on right half',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (15,1,'TrialType','press-left',291,NULL,'participant pressed the left most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (16,1,'TrialType','press-left',122,NULL,'participant pressed the left most key',1,15,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (17,1,'TrialType','press-left',927,NULL,'participant pressed the left most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (18,1,'TrialType','press-left',460,NULL,'participant pressed the left most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (19,1,'TrialType','press-left',3,NULL,'participant pressed the left most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (20,1,'TrialType','press-right',291,NULL,'participant pressed the right most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (21,1,'TrialType','press-right',122,NULL,'participant pressed the right most key',1,20,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (22,1,'TrialType','press-right',927,NULL,'participant pressed the right most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (23,1,'TrialType','press-right',460,NULL,'participant pressed the right most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (24,1,'TrialType','press-right',3,NULL,'participant pressed the right most key',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (25,1,'TrialType','face-upright',565,NULL,'upright face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (26,1,'TrialType','face-upright',178,NULL,'upright face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (27,1,'TrialType','face-upright',340,NULL,'upright face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (28,1,'TrialType','face-upright',893,NULL,'upright face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (29,1,'TrialType','face-upright',923,NULL,'upright face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (30,1,'TrialType','face-upright',2,NULL,'upright face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (31,1,'TrialType','face-inverted',558,NULL,'inverted face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (32,1,'TrialType','face-inverted',564,NULL,'inverted face stimuli',1,31,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (33,1,'TrialType','face-inverted',178,NULL,'inverted face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (34,1,'TrialType','face-inverted',340,NULL,'inverted face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (35,1,'TrialType','face-inverted',893,NULL,'inverted face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (36,1,'TrialType','face-inverted',923,NULL,'inverted face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (37,1,'TrialType','face-inverted',2,NULL,'inverted face stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (38,1,'TrialType','house-upright',565,NULL,'upright house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (39,1,'TrialType','house-upright',340,NULL,'upright house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (40,1,'TrialType','house-upright',893,NULL,'upright house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (41,1,'TrialType','house-upright',923,NULL,'upright house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (42,1,'TrialType','house-upright',2,NULL,'upright house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (43,1,'TrialType','house-inverted',558,NULL,'inverted house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (44,1,'TrialType','house-inverted',564,NULL,'inverted house stimuli',1,43,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (45,1,'TrialType','house-inverted',340,NULL,'inverted house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (46,1,'TrialType','house-inverted',893,NULL,'inverted house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (47,1,'TrialType','house-inverted',923,NULL,'inverted house stimuli',0,NULL,0);
+INSERT INTO `bids_event_dataset_mapping` (`ID`, `ProjectID`, `PropertyName`, `PropertyValue`, `HEDTagID`, `TagValue`, `Description`, `HasPairing`, `PairRelID`, `AdditionalMembers`) VALUES (48,1,'TrialType','house-inverted',2,NULL,'inverted house stimuli',0,NULL,0);
+UNLOCK TABLES;
+SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_bids_event_file_mapping.sql b/raisinbread/RB_files/RB_bids_event_file_mapping.sql
new file mode 100644
index 00000000000..34cb2b996c7
--- /dev/null
+++ b/raisinbread/RB_files/RB_bids_event_file_mapping.sql
@@ -0,0 +1,5 @@
+SET FOREIGN_KEY_CHECKS=0;
+TRUNCATE TABLE `bids_event_file_mapping`;
+LOCK TABLES `bids_event_file_mapping` WRITE;
+UNLOCK TABLES;
+SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_hed_schema.sql b/raisinbread/RB_files/RB_hed_schema.sql
new file mode 100644
index 00000000000..442f9a71de0
--- /dev/null
+++ b/raisinbread/RB_files/RB_hed_schema.sql
@@ -0,0 +1,7 @@
+SET FOREIGN_KEY_CHECKS=0;
+TRUNCATE TABLE `hed_schema`;
+LOCK TABLES `hed_schema` WRITE;
+INSERT INTO `hed_schema` (`ID`, `Name`, `Version`, `Description`, `URL`) VALUES (1,'HED8.1.0','8.1.0','This schema includes an xsd and requires unit class, unit modifier, value class, schema attribute and property sections.\n\n','https://raw.githubusercontent.com/hed-standard/hed-schemas/main/standard_schema/hedxml/HED8.1.0.xml');
+INSERT INTO `hed_schema` (`ID`, `Name`, `Version`, `Description`, `URL`) VALUES (2,'HED_score_1.0.0','1.0.0','This schema is a Hierarchical Event Descriptors (HED) Library Schema implementation of Standardized Computer-based Organized Reporting of EEG (SCORE)[1,2] for describing events occurring during neuroimaging time series recordings.\nThe HED-SCORE library schema allows neurologists, neurophysiologists, and brain researchers to annotate electrophysiology recordings using terms from an internationally accepted set of defined terms (SCORE) compatible with the HED framework.\nThe resulting annotations are understandable to clinicians and directly usable in computer analysis.\nFuture extensions may be implemented in the HED-SCORE library schema.\nFor more information see https://hed-schema-library.readthedocs.io/en/latest/index.html.','https://raw.githubusercontent.com/hed-standard/hed-schemas/main/library_schemas/score/hedxml/HED_score_1.0.0.xml');
+UNLOCK TABLES;
+SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_hed_schema_nodes.sql b/raisinbread/RB_files/RB_hed_schema_nodes.sql
new file mode 100644
index 00000000000..e1450ad7572
--- /dev/null
+++ b/raisinbread/RB_files/RB_hed_schema_nodes.sql
@@ -0,0 +1,1628 @@
+SET FOREIGN_KEY_CHECKS=0;
+TRUNCATE TABLE `hed_schema_nodes`;
+LOCK TABLES `hed_schema_nodes` WRITE;
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1,NULL,1,'Event','Event','Something that happens at a given time and (typically) place. Elements of this tag subtree designate the general category in which an event falls.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (2,1,1,'Sensory-event','Event/Sensory-event','Something perceivable by the participant. An event meant to be an experimental stimulus should include the tag Task-property/Task-event-role/Experimental-stimulus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (3,1,1,'Agent-action','Event/Agent-action','Any action engaged in by an agent (see the Agent subtree for agent categories). A participant response to an experiment stimulus should include the tag Agent-property/Agent-task-role/Experiment-participant.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (4,1,1,'Data-feature','Event/Data-feature','An event marking the occurrence of a data feature such as an interictal spike or alpha burst that is often added post hoc to the data record.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (5,1,1,'Experiment-control','Event/Experiment-control','An event pertaining to the physical control of the experiment during its operation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (6,1,1,'Experiment-procedure','Event/Experiment-procedure','An event indicating an experimental procedure, as in performing a saliva swab during the experiment or administering a survey.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (7,1,1,'Experiment-structure','Event/Experiment-structure','An event specifying a change-point of the structure of experiment. This event is typically used to indicate a change in experimental conditions or tasks.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (8,1,1,'Measurement-event','Event/Measurement-event','A discrete measure returned by an instrument.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (9,NULL,1,'Agent','Agent','Someone or something that takes an active role or produces a specified effect.The role or effect may be implicit. Being alive or performing an activity such as a computation may qualify something to be an agent. An agent may also be something that simulates something else.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (10,9,1,'Animal-agent','Agent/Animal-agent','An agent that is an animal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (11,9,1,'Avatar-agent','Agent/Avatar-agent','An agent associated with an icon or avatar representing another agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (12,9,1,'Controller-agent','Agent/Controller-agent','An agent experiment control software or hardware.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (13,9,1,'Human-agent','Agent/Human-agent','A person who takes an active role or produces a specified effect.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (14,9,1,'Robotic-agent','Agent/Robotic-agent','An agent mechanical device capable of performing a variety of often complex tasks on command or by being programmed in advance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (15,9,1,'Software-agent','Agent/Software-agent','An agent computer program.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (16,NULL,1,'Action','Action','Do something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (17,16,1,'Communicate','Action/Communicate','Convey knowledge of or information about something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (18,17,1,'Communicate-gesturally','Action/Communicate/Communicate-gesturally','Communicate nonverbally using visible bodily actions, either in place of speech or together and in parallel with spoken words. Gestures include movement of the hands, face, or other parts of the body.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (19,18,1,'Clap-hands','Action/Communicate/Communicate-gesturally/Clap-hands','Strike the palms of against one another resoundingly, and usually repeatedly, especially to express approval.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (20,18,1,'Clear-throat','Action/Communicate/Communicate-gesturally/Clear-throat','Cough slightly so as to speak more clearly, attract attention, or to express hesitancy before saying something awkward.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (21,18,1,'Frown','Action/Communicate/Communicate-gesturally/Frown','Express disapproval, displeasure, or concentration, typically by turning down the corners of the mouth.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (22,18,1,'Grimace','Action/Communicate/Communicate-gesturally/Grimace','Make a twisted expression, typically expressing disgust, pain, or wry amusement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (23,18,1,'Nod-head','Action/Communicate/Communicate-gesturally/Nod-head','Tilt head in alternating up and down arcs along the sagittal plane. It is most commonly, but not universally, used to indicate agreement, acceptance, or acknowledgement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (24,18,1,'Pump-fist','Action/Communicate/Communicate-gesturally/Pump-fist','Raise with fist clenched in triumph or affirmation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (25,18,1,'Raise-eyebrows','Action/Communicate/Communicate-gesturally/Raise-eyebrows','Move eyebrows upward.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (26,18,1,'Shake-fist','Action/Communicate/Communicate-gesturally/Shake-fist','Clench hand into a fist and shake to demonstrate anger.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (27,18,1,'Shake-head','Action/Communicate/Communicate-gesturally/Shake-head','Turn head from side to side as a way of showing disagreement or refusal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (28,18,1,'Shhh','Action/Communicate/Communicate-gesturally/Shhh','Place finger over lips and possibly uttering the syllable shhh to indicate the need to be quiet.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (29,18,1,'Shrug','Action/Communicate/Communicate-gesturally/Shrug','Lift shoulders up towards head to indicate a lack of knowledge about a particular topic.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (30,18,1,'Smile','Action/Communicate/Communicate-gesturally/Smile','Form facial features into a pleased, kind, or amused expression, typically with the corners of the mouth turned up and the front teeth exposed.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (31,18,1,'Spread-hands','Action/Communicate/Communicate-gesturally/Spread-hands','Spread hands apart to indicate ignorance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (32,18,1,'Thumbs-down','Action/Communicate/Communicate-gesturally/Thumbs-down','Extend the thumb downward to indicate disapproval.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (33,18,1,'Thumb-up','Action/Communicate/Communicate-gesturally/Thumb-up','Extend the thumb upward to indicate approval.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (34,18,1,'Wave','Action/Communicate/Communicate-gesturally/Wave','Raise hand and move left and right, as a greeting or sign of departure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (35,18,1,'Widen-eyes','Action/Communicate/Communicate-gesturally/Widen-eyes','Open eyes and possibly with eyebrows lifted especially to express surprise or fear.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (36,18,1,'Wink','Action/Communicate/Communicate-gesturally/Wink','Close and open one eye quickly, typically to indicate that something is a joke or a secret or as a signal of affection or greeting.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (37,17,1,'Communicate-musically','Action/Communicate/Communicate-musically','Communicate using music.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (38,37,1,'Hum','Action/Communicate/Communicate-musically/Hum','Make a low, steady continuous sound like that of a bee. Sing with the lips closed and without uttering speech.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (39,37,1,'Play-instrument','Action/Communicate/Communicate-musically/Play-instrument','Make musical sounds using an instrument.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (40,37,1,'Sing','Action/Communicate/Communicate-musically/Sing','Produce musical tones by means of the voice.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (41,37,1,'Vocalize','Action/Communicate/Communicate-musically/Vocalize','Utter vocal sounds.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (42,37,1,'Whistle','Action/Communicate/Communicate-musically/Whistle','Produce a shrill clear sound by forcing breath out or air in through the puckered lips.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (43,17,1,'Communicate-vocally','Action/Communicate/Communicate-vocally','Communicate using mouth or vocal cords.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (44,43,1,'Cry','Action/Communicate/Communicate-vocally/Cry','Shed tears associated with emotions, usually sadness but also joy or frustration.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (45,43,1,'Groan','Action/Communicate/Communicate-vocally/Groan','Make a deep inarticulate sound in response to pain or despair.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (46,43,1,'Laugh','Action/Communicate/Communicate-vocally/Laugh','Make the spontaneous sounds and movements of the face and body that are the instinctive expressions of lively amusement and sometimes also of contempt or derision.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (47,43,1,'Scream','Action/Communicate/Communicate-vocally/Scream','Make loud, vociferous cries or yells to express pain, excitement, or fear.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (48,43,1,'Shout','Action/Communicate/Communicate-vocally/Shout','Say something very loudly.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (49,43,1,'Sigh','Action/Communicate/Communicate-vocally/Sigh','Emit a long, deep, audible breath expressing sadness, relief, tiredness, or a similar feeling.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (50,43,1,'Speak','Action/Communicate/Communicate-vocally/Speak','Communicate using spoken language.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (51,43,1,'Whisper','Action/Communicate/Communicate-vocally/Whisper','Speak very softly using breath without vocal cords.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (52,16,1,'Move','Action/Move','Move in a specified direction or manner. Change position or posture.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (53,52,1,'Breathe','Action/Move/Breathe','Inhale or exhale during respiration.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (54,53,1,'Blow','Action/Move/Breathe/Blow','Expel air through pursed lips.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (55,53,1,'Cough','Action/Move/Breathe/Cough','Suddenly and audibly expel air from the lungs through a partially closed glottis, preceded by inhalation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (56,53,1,'Exhale','Action/Move/Breathe/Exhale','Blow out or expel breath.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (57,53,1,'Hiccup','Action/Move/Breathe/Hiccup','Involuntarily spasm the diaphragm and respiratory organs, with a sudden closure of the glottis and a characteristic sound like that of a cough.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (58,53,1,'Hold-breath','Action/Move/Breathe/Hold-breath','Interrupt normal breathing by ceasing to inhale or exhale.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (59,53,1,'Inhale','Action/Move/Breathe/Inhale','Draw in with the breath through the nose or mouth.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (60,53,1,'Sneeze','Action/Move/Breathe/Sneeze','Suddenly and violently expel breath through the nose and mouth.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (61,53,1,'Sniff','Action/Move/Breathe/Sniff','Draw in air audibly through the nose to detect a smell, to stop it from running, or to express contempt.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (62,52,1,'Move-body','Action/Move/Move-body','Move entire body.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (63,62,1,'Bend','Action/Move/Move-body/Bend','Move body in a bowed or curved manner.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (64,62,1,'Dance','Action/Move/Move-body/Dance','Perform a purposefully selected sequences of human movement often with aesthetic or symbolic value. Move rhythmically to music, typically following a set sequence of steps.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (65,62,1,'Fall-down','Action/Move/Move-body/Fall-down','Lose balance and collapse.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (66,62,1,'Flex','Action/Move/Move-body/Flex','Cause a muscle to stand out by contracting or tensing it. Bend a limb or joint.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (67,62,1,'Jerk','Action/Move/Move-body/Jerk','Make a quick, sharp, sudden movement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (68,62,1,'Lie-down','Action/Move/Move-body/Lie-down','Move to a horizontal or resting position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (69,62,1,'Recover-balance','Action/Move/Move-body/Recover-balance','Return to a stable, upright body position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (70,62,1,'Sit-down','Action/Move/Move-body/Sit-down','Move from a standing to a sitting position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (71,62,1,'Sit-up','Action/Move/Move-body/Sit-up','Move from lying down to a sitting position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (72,62,1,'Stand-up','Action/Move/Move-body/Stand-up','Move from a sitting to a standing position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (73,62,1,'Stretch','Action/Move/Move-body/Stretch','Straighten or extend body or a part of body to its full length, typically so as to tighten muscles or in order to reach something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (74,62,1,'Shudder','Action/Move/Move-body/Shudder','Tremble convulsively, sometimes as a result of fear or revulsion.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (75,62,1,'Stumble','Action/Move/Move-body/Stumble','Trip or momentarily lose balance and almost fall.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (76,62,1,'Turn','Action/Move/Move-body/Turn','Change or cause to change direction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (77,52,1,'Move-body-part','Action/Move/Move-body-part','Move one part of a body.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (78,77,1,'Move-eyes','Action/Move/Move-body-part/Move-eyes','Move eyes.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (79,78,1,'Blink','Action/Move/Move-body-part/Move-eyes/Blink','Shut and open the eyes quickly.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (80,78,1,'Close-eyes','Action/Move/Move-body-part/Move-eyes/Close-eyes','Lower and keep eyelids in a closed position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (81,78,1,'Fixate','Action/Move/Move-body-part/Move-eyes/Fixate','Direct eyes to a specific point or target.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (82,78,1,'Inhibit-blinks','Action/Move/Move-body-part/Move-eyes/Inhibit-blinks','Purposely prevent blinking.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (83,78,1,'Open-eyes','Action/Move/Move-body-part/Move-eyes/Open-eyes','Raise eyelids to expose pupil.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (84,78,1,'Saccade','Action/Move/Move-body-part/Move-eyes/Saccade','Move eyes rapidly between fixation points.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (85,78,1,'Squint','Action/Move/Move-body-part/Move-eyes/Squint','Squeeze one or both eyes partly closed in an attempt to see more clearly or as a reaction to strong light.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (86,78,1,'Stare','Action/Move/Move-body-part/Move-eyes/Stare','Look fixedly or vacantly at someone or something with eyes wide open.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (87,77,1,'Move-face','Action/Move/Move-body-part/Move-face','Move the face or jaw.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (88,87,1,'Bite','Action/Move/Move-body-part/Move-face/Bite','Seize with teeth or jaws an object or organism so as to grip or break the surface covering.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (89,87,1,'Burp','Action/Move/Move-body-part/Move-face/Burp','Noisily release air from the stomach through the mouth. Belch.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (90,87,1,'Chew','Action/Move/Move-body-part/Move-face/Chew','Repeatedly grinding, tearing, and or crushing with teeth or jaws.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (91,87,1,'Gurgle','Action/Move/Move-body-part/Move-face/Gurgle','Make a hollow bubbling sound like that made by water running out of a bottle.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (92,87,1,'Swallow','Action/Move/Move-body-part/Move-face/Swallow','Cause or allow something, especially food or drink to pass down the throat.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (93,92,1,'Gulp','Action/Move/Move-body-part/Move-face/Swallow/Gulp','Swallow quickly or in large mouthfuls, often audibly, sometimes to indicate apprehension.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (94,87,1,'Yawn','Action/Move/Move-body-part/Move-face/Yawn','Take a deep involuntary inhalation with the mouth open often as a sign of drowsiness or boredom.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (95,77,1,'Move-head','Action/Move/Move-body-part/Move-head','Move head.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (96,95,1,'Lift-head','Action/Move/Move-body-part/Move-head/Lift-head','Tilt head back lifting chin.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (97,95,1,'Lower-head','Action/Move/Move-body-part/Move-head/Lower-head','Move head downward so that eyes are in a lower position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (98,95,1,'Turn-head','Action/Move/Move-body-part/Move-head/Turn-head','Rotate head horizontally to look in a different direction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (99,77,1,'Move-lower-extremity','Action/Move/Move-body-part/Move-lower-extremity','Move leg and/or foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (100,99,1,'Curl-toes','Action/Move/Move-body-part/Move-lower-extremity/Curl-toes','Bend toes sometimes to grip.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (101,99,1,'Hop','Action/Move/Move-body-part/Move-lower-extremity/Hop','Jump on one foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (102,99,1,'Jog','Action/Move/Move-body-part/Move-lower-extremity/Jog','Run at a trot to exercise.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (103,99,1,'Jump','Action/Move/Move-body-part/Move-lower-extremity/Jump','Move off the ground or other surface through sudden muscular effort in the legs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (104,99,1,'Kick','Action/Move/Move-body-part/Move-lower-extremity/Kick','Strike out or flail with the foot or feet. Strike using the leg, in unison usually with an area of the knee or lower using the foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (105,99,1,'Pedal','Action/Move/Move-body-part/Move-lower-extremity/Pedal','Move by working the pedals of a bicycle or other machine.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (106,99,1,'Press-foot','Action/Move/Move-body-part/Move-lower-extremity/Press-foot','Move by pressing foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (107,99,1,'Run','Action/Move/Move-body-part/Move-lower-extremity/Run','Travel on foot at a fast pace.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (108,99,1,'Step','Action/Move/Move-body-part/Move-lower-extremity/Step','Put one leg in front of the other and shift weight onto it.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (109,108,1,'Heel-strike','Action/Move/Move-body-part/Move-lower-extremity/Step/Heel-strike','Strike the ground with the heel during a step.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (110,108,1,'Toe-off','Action/Move/Move-body-part/Move-lower-extremity/Step/Toe-off','Push with toe as part of a stride.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (111,99,1,'Trot','Action/Move/Move-body-part/Move-lower-extremity/Trot','Run at a moderate pace, typically with short steps.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (112,99,1,'Walk','Action/Move/Move-body-part/Move-lower-extremity/Walk','Move at a regular pace by lifting and setting down each foot in turn never having both feet off the ground at once.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (113,77,1,'Move-torso','Action/Move/Move-body-part/Move-torso','Move body trunk.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (114,77,1,'Move-upper-extremity','Action/Move/Move-body-part/Move-upper-extremity','Move arm, shoulder, and/or hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (115,114,1,'Drop','Action/Move/Move-body-part/Move-upper-extremity/Drop','Let or cause to fall vertically.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (116,114,1,'Grab','Action/Move/Move-body-part/Move-upper-extremity/Grab','Seize suddenly or quickly. Snatch or clutch.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (117,114,1,'Grasp','Action/Move/Move-body-part/Move-upper-extremity/Grasp','Seize and hold firmly.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (118,114,1,'Hold-down','Action/Move/Move-body-part/Move-upper-extremity/Hold-down','Prevent someone or something from moving by holding them firmly.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (119,114,1,'Lift','Action/Move/Move-body-part/Move-upper-extremity/Lift','Raising something to higher position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (120,114,1,'Make-fist','Action/Move/Move-body-part/Move-upper-extremity/Make-fist','Close hand tightly with the fingers bent against the palm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (121,114,1,'Point','Action/Move/Move-body-part/Move-upper-extremity/Point','Draw attention to something by extending a finger or arm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (122,114,1,'Press','Action/Move/Move-body-part/Move-upper-extremity/Press','Apply pressure to something to flatten, shape, smooth or depress it. This action tag should be used to indicate key presses and mouse clicks.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (123,114,1,'Push','Action/Move/Move-body-part/Move-upper-extremity/Push','Apply force in order to move something away. Use Press to indicate a key press or mouse click.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (124,114,1,'Reach','Action/Move/Move-body-part/Move-upper-extremity/Reach','Stretch out your arm in order to get or touch something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (125,114,1,'Release','Action/Move/Move-body-part/Move-upper-extremity/Release','Make available or set free.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (126,114,1,'Retract','Action/Move/Move-body-part/Move-upper-extremity/Retract','Draw or pull back.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (127,114,1,'Scratch','Action/Move/Move-body-part/Move-upper-extremity/Scratch','Drag claws or nails over a surface or on skin.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (128,114,1,'Snap-fingers','Action/Move/Move-body-part/Move-upper-extremity/Snap-fingers','Make a noise by pushing second finger hard against thumb and then releasing it suddenly so that it hits the base of the thumb.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (129,114,1,'Touch','Action/Move/Move-body-part/Move-upper-extremity/Touch','Come into or be in contact with.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (130,16,1,'Perceive','Action/Perceive','Produce an internal, conscious image through stimulating a sensory system.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (131,130,1,'Hear','Action/Perceive/Hear','Give attention to a sound.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (132,130,1,'See','Action/Perceive/See','Direct gaze toward someone or something or in a specified direction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (133,130,1,'Smell','Action/Perceive/Smell','Inhale in order to ascertain an odor or scent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (134,130,1,'Taste','Action/Perceive/Taste','Sense a flavor in the mouth and throat on contact with a substance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (135,130,1,'Sense-by-touch','Action/Perceive/Sense-by-touch','Sense something through receptors in the skin.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (136,16,1,'Perform','Action/Perform','Carry out or accomplish an action, task, or function.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (137,136,1,'Close','Action/Perform/Close','Act as to blocked against entry or passage.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (138,136,1,'Collide-with','Action/Perform/Collide-with','Hit with force when moving.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (139,136,1,'Halt','Action/Perform/Halt','Bring or come to an abrupt stop.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (140,136,1,'Modify','Action/Perform/Modify','Change something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (141,136,1,'Open','Action/Perform/Open','Widen an aperture, door, or gap, especially one allowing access to something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (142,136,1,'Operate','Action/Perform/Operate','Control the functioning of a machine, process, or system.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (143,136,1,'Play','Action/Perform/Play','Engage in activity for enjoyment and recreation rather than a serious or practical purpose.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (144,136,1,'Read','Action/Perform/Read','Interpret something that is written or printed.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (145,136,1,'Repeat','Action/Perform/Repeat','Make do or perform again.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (146,136,1,'Rest','Action/Perform/Rest','Be inactive in order to regain strength, health, or energy.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (147,136,1,'Write','Action/Perform/Write','Communicate or express by means of letters or symbols written or imprinted on a surface.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (148,16,1,'Think','Action/Think','Direct the mind toward someone or something or use the mind actively to form connected ideas.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (149,148,1,'Allow','Action/Think/Allow','Allow access to something such as allowing a car to pass.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (150,148,1,'Attend-to','Action/Think/Attend-to','Focus mental experience on specific targets.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (151,148,1,'Count','Action/Think/Count','Tally items either silently or aloud.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (152,148,1,'Deny','Action/Think/Deny','Refuse to give or grant something requested or desired by someone.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (153,148,1,'Detect','Action/Think/Detect','Discover or identify the presence or existence of something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (154,148,1,'Discriminate','Action/Think/Discriminate','Recognize a distinction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (155,148,1,'Encode','Action/Think/Encode','Convert information or an instruction into a particular form.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (156,148,1,'Evade','Action/Think/Evade','Escape or avoid, especially by cleverness or trickery.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (157,148,1,'Generate','Action/Think/Generate','Cause something, especially an emotion or situation to arise or come about.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (158,148,1,'Identify','Action/Think/Identify','Establish or indicate who or what someone or something is.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (159,148,1,'Imagine','Action/Think/Imagine','Form a mental image or concept of something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (160,148,1,'Judge','Action/Think/Judge','Evaluate evidence to make a decision or form a belief.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (161,148,1,'Learn','Action/Think/Learn','Adaptively change behavior as the result of experience.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (162,148,1,'Memorize','Action/Think/Memorize','Adaptively change behavior as the result of experience.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (163,148,1,'Plan','Action/Think/Plan','Think about the activities required to achieve a desired goal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (164,148,1,'Predict','Action/Think/Predict','Say or estimate that something will happen or will be a consequence of something without having exact informaton.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (165,148,1,'Recognize','Action/Think/Recognize','Identify someone or something from having encountered them before.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (166,148,1,'Respond','Action/Think/Respond','React to something such as a treatment or a stimulus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (167,148,1,'Recall','Action/Think/Recall','Remember information by mental effort.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (168,148,1,'Switch-attention','Action/Think/Switch-attention','Transfer attention from one focus to another.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (169,148,1,'Track','Action/Think/Track','Follow a person, animal, or object through space or time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (170,NULL,1,'Item','Item','An independently existing thing (living or nonliving).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (171,170,1,'Biological-item','Item/Biological-item','An entity that is biological, that is related to living organisms.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (172,171,1,'Anatomical-item','Item/Biological-item/Anatomical-item','A biological structure, system, fluid or other substance excluding single molecular entities.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (173,172,1,'Body','Item/Biological-item/Anatomical-item/Body','The biological structure representing an organism.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (174,172,1,'Body-part','Item/Biological-item/Anatomical-item/Body-part','Any part of an organism.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (175,174,1,'Head','Item/Biological-item/Anatomical-item/Body-part/Head','The upper part of the human body, or the front or upper part of the body of an animal, typically separated from the rest of the body by a neck, and containing the brain, mouth, and sense organs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (176,175,1,'Hair','Item/Biological-item/Anatomical-item/Body-part/Head/Hair','The filamentous outgrowth of the epidermis.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (177,175,1,'Ear','Item/Biological-item/Anatomical-item/Body-part/Head/Ear','A sense organ needed for the detection of sound and for establishing balance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (178,175,1,'Face','Item/Biological-item/Anatomical-item/Body-part/Head/Face','The anterior portion of the head extending from the forehead to the chin and ear to ear. The facial structures contain the eyes, nose and mouth, cheeks and jaws.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (179,178,1,'Cheek','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Cheek','The fleshy part of the face bounded by the eyes, nose, ear, and jaw line.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (180,178,1,'Chin','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Chin','The part of the face below the lower lip and including the protruding part of the lower jaw.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (181,178,1,'Eye','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Eye','The organ of sight or vision.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (182,178,1,'Eyebrow','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Eyebrow','The arched strip of hair on the bony ridge above each eye socket.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (183,178,1,'Forehead','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Forehead','The part of the face between the eyebrows and the normal hairline.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (184,178,1,'Lip','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Lip','Fleshy fold which surrounds the opening of the mouth.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (185,178,1,'Nose','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Nose','A structure of special sense serving as an organ of the sense of smell and as an entrance to the respiratory tract.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (186,178,1,'Mouth','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Mouth','The proximal portion of the digestive tract, containing the oral cavity and bounded by the oral opening.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (187,178,1,'Teeth','Item/Biological-item/Anatomical-item/Body-part/Head/Face/Teeth','The hard bonelike structures in the jaws. A collection of teeth arranged in some pattern in the mouth or other part of the body.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (188,174,1,'Lower-extremity','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity','Refers to the whole inferior limb (leg and/or foot).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (189,188,1,'Ankle','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Ankle','A gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (190,188,1,'Calf','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Calf','The fleshy part at the back of the leg below the knee.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (191,188,1,'Foot','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Foot','The structure found below the ankle joint required for locomotion.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (192,191,1,'Big-toe','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Foot/Big-toe','The largest toe on the inner side of the foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (193,191,1,'Heel','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Foot/Heel','The back of the foot below the ankle.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (194,191,1,'Instep','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Foot/Instep','The part of the foot between the ball and the heel on the inner side.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (195,191,1,'Little-toe','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Foot/Little-toe','The smallest toe located on the outer side of the foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (196,191,1,'Toes','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Foot/Toes','The terminal digits of the foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (197,188,1,'Knee','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Knee','A joint connecting the lower part of the femur with the upper part of the tibia.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (198,188,1,'Shin','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Shin','Front part of the leg below the knee.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (199,188,1,'Thigh','Item/Biological-item/Anatomical-item/Body-part/Lower-extremity/Thigh','Upper part of the leg between hip and knee.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (200,174,1,'Torso','Item/Biological-item/Anatomical-item/Body-part/Torso','The body excluding the head and neck and limbs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (201,200,1,'Torso-back','Item/Biological-item/Anatomical-item/Body-part/Torso/Torso-back','The rear surface of the human body from the shoulders to the hips.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (202,200,1,'Buttocks','Item/Biological-item/Anatomical-item/Body-part/Torso/Buttocks','The round fleshy parts that form the lower rear area of a human trunk.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (203,200,1,'Torso-chest','Item/Biological-item/Anatomical-item/Body-part/Torso/Torso-chest','The anterior side of the thorax from the neck to the abdomen.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (204,200,1,'Gentalia','Item/Biological-item/Anatomical-item/Body-part/Torso/Gentalia','The external organs of reproduction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (205,200,1,'Hip','Item/Biological-item/Anatomical-item/Body-part/Torso/Hip','The lateral prominence of the pelvis from the waist to the thigh.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (206,200,1,'Waist','Item/Biological-item/Anatomical-item/Body-part/Torso/Waist','The abdominal circumference at the navel.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (207,174,1,'Upper-extremity','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity','Refers to the whole superior limb (shoulder, arm, elbow, wrist, hand).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (208,207,1,'Elbow','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Elbow','A type of hinge joint located between the forearm and upper arm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (209,207,1,'Forearm','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Forearm','Lower part of the arm between the elbow and wrist.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (210,207,1,'Hand','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand','The distal portion of the upper extremity. It consists of the carpus, metacarpus, and digits.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (211,210,1,'Finger','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Finger','Any of the digits of the hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (212,211,1,'Index-finger','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Finger/Index-finger','The second finger from the radial side of the hand, next to the thumb.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (213,211,1,'Little-finger','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Finger/Little-finger','The fifth and smallest finger from the radial side of the hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (214,211,1,'Middle-finger','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Finger/Middle-finger','The middle or third finger from the radial side of the hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (215,211,1,'Ring-finger','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Finger/Ring-finger','The fourth finger from the radial side of the hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (216,211,1,'Thumb','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Finger/Thumb','The thick and short hand digit which is next to the index finger in humans.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (217,210,1,'Palm','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Palm','The part of the inner surface of the hand that extends from the wrist to the bases of the fingers.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (218,210,1,'Knuckles','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Hand/Knuckles','A part of a finger at a joint where the bone is near the surface, especially where the finger joins the hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (219,207,1,'Shoulder','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Shoulder','Joint attaching upper arm to trunk.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (220,207,1,'Upper-arm','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Upper-arm','Portion of arm between shoulder and elbow.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (221,207,1,'Wrist','Item/Biological-item/Anatomical-item/Body-part/Upper-extremity/Wrist','A joint between the distal end of the radius and the proximal row of carpal bones.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (222,171,1,'Organism','Item/Biological-item/Organism','A living entity, more specifically a biological entity that consists of one or more cells and is capable of genomic replication (independently or not).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (223,222,1,'Animal','Item/Biological-item/Organism/Animal','A living organism that has membranous cell walls, requires oxygen and organic foods, and is capable of voluntary movement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (224,222,1,'Human','Item/Biological-item/Organism/Human','The bipedal primate mammal Homo sapiens.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (225,222,1,'Plant','Item/Biological-item/Organism/Plant','Any living organism that typically synthesizes its food from inorganic substances and possesses cellulose cell walls.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (226,170,1,'Language-item','Item/Language-item','An entity related to a systematic means of communicating by the use of sounds, symbols, or gestures.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (227,226,1,'Character','Item/Language-item/Character','A mark or symbol used in writing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (228,226,1,'Clause','Item/Language-item/Clause','A unit of grammatical organization next below the sentence in rank, usually consisting of a subject and predicate.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (229,226,1,'Glyph','Item/Language-item/Glyph','A hieroglyphic character, symbol, or pictograph.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (230,226,1,'Nonword','Item/Language-item/Nonword','A group of letters or speech sounds that looks or sounds like a word but that is not accepted as such by native speakers.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (231,226,1,'Paragraph','Item/Language-item/Paragraph','A distinct section of a piece of writing, usually dealing with a single theme.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (232,226,1,'Phoneme','Item/Language-item/Phoneme','A speech sound that is distinguished by the speakers of a particular language.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (233,226,1,'Phrase','Item/Language-item/Phrase','A phrase is a group of words functioning as a single unit in the syntax of a sentence.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (234,226,1,'Sentence','Item/Language-item/Sentence','A set of words that is complete in itself, conveying a statement, question, exclamation, or command and typically containing an explicit or implied subject and a predicate containing a finite verb.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (235,226,1,'Syllable','Item/Language-item/Syllable','A unit of spoken language larger than a phoneme.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (236,226,1,'Textblock','Item/Language-item/Textblock','A block of text.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (237,226,1,'Word','Item/Language-item/Word','A word is the smallest free form (an item that may be expressed in isolation with semantic or pragmatic content) in a language.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (238,170,1,'Object','Item/Object','Something perceptible by one or more of the senses, especially by vision or touch. A material thing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (239,238,1,'Geometric-object','Item/Object/Geometric-object','An object or a representation that has structure and topology in space.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (240,239,1,'Pattern','Item/Object/Geometric-object/Pattern','An arrangement of objects, facts, behaviors, or other things which have scientific, mathematical, geometric, statistical, or other meaning.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (241,240,1,'Dots','Item/Object/Geometric-object/Pattern/Dots','A small round mark or spot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (242,240,1,'LED-pattern','Item/Object/Geometric-object/Pattern/LED-pattern','A pattern created by lighting selected members of a fixed light emitting diode array.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (243,239,1,'2D-shape','Item/Object/Geometric-object/2D-shape','A planar, two-dimensional shape.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (244,243,1,'Arrow','Item/Object/Geometric-object/2D-shape/Arrow','A shape with a pointed end indicating direction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (245,243,1,'Clockface','Item/Object/Geometric-object/2D-shape/Clockface','The dial face of a clock. A location identifier based on clockface numbering or anatomic subregion.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (246,243,1,'Cross','Item/Object/Geometric-object/2D-shape/Cross','A figure or mark formed by two intersecting lines crossing at their midpoints.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (247,243,1,'Dash','Item/Object/Geometric-object/2D-shape/Dash','A horizontal stroke in writing or printing to mark a pause or break in sense or to represent omitted letters or words.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (248,243,1,'Ellipse','Item/Object/Geometric-object/2D-shape/Ellipse','A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (249,248,1,'Circle','Item/Object/Geometric-object/2D-shape/Ellipse/Circle','A ring-shaped structure with every point equidistant from the center.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (250,243,1,'Rectangle','Item/Object/Geometric-object/2D-shape/Rectangle','A parallelogram with four right angles.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (251,250,1,'Square','Item/Object/Geometric-object/2D-shape/Rectangle/Square','A square is a special rectangle with four equal sides.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (252,243,1,'Single-point','Item/Object/Geometric-object/2D-shape/Single-point','A point is a geometric entity that is located in a zero-dimensional spatial region and whose position is defined by its coordinates in some coordinate system.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (253,243,1,'Star','Item/Object/Geometric-object/2D-shape/Star','A conventional or stylized representation of a star, typically one having five or more points.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (254,243,1,'Triangle','Item/Object/Geometric-object/2D-shape/Triangle','A three-sided polygon.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (255,239,1,'3D-shape','Item/Object/Geometric-object/3D-shape','A geometric three-dimensional shape.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (256,255,1,'Box','Item/Object/Geometric-object/3D-shape/Box','A square or rectangular vessel, usually made of cardboard or plastic.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (257,256,1,'Cube','Item/Object/Geometric-object/3D-shape/Box/Cube','A solid or semi-solid in the shape of a three dimensional square.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (258,255,1,'Cone','Item/Object/Geometric-object/3D-shape/Cone','A shape whose base is a circle and whose sides taper up to a point.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (259,255,1,'Cylinder','Item/Object/Geometric-object/3D-shape/Cylinder','A surface formed by circles of a given radius that are contained in a plane perpendicular to a given axis, whose centers align on the axis.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (260,255,1,'Ellipsoid','Item/Object/Geometric-object/3D-shape/Ellipsoid','A closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it, especially a plane not parallel to the base.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (261,260,1,'Sphere','Item/Object/Geometric-object/3D-shape/Ellipsoid/Sphere','A solid or hollow three-dimensional object bounded by a closed surface such that every point on the surface is equidistant from the center.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (262,255,1,'Pyramid','Item/Object/Geometric-object/3D-shape/Pyramid','A polyhedron of which one face is a polygon of any number of sides, and the other faces are triangles with a common vertex.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (263,238,1,'Ingestible-object','Item/Object/Ingestible-object','Something that can be taken into the body by the mouth for digestion or absorption.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (264,238,1,'Man-made-object','Item/Object/Man-made-object','Something constructed by human means.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (265,264,1,'Building','Item/Object/Man-made-object/Building','A structure that has a roof and walls and stands more or less permanently in one place.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (266,265,1,'Room','Item/Object/Man-made-object/Building/Room','An area within a building enclosed by walls and floor and ceiling.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (267,265,1,'Roof','Item/Object/Man-made-object/Building/Roof','A roof is the covering on the uppermost part of a building which provides protection from animals and weather, notably rain, but also heat, wind and sunlight.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (268,265,1,'Entrance','Item/Object/Man-made-object/Building/Entrance','The means or place of entry.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (269,265,1,'Attic','Item/Object/Man-made-object/Building/Attic','A room or a space immediately below the roof of a building.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (270,265,1,'Basement','Item/Object/Man-made-object/Building/Basement','The part of a building that is wholly or partly below ground level.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (271,264,1,'Clothing','Item/Object/Man-made-object/Clothing','A covering designed to be worn on the body.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (272,264,1,'Device','Item/Object/Man-made-object/Device','An object contrived for a specific purpose.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (273,272,1,'Assistive-device','Item/Object/Man-made-object/Device/Assistive-device','A device that help an individual accomplish a task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (274,273,1,'Glasses','Item/Object/Man-made-object/Device/Assistive-device/Glasses','Frames with lenses worn in front of the eye for vision correction, eye protection, or protection from UV rays.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (275,273,1,'Writing-device','Item/Object/Man-made-object/Device/Assistive-device/Writing-device','A device used for writing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (276,275,1,'Pen','Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen','A common writing instrument used to apply ink to a surface for writing or drawing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (277,275,1,'Pencil','Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pencil','An implement for writing or drawing that is constructed of a narrow solid pigment core in a protective casing that prevents the core from being broken or marking the hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (278,272,1,'Computing-device','Item/Object/Man-made-object/Device/Computing-device','An electronic device which take inputs and processes results from the inputs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (279,278,1,'Cellphone','Item/Object/Man-made-object/Device/Computing-device/Cellphone','A telephone with access to a cellular radio system so it can be used over a wide area, without a physical connection to a network.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (280,278,1,'Desktop-computer','Item/Object/Man-made-object/Device/Computing-device/Desktop-computer','A computer suitable for use at an ordinary desk.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (281,278,1,'Laptop-computer','Item/Object/Man-made-object/Device/Computing-device/Laptop-computer','A computer that is portable and suitable for use while traveling.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (282,278,1,'Tablet-computer','Item/Object/Man-made-object/Device/Computing-device/Tablet-computer','A small portable computer that accepts input directly on to its screen rather than via a keyboard or mouse.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (283,272,1,'Engine','Item/Object/Man-made-object/Device/Engine','A motor is a machine designed to convert one or more forms of energy into mechanical energy.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (284,272,1,'IO-device','Item/Object/Man-made-object/Device/IO-device','Hardware used by a human (or other system) to communicate with a computer.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (285,284,1,'Input-device','Item/Object/Man-made-object/Device/IO-device/Input-device','A piece of equipment used to provide data and control signals to an information processing system such as a computer or information appliance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (286,285,1,'Computer-mouse','Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse','A hand-held pointing device that detects two-dimensional motion relative to a surface.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (287,286,1,'Mouse-button','Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse/Mouse-button','An electric switch on a computer mouse which can be pressed or clicked to select or interact with an element of a graphical user interface.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (288,286,1,'Scroll-wheel','Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse/Scroll-wheel','A scroll wheel or mouse wheel is a wheel used for scrolling made of hard plastic with a rubbery surface usually located between the left and right mouse buttons and is positioned perpendicular to the mouse surface.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (289,285,1,'Joystick','Item/Object/Man-made-object/Device/IO-device/Input-device/Joystick','A control device that uses a movable handle to create two-axis input for a computer device.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (290,285,1,'Keyboard','Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard','A device consisting of mechanical keys that are pressed to create input to a computer.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (291,290,1,'Keyboard-key','Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard/Keyboard-key','A button on a keyboard usually representing letters, numbers, functions, or symbols.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (292,285,1,'Keypad','Item/Object/Man-made-object/Device/IO-device/Input-device/Keypad','A device consisting of keys, usually in a block arrangement, that provides limited input to a system.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (293,292,1,'Keypad-key','Item/Object/Man-made-object/Device/IO-device/Input-device/Keypad/Keypad-key','A key on a separate section of a computer keyboard that groups together numeric keys and those for mathematical or other special functions in an arrangement like that of a calculator.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (294,285,1,'Microphone','Item/Object/Man-made-object/Device/IO-device/Input-device/Microphone','A device designed to convert sound to an electrical signal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (295,285,1,'Push-button','Item/Object/Man-made-object/Device/IO-device/Input-device/Push-button','A switch designed to be operated by pressing a button.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (296,284,1,'Output-device','Item/Object/Man-made-object/Device/IO-device/Output-device','Any piece of computer hardware equipment which converts information into human understandable form.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (297,296,1,'Display-device','Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device','An output device for presentation of information in visual or tactile form the latter used for example in tactile electronic displays for blind people.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (298,297,1,'Head-mounted-display','Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/Head-mounted-display','An instrument that functions as a display device, worn on the head or as part of a helmet, that has a small display optic in front of one (monocular HMD) or each eye (binocular HMD).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (299,297,1,'LED-display','Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/LED-display','A LED display is a flat panel display that uses an array of light-emitting diodes as pixels for a video display.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (300,297,1,'Computer-screen','Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/Computer-screen','An electronic device designed as a display or a physical device designed to be a protective meshwork.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (301,300,1,'Screen-window','Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device/Computer-screen/Screen-window','A part of a computer screen that contains a display different from the rest of the screen. A window is a graphical control element consisting of a visual area containing some of the graphical user interface of the program it belongs to and is framed by a window decoration.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (302,296,1,'Auditory-device','Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device','A device designed to produce sound.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (303,302,1,'Headphones','Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Headphones','An instrument that consists of a pair of small loudspeakers, or less commonly a single speaker, held close to ears and connected to a signal source such as an audio amplifier, radio, CD player or portable media player.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (304,302,1,'Loudspeaker','Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker','A device designed to convert electrical signals to sounds that can be heard.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (305,284,1,'Recording-device','Item/Object/Man-made-object/Device/IO-device/Recording-device','A device that copies information in a signal into a persistent information bearer.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (306,305,1,'EEG-recorder','Item/Object/Man-made-object/Device/IO-device/Recording-device/EEG-recorder','A device for recording electric currents in the brain using electrodes applied to the scalp, to the surface of the brain, or placed within the substance of the brain.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (307,305,1,'File-storage','Item/Object/Man-made-object/Device/IO-device/Recording-device/File-storage','A device for recording digital information to a permanent media.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (308,305,1,'MEG-recorder','Item/Object/Man-made-object/Device/IO-device/Recording-device/MEG-recorder','A device for measuring the magnetic fields produced by electrical activity in the brain, usually conducted externally.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (309,305,1,'Motion-capture','Item/Object/Man-made-object/Device/IO-device/Recording-device/Motion-capture','A device for recording the movement of objects or people.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (310,305,1,'Tape-recorder','Item/Object/Man-made-object/Device/IO-device/Recording-device/Tape-recorder','A device for recording and reproduction usually using magnetic tape for storage that can be saved and played back.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (311,284,1,'Touchscreen','Item/Object/Man-made-object/Device/IO-device/Touchscreen','A control component that operates an electronic device by pressing the display on the screen.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (312,272,1,'Machine','Item/Object/Man-made-object/Device/Machine','A human-made device that uses power to apply forces and control movement to perform an action.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (313,272,1,'Measurement-device','Item/Object/Man-made-object/Device/Measurement-device','A device in which a measure function inheres.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (314,313,1,'Clock','Item/Object/Man-made-object/Device/Measurement-device/Clock','A device designed to indicate the time of day or to measure the time duration of an event or action.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (315,314,1,'Clock-face','Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face','A location identifier based on clockface numbering or anatomic subregion.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (316,272,1,'Robot','Item/Object/Man-made-object/Device/Robot','A mechanical device that sometimes resembles a living animal and is capable of performing a variety of often complex human tasks on command or by being programmed in advance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (317,272,1,'Tool','Item/Object/Man-made-object/Device/Tool','A component that is not part of a device but is designed to support its assemby or operation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (318,264,1,'Document','Item/Object/Man-made-object/Document','A physical object, or electronic counterpart, that is characterized by containing writing which is meant to be human-readable.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (319,318,1,'Letter','Item/Object/Man-made-object/Document/Letter','A written message addressed to a person or organization.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (320,318,1,'Note','Item/Object/Man-made-object/Document/Note','A brief written record.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (321,318,1,'Book','Item/Object/Man-made-object/Document/Book','A volume made up of pages fastened along one edge and enclosed between protective covers.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (322,318,1,'Notebook','Item/Object/Man-made-object/Document/Notebook','A book for notes or memoranda.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (323,318,1,'Questionnaire','Item/Object/Man-made-object/Document/Questionnaire','A document consisting of questions and possibly responses, depending on whether it has been filled out.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (324,264,1,'Furnishing','Item/Object/Man-made-object/Furnishing','Furniture, fittings, and other decorative accessories, such as curtains and carpets, for a house or room.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (325,264,1,'Manufactured-material','Item/Object/Man-made-object/Manufactured-material','Substances created or extracted from raw materials.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (326,325,1,'Ceramic','Item/Object/Man-made-object/Manufactured-material/Ceramic','A hard, brittle, heat-resistant and corrosion-resistant material made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (327,325,1,'Glass','Item/Object/Man-made-object/Manufactured-material/Glass','A brittle transparent solid with irregular atomic structure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (328,325,1,'Paper','Item/Object/Man-made-object/Manufactured-material/Paper','A thin sheet material produced by mechanically or chemically processing cellulose fibres derived from wood, rags, grasses or other vegetable sources in water.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (329,325,1,'Plastic','Item/Object/Man-made-object/Manufactured-material/Plastic','Various high-molecular-weight thermoplastic or thermosetting polymers that are capable of being molded, extruded, drawn, or otherwise shaped and then hardened into a form.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (330,325,1,'Steel','Item/Object/Man-made-object/Manufactured-material/Steel','An alloy made up of iron with typically a few tenths of a percent of carbon to improve its strength and fracture resistance compared to iron.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (331,264,1,'Media','Item/Object/Man-made-object/Media','Media are audo/visual/audiovisual modes of communicating information for mass consumption.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (332,331,1,'Media-clip','Item/Object/Man-made-object/Media/Media-clip','A short segment of media.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (333,332,1,'Audio-clip','Item/Object/Man-made-object/Media/Media-clip/Audio-clip','A short segment of audio.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (334,332,1,'Audiovisual-clip','Item/Object/Man-made-object/Media/Media-clip/Audiovisual-clip','A short media segment containing both audio and video.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (335,332,1,'Video-clip','Item/Object/Man-made-object/Media/Media-clip/Video-clip','A short segment of video.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (336,331,1,'Visualization','Item/Object/Man-made-object/Media/Visualization','An planned process that creates images, diagrams or animations from the input data.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (337,336,1,'Animation','Item/Object/Man-made-object/Media/Visualization/Animation','A form of graphical illustration that changes with time to give a sense of motion or represent dynamic changes in the portrayal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (338,336,1,'Art-installation','Item/Object/Man-made-object/Media/Visualization/Art-installation','A large-scale, mixed-media constructions, often designed for a specific place or for a temporary period of time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (339,336,1,'Braille','Item/Object/Man-made-object/Media/Visualization/Braille','A display using a system of raised dots that can be read with the fingers by people who are blind.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (340,336,1,'Image','Item/Object/Man-made-object/Media/Visualization/Image','Any record of an imaging event whether physical or electronic.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (341,340,1,'Cartoon','Item/Object/Man-made-object/Media/Visualization/Image/Cartoon','A type of illustration, sometimes animated, typically in a non-realistic or semi-realistic style. The specific meaning has evolved over time, but the modern usage usually refers to either an image or series of images intended for satire, caricature, or humor. A motion picture that relies on a sequence of illustrations for its animation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (342,340,1,'Drawing','Item/Object/Man-made-object/Media/Visualization/Image/Drawing','A representation of an object or outlining a figure, plan, or sketch by means of lines.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (343,340,1,'Icon','Item/Object/Man-made-object/Media/Visualization/Image/Icon','A sign (such as a word or graphic symbol) whose form suggests its meaning.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (344,340,1,'Painting','Item/Object/Man-made-object/Media/Visualization/Image/Painting','A work produced through the art of painting.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (345,340,1,'Photograph','Item/Object/Man-made-object/Media/Visualization/Image/Photograph','An image recorded by a camera.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (346,336,1,'Movie','Item/Object/Man-made-object/Media/Visualization/Movie','A sequence of images displayed in succession giving the illusion of continuous movement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (347,336,1,'Outline-visualization','Item/Object/Man-made-object/Media/Visualization/Outline-visualization','A visualization consisting of a line or set of lines enclosing or indicating the shape of an object in a sketch or diagram.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (348,336,1,'Point-light-visualization','Item/Object/Man-made-object/Media/Visualization/Point-light-visualization','A display in which action is depicted using a few points of light, often generated from discrete sensors in motion capture.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (349,336,1,'Sculpture','Item/Object/Man-made-object/Media/Visualization/Sculpture','A two- or three-dimensional representative or abstract forms, especially by carving stone or wood or by casting metal or plaster.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (350,336,1,'Stick-figure-visualization','Item/Object/Man-made-object/Media/Visualization/Stick-figure-visualization','A drawing showing the head of a human being or animal as a circle and all other parts as straight lines.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (351,264,1,'Navigational-object','Item/Object/Man-made-object/Navigational-object','An object whose purpose is to assist directed movement from one location to another.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (352,351,1,'Path','Item/Object/Man-made-object/Navigational-object/Path','A trodden way. A way or track laid down for walking or made by continual treading.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (353,351,1,'Road','Item/Object/Man-made-object/Navigational-object/Road','An open way for the passage of vehicles, persons, or animals on land.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (354,353,1,'Lane','Item/Object/Man-made-object/Navigational-object/Road/Lane','A defined path with physical dimensions through which an object or substance may traverse.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (355,351,1,'Runway','Item/Object/Man-made-object/Navigational-object/Runway','A paved strip of ground on a landing field for the landing and takeoff of aircraft.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (356,264,1,'Vehicle','Item/Object/Man-made-object/Vehicle','A mobile machine which transports people or cargo.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (357,356,1,'Aircraft','Item/Object/Man-made-object/Vehicle/Aircraft','A vehicle which is able to travel through air in an atmosphere.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (358,356,1,'Bicycle','Item/Object/Man-made-object/Vehicle/Bicycle','A human-powered, pedal-driven, single-track vehicle, having two wheels attached to a frame, one behind the other.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (359,356,1,'Boat','Item/Object/Man-made-object/Vehicle/Boat','A watercraft of any size which is able to float or plane on water.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (360,356,1,'Car','Item/Object/Man-made-object/Vehicle/Car','A wheeled motor vehicle used primarily for the transportation of human passengers.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (361,356,1,'Cart','Item/Object/Man-made-object/Vehicle/Cart','A cart is a vehicle which has two wheels and is designed to transport human passengers or cargo.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (362,356,1,'Tractor','Item/Object/Man-made-object/Vehicle/Tractor','A mobile machine specifically designed to deliver a high tractive effort at slow speeds, and mainly used for the purposes of hauling a trailer or machinery used in agriculture or construction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (363,356,1,'Train','Item/Object/Man-made-object/Vehicle/Train','A connected line of railroad cars with or without a locomotive.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (364,356,1,'Truck','Item/Object/Man-made-object/Vehicle/Truck','A motor vehicle which, as its primary funcion, transports cargo rather than human passangers.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (365,238,1,'Natural-object','Item/Object/Natural-object','Something that exists in or is produced by nature, and is not artificial or man-made.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (366,365,1,'Mineral','Item/Object/Natural-object/Mineral','A solid, homogeneous, inorganic substance occurring in nature and having a definite chemical composition.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (367,365,1,'Natural-feature','Item/Object/Natural-object/Natural-feature','A feature that occurs in nature. A prominent or identifiable aspect, region, or site of interest.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (368,367,1,'Field','Item/Object/Natural-object/Natural-feature/Field','An unbroken expanse as of ice or grassland.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (369,367,1,'Hill','Item/Object/Natural-object/Natural-feature/Hill','A rounded elevation of limited extent rising above the surrounding land with local relief of less than 300m.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (370,367,1,'Mountain','Item/Object/Natural-object/Natural-feature/Mountain','A landform that extends above the surrounding terrain in a limited area.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (371,367,1,'River','Item/Object/Natural-object/Natural-feature/River','A natural freshwater surface stream of considerable volume and a permanent or seasonal flow, moving in a definite channel toward a sea, lake, or another river.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (372,367,1,'Waterfall','Item/Object/Natural-object/Natural-feature/Waterfall','A sudden descent of water over a step or ledge in the bed of a river.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (373,170,1,'Sound','Item/Sound','Mechanical vibrations transmitted by an elastic medium. Something that can be heard.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (374,373,1,'Environmental-sound','Item/Sound/Environmental-sound','Sounds occuring in the environment. An accumulation of noise pollution that occurs outside. This noise can be caused by transport, industrial, and recreational activities.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (375,374,1,'Crowd-sound','Item/Sound/Environmental-sound/Crowd-sound','Noise produced by a mixture of sounds from a large group of people.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (376,374,1,'Signal-noise','Item/Sound/Environmental-sound/Signal-noise','Any part of a signal that is not the true or original signal but is introduced by the communication mechanism.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (377,373,1,'Musical-sound','Item/Sound/Musical-sound','Sound produced by continuous and regular vibrations, as opposed to noise.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (378,377,1,'Tone','Item/Sound/Musical-sound/Tone','A musical note, warble, or other sound used as a particular signal on a telephone or answering machine.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (379,377,1,'Instrument-sound','Item/Sound/Musical-sound/Instrument-sound','Sound produced by a musical instrument.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (380,377,1,'Vocalized-sound','Item/Sound/Musical-sound/Vocalized-sound','Musical sound produced by vocal cords in a biological agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (381,373,1,'Named-animal-sound','Item/Sound/Named-animal-sound','A sound recognizable as being associated with particular animals.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (382,381,1,'Barking','Item/Sound/Named-animal-sound/Barking','Sharp explosive cries like sounds made by certain animals, especially a dog, fox, or seal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (383,381,1,'Bleating','Item/Sound/Named-animal-sound/Bleating','Wavering cries like sounds made by a sheep, goat, or calf.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (384,381,1,'Crowing','Item/Sound/Named-animal-sound/Crowing','Loud shrill sounds characteristic of roosters.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (385,381,1,'Chirping','Item/Sound/Named-animal-sound/Chirping','Short, sharp, high-pitched noises like sounds made by small birds or an insects.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (386,381,1,'Growling','Item/Sound/Named-animal-sound/Growling','Low guttural sounds like those that made in the throat by a hostile dog or other animal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (387,381,1,'Meowing','Item/Sound/Named-animal-sound/Meowing','Vocalizations like those made by as those cats. These sounds have diverse tones and are sometimes chattered, murmured or whispered. The purpose can be assertive.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (388,381,1,'Mooing','Item/Sound/Named-animal-sound/Mooing','Deep vocal sounds like those made by a cow.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (389,381,1,'Purring','Item/Sound/Named-animal-sound/Purring','Low continuous vibratory sound such as those made by cats. The sound expresses contentment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (390,381,1,'Roaring','Item/Sound/Named-animal-sound/Roaring','Loud, deep, or harsh prolonged sounds such as those made by big cats and bears for long-distance communication and intimidation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (391,381,1,'Squawking','Item/Sound/Named-animal-sound/Squawking','Loud, harsh noises such as those made by geese.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (392,373,1,'Named-object-sound','Item/Sound/Named-object-sound','A sound identifiable as coming from a particular type of object.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (393,392,1,'Alarm-sound','Item/Sound/Named-object-sound/Alarm-sound','A loud signal often loud continuous ringing to alert people to a problem or condition that requires urgent attention.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (394,392,1,'Beep','Item/Sound/Named-object-sound/Beep','A short, single tone, that is typically high-pitched and generally made by a computer or other machine.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (395,392,1,'Buzz','Item/Sound/Named-object-sound/Buzz','A persistent vibratory sound often made by a buzzer device and used to indicate something incorrect.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (396,392,1,'Ka-ching','Item/Sound/Named-object-sound/Ka-ching','The sound made by a mechanical cash register, often to designate a reward.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (397,392,1,'Click','Item/Sound/Named-object-sound/Click','The sound made by a mechanical cash register, often to designate a reward.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (398,392,1,'Ding','Item/Sound/Named-object-sound/Ding','A short ringing sound such as that made by a bell, often to indicate a correct response or the expiration of time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (399,392,1,'Horn-blow','Item/Sound/Named-object-sound/Horn-blow','A loud sound made by forcing air through a sound device that funnels air to create the sound, often used to sound an alert.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (400,392,1,'Siren','Item/Sound/Named-object-sound/Siren','A loud, continuous sound often varying in frequency designed to indicate an emergency.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (401,NULL,1,'Property','Property','Something that pertains to a thing. A characteristic of some entity. A quality or feature regarded as a characteristic or inherent part of someone or something. HED attributes are adjectives or adverbs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (402,401,1,'Agent-property','Property/Agent-property','Something that pertains to an agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (403,402,1,'Agent-state','Property/Agent-property/Agent-state','The state of the agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (404,403,1,'Agent-cognitive-state','Property/Agent-property/Agent-state/Agent-cognitive-state','The state of the cognitive processes or state of mind of the agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (405,404,1,'Alert','Property/Agent-property/Agent-state/Agent-cognitive-state/Alert','Condition of heightened watchfulness or preparation for action.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (406,404,1,'Anesthetized','Property/Agent-property/Agent-state/Agent-cognitive-state/Anesthetized','Having lost sensation to pain or having senses dulled due to the effects of an anesthetic.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (407,404,1,'Asleep','Property/Agent-property/Agent-state/Agent-cognitive-state/Asleep','Having entered a periodic, readily reversible state of reduced awareness and metabolic activity, usually accompanied by physical relaxation and brain activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (408,404,1,'Attentive','Property/Agent-property/Agent-state/Agent-cognitive-state/Attentive','Concentrating and focusing mental energy on the task or surroundings.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (409,404,1,'Distracted','Property/Agent-property/Agent-state/Agent-cognitive-state/Distracted','Lacking in concentration because of being preoccupied.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (410,404,1,'Awake','Property/Agent-property/Agent-state/Agent-cognitive-state/Awake','In a non sleeping state.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (411,404,1,'Brain-dead','Property/Agent-property/Agent-state/Agent-cognitive-state/Brain-dead','Characterized by the irreversible absence of cortical and brain stem functioning.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (412,404,1,'Comatose','Property/Agent-property/Agent-state/Agent-cognitive-state/Comatose','In a state of profound unconsciousness associated with markedly depressed cerebral activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (413,404,1,'Drowsy','Property/Agent-property/Agent-state/Agent-cognitive-state/Drowsy','In a state of near-sleep, a strong desire for sleep, or sleeping for unusually long periods.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (414,404,1,'Intoxicated','Property/Agent-property/Agent-state/Agent-cognitive-state/Intoxicated','In a state with disturbed psychophysiological functions and responses as a result of administration or ingestion of a psychoactive substance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (415,404,1,'Locked-in','Property/Agent-property/Agent-state/Agent-cognitive-state/Locked-in','In a state of complete paralysis of all voluntary muscles except for the ones that control the movements of the eyes.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (416,404,1,'Passive','Property/Agent-property/Agent-state/Agent-cognitive-state/Passive','Not responding or initiating an action in response to a stimulus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (417,404,1,'Resting','Property/Agent-property/Agent-state/Agent-cognitive-state/Resting','A state in which the agent is not exhibiting any physical exertion.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (418,404,1,'Vegetative','Property/Agent-property/Agent-state/Agent-cognitive-state/Vegetative','A state of wakefulness and conscience, but (in contrast to coma) with involuntary opening of the eyes and movements (such as teeth grinding, yawning, or thrashing of the extremities).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (419,403,1,'Agent-emotional-state','Property/Agent-property/Agent-state/Agent-emotional-state','The status of the general temperament and outlook of an agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (420,419,1,'Angry','Property/Agent-property/Agent-state/Agent-emotional-state/Angry','Experiencing emotions characterized by marked annoyance or hostility.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (421,419,1,'Aroused','Property/Agent-property/Agent-state/Agent-emotional-state/Aroused','In a state reactive to stimuli leading to increased heart rate and blood pressure, sensory alertness, mobility and readiness to respond.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (422,419,1,'Awed','Property/Agent-property/Agent-state/Agent-emotional-state/Awed','Filled with wonder. Feeling grand, sublime or powerful emotions characterized by a combination of joy, fear, admiration, reverence, and/or respect.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (423,419,1,'Compassionate','Property/Agent-property/Agent-state/Agent-emotional-state/Compassionate','Feeling or showing sympathy and concern for others often evoked for a person who is in distress and associated with altruistic motivation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (424,419,1,'Content','Property/Agent-property/Agent-state/Agent-emotional-state/Content','Feeling satisfaction with things as they are.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (425,419,1,'Disgusted','Property/Agent-property/Agent-state/Agent-emotional-state/Disgusted','Feeling revulsion or profound disapproval aroused by something unpleasant or offensive.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (426,419,1,'Emotionally-neutral','Property/Agent-property/Agent-state/Agent-emotional-state/Emotionally-neutral','Feeling neither satisfied nor dissatisfied.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (427,419,1,'Empathetic','Property/Agent-property/Agent-state/Agent-emotional-state/Empathetic','Understanding and sharing the feelings of another. Being aware of, being sensitive to, and vicariously experiencing the feelings, thoughts, and experience of another.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (428,419,1,'Excited','Property/Agent-property/Agent-state/Agent-emotional-state/Excited','Feeling great enthusiasm and eagerness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (429,419,1,'Fearful','Property/Agent-property/Agent-state/Agent-emotional-state/Fearful','Feeling apprehension that one may be in danger.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (430,419,1,'Frustrated','Property/Agent-property/Agent-state/Agent-emotional-state/Frustrated','Feeling annoyed as a result of being blocked, thwarted, disappointed or defeated.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (431,419,1,'Grieving','Property/Agent-property/Agent-state/Agent-emotional-state/Grieving','Feeling sorrow in response to loss, whether physical or abstract.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (432,419,1,'Happy','Property/Agent-property/Agent-state/Agent-emotional-state/Happy','Feeling pleased and content.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (433,419,1,'Jealous','Property/Agent-property/Agent-state/Agent-emotional-state/Jealous','Feeling threatened by a rival in a relationship with another individual, in particular an intimate partner, usually involves feelings of threat, fear, suspicion, distrust, anxiety, anger, betrayal, and rejection.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (434,419,1,'Joyful','Property/Agent-property/Agent-state/Agent-emotional-state/Joyful','Feeling delight or intense happiness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (435,419,1,'Loving','Property/Agent-property/Agent-state/Agent-emotional-state/Loving','Feeling a strong positive emotion of affection and attraction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (436,419,1,'Relieved','Property/Agent-property/Agent-state/Agent-emotional-state/Relieved','No longer feeling pain, distress, anxiety, or reassured.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (437,419,1,'Sad','Property/Agent-property/Agent-state/Agent-emotional-state/Sad','Feeling grief or unhappiness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (438,419,1,'Stressed','Property/Agent-property/Agent-state/Agent-emotional-state/Stressed','Experiencing mental or emotional strain or tension.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (439,403,1,'Agent-physiological-state','Property/Agent-property/Agent-state/Agent-physiological-state','Having to do with the mechanical, physical, or biochemical function of an agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (440,439,1,'Healthy','Property/Agent-property/Agent-state/Agent-physiological-state/Healthy','Having no significant health-related issues.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (441,439,1,'Hungry','Property/Agent-property/Agent-state/Agent-physiological-state/Hungry','Being in a state of craving or desiring food.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (442,439,1,'Rested','Property/Agent-property/Agent-state/Agent-physiological-state/Rested','Feeling refreshed and relaxed.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (443,439,1,'Sated','Property/Agent-property/Agent-state/Agent-physiological-state/Sated','Feeling full.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (444,439,1,'Sick','Property/Agent-property/Agent-state/Agent-physiological-state/Sick','Being in a state of ill health, bodily malfunction, or discomfort.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (445,439,1,'Thirsty','Property/Agent-property/Agent-state/Agent-physiological-state/Thirsty','Feeling a need to drink.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (446,439,1,'Tired','Property/Agent-property/Agent-state/Agent-physiological-state/Tired','Feeling in need of sleep or rest.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (447,403,1,'Agent-postural-state','Property/Agent-property/Agent-state/Agent-postural-state','Pertaining to the position in which agent holds their body.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (448,447,1,'Crouching','Property/Agent-property/Agent-state/Agent-postural-state/Crouching','Adopting a position where the knees are bent and the upper body is brought forward and down, sometimes to avoid detection or to defend oneself.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (449,447,1,'Eyes-closed','Property/Agent-property/Agent-state/Agent-postural-state/Eyes-closed','Keeping eyes closed with no blinking.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (450,447,1,'Eyes-open','Property/Agent-property/Agent-state/Agent-postural-state/Eyes-open','Keeping eyes open with occasional blinking.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (451,447,1,'Kneeling','Property/Agent-property/Agent-state/Agent-postural-state/Kneeling','Positioned where one or both knees are on the ground.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (452,447,1,'On-treadmill','Property/Agent-property/Agent-state/Agent-postural-state/On-treadmill','Ambulation on an exercise apparatus with an endless moving belt to support moving in place.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (453,447,1,'Prone','Property/Agent-property/Agent-state/Agent-postural-state/Prone','Positioned in a recumbent body position whereby the person lies on its stomach and faces downward.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (454,447,1,'Sitting','Property/Agent-property/Agent-state/Agent-postural-state/Sitting','In a seated position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (455,447,1,'Standing','Property/Agent-property/Agent-state/Agent-postural-state/Standing','Assuming or maintaining an erect upright position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (456,447,1,'Seated-with-chin-rest','Property/Agent-property/Agent-state/Agent-postural-state/Seated-with-chin-rest','Using a device that supports the chin and head.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (457,402,1,'Agent-task-role','Property/Agent-property/Agent-task-role','The function or part that is ascribed to an agent in performing the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (458,457,1,'Experiment-actor','Property/Agent-property/Agent-task-role/Experiment-actor','An agent who plays a predetermined role to create the experiment scenario.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (459,457,1,'Experiment-controller','Property/Agent-property/Agent-task-role/Experiment-controller','An agent exerting control over some aspect of the experiment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (460,457,1,'Experiment-participant','Property/Agent-property/Agent-task-role/Experiment-participant','Someone who takes part in an activity related to an experiment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (461,457,1,'Experimenter','Property/Agent-property/Agent-task-role/Experimenter','Person who is the owner of the experiment and has its responsibility.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (462,402,1,'Agent-trait','Property/Agent-property/Agent-trait','A genetically, environmentally, or socially determined characteristic of an agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (463,462,1,'Age','Property/Agent-property/Agent-trait/Age','Length of time elapsed time since birth of the agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (464,462,1,'Agent-experience-level','Property/Agent-property/Agent-trait/Agent-experience-level','Amount of skill or knowledge that the agent has as pertains to the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (465,464,1,'Expert-level','Property/Agent-property/Agent-trait/Agent-experience-level/Expert-level','Having comprehensive and authoritative knowledge of or skill in a particular area related to the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (466,464,1,'Intermediate-experience-level','Property/Agent-property/Agent-trait/Agent-experience-level/Intermediate-experience-level','Having a moderate amount of knowledge or skill related to the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (467,464,1,'Novice-level','Property/Agent-property/Agent-trait/Agent-experience-level/Novice-level','Being inexperienced in a field or situation related to the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (468,462,1,'Gender','Property/Agent-property/Agent-trait/Gender','Characteristics that are socially constructed, including norms, behaviors, and roles based on sex.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (469,462,1,'Sex','Property/Agent-property/Agent-trait/Sex','Physical properties or qualities by which male is distinguished from female.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (470,469,1,'Female','Property/Agent-property/Agent-trait/Sex/Female','Biological sex of an individual with female sexual organs such ova.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (471,469,1,'Male','Property/Agent-property/Agent-trait/Sex/Male','Biological sex of an individual with male sexual organs producing sperm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (472,469,1,'Intersex','Property/Agent-property/Agent-trait/Sex/Intersex','Having genitalia and/or secondary sexual characteristics of indeterminate sex.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (473,462,1,'Handedness','Property/Agent-property/Agent-trait/Handedness','Individual preference for use of a hand, known as the dominant hand.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (474,473,1,'Left-handed','Property/Agent-property/Agent-trait/Handedness/Left-handed','Preference for using the left hand or foot for tasks requiring the use of a single hand or foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (475,473,1,'Right-handed','Property/Agent-property/Agent-trait/Handedness/Right-handed','Preference for using the right hand or foot for tasks requiring the use of a single hand or foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (476,473,1,'Ambidextrous','Property/Agent-property/Agent-trait/Handedness/Ambidextrous','Having no overall dominance in the use of right or left hand or foot in the performance of tasks that require one hand or foot.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (477,401,1,'Data-property','Property/Data-property','Something that pertains to data or information.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (478,477,1,'Data-marker','Property/Data-property/Data-marker','An indicator placed to mark something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (479,478,1,'Data-break-marker','Property/Data-property/Data-marker/Data-break-marker','An indicator place to indicate a gap in the data.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (480,478,1,'Temporal-marker','Property/Data-property/Data-marker/Temporal-marker','An indicator placed at a particular time in the data.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (481,480,1,'Onset','Property/Data-property/Data-marker/Temporal-marker/Onset','Labels the start or beginning of something, usually an event.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (482,480,1,'Offset','Property/Data-property/Data-marker/Temporal-marker/Offset','Labels the time at which something stops.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (483,480,1,'Pause','Property/Data-property/Data-marker/Temporal-marker/Pause','Indicates the temporary interruption of the operation a process and subsequently wait for a signal to continue.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (484,480,1,'Time-out','Property/Data-property/Data-marker/Temporal-marker/Time-out','A cancellation or cessation that automatically occurs when a predefined interval of time has passed without a certain event occurring.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (485,480,1,'Time-sync','Property/Data-property/Data-marker/Temporal-marker/Time-sync','A synchronization signal whose purpose to help synchronize different signals or processes. Often used to indicate a marker inserted into the recorded data to allow post hoc synchronization of concurrently recorded data streams.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (486,477,1,'Data-resolution','Property/Data-property/Data-resolution','Smallest change in a quality being measured by an sensor that causes a perceptible change.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (487,486,1,'Printer-resolution','Property/Data-property/Data-resolution/Printer-resolution','Resolution of a printer, usually expressed as the number of dots-per-inch for a printer.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (488,486,1,'Screen-resolution','Property/Data-property/Data-resolution/Screen-resolution','Resolution of a screen, usually expressed as the of pixels in a dimension for a digital display device.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (489,486,1,'Sensory-resolution','Property/Data-property/Data-resolution/Sensory-resolution','Resolution of measurements by a sensing device.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (490,486,1,'Spatial-resolution','Property/Data-property/Data-resolution/Spatial-resolution','Linear spacing of a spatial measurement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (491,486,1,'Spectral-resolution','Property/Data-property/Data-resolution/Spectral-resolution','Measures the ability of a sensor to resolve features in the electromagnetic spectrum.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (492,486,1,'Temporal-resolution','Property/Data-property/Data-resolution/Temporal-resolution','Measures the ability of a sensor to resolve features in time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (493,477,1,'Data-source-type','Property/Data-property/Data-source-type','The type of place, person, or thing from which the data comes or can be obtained.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (494,493,1,'Computed-feature','Property/Data-property/Data-source-type/Computed-feature','A feature computed from the data by a tool. This tag should be grouped with a label of the form Toolname_propertyName.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (495,493,1,'Computed-prediction','Property/Data-property/Data-source-type/Computed-prediction','A computed extrapolation of known data.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (496,493,1,'Expert-annotation','Property/Data-property/Data-source-type/Expert-annotation','An explanatory or critical comment or other in-context information provided by an authority.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (497,493,1,'Instrument-measurement','Property/Data-property/Data-source-type/Instrument-measurement','Information obtained from a device that is used to measure material properties or make other observations.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (498,493,1,'Observation','Property/Data-property/Data-source-type/Observation','Active acquisition of information from a primary source. Should be grouped with a label of the form AgentID_featureName.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (499,477,1,'Data-value','Property/Data-property/Data-value','Designation of the type of a data item.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (500,499,1,'Categorical-value','Property/Data-property/Data-value/Categorical-value','Indicates that something can take on a limited and usually fixed number of possible values.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (501,500,1,'Categorical-class-value','Property/Data-property/Data-value/Categorical-value/Categorical-class-value','Categorical values that fall into discrete classes such as true or false. The grouping is absolute in the sense that it is the same for all participants.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (502,501,1,'All','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/All','To a complete degree or to the full or entire extent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (503,501,1,'Correct','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Correct','Free from error. Especially conforming to fact or truth.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (504,501,1,'Explicit','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Explicit','Stated clearly and in detail, leaving no room for confusion or doubt.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (505,501,1,'False','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/False','Not in accordance with facts, reality or definitive criteria.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (506,501,1,'Implicit','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Implicit','Implied though not plainly expressed.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (507,501,1,'Invalid','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Invalid','Not allowed or not conforming to the correct format or specifications.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (508,501,1,'None','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/None','No person or thing, nobody, not any.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (509,501,1,'Some','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Some','At least a small amount or number of, but not a large amount of, or often.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (510,501,1,'True','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/True','Conforming to facts, reality or definitive criteria.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (511,501,1,'Valid','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Valid','Allowable, usable, or acceptable.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (512,501,1,'Wrong','Property/Data-property/Data-value/Categorical-value/Categorical-class-value/Wrong','Inaccurate or not correct.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (513,500,1,'Categorical-judgment-value','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value','Categorical values that are based on the judgment or perception of the participant such familiar and famous.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (514,513,1,'Abnormal','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Abnormal','Deviating in any way from the state, position, structure, condition, behavior, or rule which is considered a norm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (515,513,1,'Asymmetrical','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Asymmetrical','Lacking symmetry or having parts that fail to correspond to one another in shape, size, or arrangement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (516,513,1,'Audible','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Audible','A sound that can be perceived by the participant.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (517,513,1,'Congruent','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Congruent','Concordance of multiple evidence lines. In agreement or harmony.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (518,513,1,'Complex','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Complex','Hard, involved or complicated, elaborate, having many parts.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (519,513,1,'Constrained','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Constrained','Keeping something within particular limits or bounds.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (520,513,1,'Disordered','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Disordered','Not neatly arranged. Confused and untidy. A structural quality in which the parts of an object are non-rigid.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (521,513,1,'Familiar','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Familiar','Recognized, familiar, or within the scope of knowledge.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (522,513,1,'Famous','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Famous','A person who has a high degree of recognition by the general population for his or her success or accomplishments. A famous person.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (523,513,1,'Inaudible','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Inaudible','A sound below the threshold of perception of the participant.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (524,513,1,'Incongruent','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Incongruent','Not in agreement or harmony.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (525,513,1,'Involuntary','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Involuntary','An action that is not made by choice. In the body, involuntary actions (such as blushing) occur automatically, and cannot be controlled by choice.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (526,513,1,'Masked','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Masked','Information exists but is not provided or is partially obscured due to security, privacy, or other concerns.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (527,513,1,'Normal','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Normal','Being approximately average or within certain limits. Conforming with or constituting a norm or standard or level or type or social norm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (528,513,1,'Ordered','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Ordered','Conforming to a logical or comprehensible arrangement of separate elements.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (529,513,1,'Simple','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Simple','Easily understood or presenting no difficulties.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (530,513,1,'Symmetrical','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Symmetrical','Made up of exactly similar parts facing each other or around an axis. Showing aspects of symmetry.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (531,513,1,'Unconstrained','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Unconstrained','Moving without restriction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (532,513,1,'Unfamiliar','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Unfamiliar','Not having knowledge or experience of.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (533,513,1,'Unmasked','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Unmasked','Information is revealed.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (534,513,1,'Voluntary','Property/Data-property/Data-value/Categorical-value/Categorical-judgment-value/Voluntary','Using free will or design; not forced or compelled; controlled by individual volition.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (535,500,1,'Categorical-level-value','Property/Data-property/Data-value/Categorical-value/Categorical-level-value','Categorical values based on dividing a continuous variable into levels such as high and low.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (536,535,1,'Cold','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Cold','Having an absence of heat.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (537,535,1,'Deep','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Deep','Extending relatively far inward or downward.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (538,535,1,'High','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High','Having a greater than normal degree, intensity, or amount.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (539,535,1,'Hot','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Hot','Having an excess of heat.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (540,535,1,'Large','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Large','Having a great extent such as in physical dimensions, period of time, amplitude or frequency.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (541,535,1,'Liminal','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Liminal','Situated at a sensory threshold that is barely perceptible or capable of eliciting a response.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (542,535,1,'Loud','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Loud','Having a perceived high intensity of sound.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (543,535,1,'Low','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Low','Less than normal in degree, intensity or amount.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (544,535,1,'Medium','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Medium','Mid-way between small and large in number, quantity, magnitude or extent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (545,535,1,'Negative','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Negative','Involving disadvantage or harm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (546,535,1,'Positive','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Positive','Involving advantage or good.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (547,535,1,'Quiet','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Quiet','Characterizing a perceived low intensity of sound.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (548,535,1,'Rough','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Rough','Having a surface with perceptible bumps, ridges, or irregularities.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (549,535,1,'Shallow','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Shallow','Having a depth which is relatively low.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (550,535,1,'Small','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Small','Having a small extent such as in physical dimensions, period of time, amplitude or frequency.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (551,535,1,'Smooth','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Smooth','Having a surface free from bumps, ridges, or irregularities.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (552,535,1,'Subliminal','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Subliminal','Situated below a sensory threshold that is imperceptible or not capable of eliciting a response.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (553,535,1,'Supraliminal','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Supraliminal','Situated above a sensory threshold that is perceptible or capable of eliciting a response.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (554,535,1,'Thick','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Thick','Wide in width, extent or cross-section.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (555,535,1,'Thin','Property/Data-property/Data-value/Categorical-value/Categorical-level-value/Thin','Narrow in width, extent or cross-section.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (556,500,1,'Categorical-orientation-value','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value','Value indicating the orientation or direction of something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (557,556,1,'Backward','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Backward','Directed behind or to the rear.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (558,556,1,'Downward','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Downward','Moving or leading toward a lower place or level.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (559,556,1,'Forward','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Forward','At or near or directed toward the front.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (560,556,1,'Horizontally-oriented','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Horizontally-oriented','Oriented parallel to or in the plane of the horizon.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (561,556,1,'Leftward','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Leftward','Going toward or facing the left.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (562,556,1,'Oblique','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Oblique','Slanting or inclined in direction, course, or position that is neither parallel nor perpendicular nor right-angular.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (563,556,1,'Rightward','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Rightward','Going toward or situated on the right.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (564,556,1,'Rotated','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Rotated','Positioned offset around an axis or center.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (565,556,1,'Upward','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Upward','Moving, pointing, or leading to a higher place, point, or level.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (566,556,1,'Vertically-oriented','Property/Data-property/Data-value/Categorical-value/Categorical-orientation-value/Vertically-oriented','Oriented perpendicular to the plane of the horizon.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (567,499,1,'Physical-value','Property/Data-property/Data-value/Physical-value','The value of some physical property of something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (568,567,1,'Weight','Property/Data-property/Data-value/Physical-value/Weight','The relative mass or the quantity of matter contained by something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (569,567,1,'Temperature','Property/Data-property/Data-value/Physical-value/Temperature','A measure of hot or cold based on the average kinetic energy of the atoms or molecules in the system.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (570,499,1,'Quantitative-value','Property/Data-property/Data-value/Quantitative-value','Something capable of being estimated or expressed with numeric values.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (571,570,1,'Fraction','Property/Data-property/Data-value/Quantitative-value/Fraction','A numerical value between 0 and 1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (572,570,1,'Item-count','Property/Data-property/Data-value/Quantitative-value/Item-count','The integer count of something which is usually grouped with the entity it is counting. (Item-count/3, A) indicates that 3 of A have occurred up to this point.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (573,570,1,'Item-index','Property/Data-property/Data-value/Quantitative-value/Item-index','The index of an item in a collection, sequence or other structure. (A (Item-index/3, B)) means that A is item number 3 in B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (574,570,1,'Item-interval','Property/Data-property/Data-value/Quantitative-value/Item-interval','An integer indicating how many items or entities have passed since the last one of these. An item interval of 0 indicates the current item.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (575,570,1,'Percentage','Property/Data-property/Data-value/Quantitative-value/Percentage','A fraction or ratio with 100 understood as the denominator.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (576,570,1,'Ratio','Property/Data-property/Data-value/Quantitative-value/Ratio','A quotient of quantities of the same kind for different components within the same system.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (577,499,1,'Statistical-value','Property/Data-property/Data-value/Statistical-value','A value based on or employing the principles of statistics.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (578,577,1,'Data-maximum','Property/Data-property/Data-value/Statistical-value/Data-maximum','The largest possible quantity or degree.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (579,577,1,'Data-mean','Property/Data-property/Data-value/Statistical-value/Data-mean','The sum of a set of values divided by the number of values in the set.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (580,577,1,'Data-median','Property/Data-property/Data-value/Statistical-value/Data-median','The value which has an equal number of values greater and less than it.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (581,577,1,'Data-minimum','Property/Data-property/Data-value/Statistical-value/Data-minimum','The smallest possible quantity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (582,577,1,'Probability','Property/Data-property/Data-value/Statistical-value/Probability','A measure of the expectation of the occurrence of a particular event.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (583,577,1,'Standard-deviation','Property/Data-property/Data-value/Statistical-value/Standard-deviation','A measure of the range of values in a set of numbers. Standard deviation is a statistic used as a measure of the dispersion or variation in a distribution, equal to the square root of the arithmetic mean of the squares of the deviations from the arithmetic mean.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (584,577,1,'Statistical-accuracy','Property/Data-property/Data-value/Statistical-value/Statistical-accuracy','A measure of closeness to true value expressed as a number between 0 and 1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (585,577,1,'Statistical-precision','Property/Data-property/Data-value/Statistical-value/Statistical-precision','A quantitative representation of the degree of accuracy necessary for or associated with a particular action.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (586,577,1,'Statistical-recall','Property/Data-property/Data-value/Statistical-value/Statistical-recall','Sensitivity is a measurement datum qualifying a binary classification test and is computed by substracting the false negative rate to the integral numeral 1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (587,577,1,'Statistical-uncertainty','Property/Data-property/Data-value/Statistical-value/Statistical-uncertainty','A measure of the inherent variability of repeated observation measurements of a quantity including quantities evaluated by statistical methods and by other means.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (588,499,1,'Spatiotemporal-value','Property/Data-property/Data-value/Spatiotemporal-value','A property relating to space and/or time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (589,588,1,'Rate-of-change','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change','The amount of change accumulated per unit time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (590,589,1,'Acceleration','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Acceleration','Magnitude of the rate of change in either speed or direction. The direction of change should be given separately.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (591,589,1,'Frequency','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency','Frequency is the number of occurrences of a repeating event per unit time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (592,589,1,'Jerk-rate','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Jerk-rate','Magnitude of the rate at which the acceleration of an object changes with respect to time. The direction of change should be given separately.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (593,589,1,'Sampling-rate','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Sampling-rate','The number of digital samples taken or recorded per unit of time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (594,589,1,'Refresh-rate','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Refresh-rate','The frequency with which the image on a computer monitor or similar electronic display screen is refreshed, usually expressed in hertz.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (595,589,1,'Speed','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Speed','A scalar measure of the rate of movement of the object expressed either as the distance travelled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). The direction of change should be given separately.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (596,589,1,'Temporal-rate','Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Temporal-rate','The number of items per unit of time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (597,588,1,'Spatial-value','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value','Value of an item involving space.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (598,597,1,'Angle','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Angle','The amount of inclination of one line to another or the plane of one object to another.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (599,597,1,'Distance','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Distance','A measure of the space separating two objects or points.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (600,597,1,'Position','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position','A reference to the alignment of an object, a particular situation or view of a situation, or the location of an object. Coordinates with respect a specified frame of reference or the default Screen-frame if no frame is given.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (601,600,1,'X-position','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/X-position','The position along the x-axis of the frame of reference.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (602,600,1,'Y-position','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/Y-position','The position along the y-axis of the frame of reference.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (603,600,1,'Z-position','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Position/Z-position','The position along the z-axis of the frame of reference.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (604,597,1,'Size','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size','The physical magnitude of something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (605,604,1,'Area','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Area','The extent of a 2-dimensional surface enclosed within a boundary.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (606,604,1,'Depth','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Depth','The distance from the surface of something especially from the perspective of looking from the front.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (607,604,1,'Length','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Length','The linear extent in space from one end of something to the other end, or the extent of something from beginning to end.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (608,604,1,'Width','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Width','The extent or measurement of something from side to side.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (609,604,1,'Height','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Height','The vertical measurement or distance from the base to the top of an object.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (610,604,1,'Volume','Property/Data-property/Data-value/Spatiotemporal-value/Spatial-value/Size/Volume','The amount of three dimensional space occupied by an object or the capacity of a space or container.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (611,588,1,'Temporal-value','Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value','A characteristic of or relating to time or limited by time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (612,611,1,'Delay','Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Delay','Time during which some action is awaited.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (613,611,1,'Duration','Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Duration','The period of time during which something occurs or continues.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (614,611,1,'Time-interval','Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Time-interval','The period of time separating two instances, events, or occurrences.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (615,611,1,'Time-value','Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Time-value','A value with units of time. Usually grouped with tags identifying what the value represents.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (616,477,1,'Data-variability-attribute','Property/Data-property/Data-variability-attribute','An attribute describing how something changes or varies.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (617,616,1,'Abrupt','Property/Data-property/Data-variability-attribute/Abrupt','Marked by sudden change.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (618,616,1,'Constant','Property/Data-property/Data-variability-attribute/Constant','Continually recurring or continuing without interruption. Not changing in time or space.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (619,616,1,'Continuous','Property/Data-property/Data-variability-attribute/Continuous','Uninterrupted in time, sequence, substance, or extent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (620,616,1,'Decreasing','Property/Data-property/Data-variability-attribute/Decreasing','Becoming smaller or fewer in size, amount, intensity, or degree.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (621,616,1,'Deterministic','Property/Data-property/Data-variability-attribute/Deterministic','No randomness is involved in the development of the future states of the element.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (622,616,1,'Discontinuous','Property/Data-property/Data-variability-attribute/Discontinuous','Having a gap in time, sequence, substance, or extent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (623,616,1,'Discrete','Property/Data-property/Data-variability-attribute/Discrete','Constituting a separate entities or parts.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (624,616,1,'Flickering','Property/Data-property/Data-variability-attribute/Flickering','Moving irregularly or unsteadily or burning or shining fitfully or with a fluctuating light.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (625,616,1,'Estimated-value','Property/Data-property/Data-variability-attribute/Estimated-value','Something that has been calculated or measured approximately.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (626,616,1,'Exact-value','Property/Data-property/Data-variability-attribute/Exact-value','A value that is viewed to the true value according to some standard.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (627,616,1,'Fractal','Property/Data-property/Data-variability-attribute/Fractal','Having extremely irregular curves or shapes for which any suitably chosen part is similar in shape to a given larger or smaller part when magnified or reduced to the same size.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (628,616,1,'Increasing','Property/Data-property/Data-variability-attribute/Increasing','Becoming greater in size, amount, or degree.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (629,616,1,'Random','Property/Data-property/Data-variability-attribute/Random','Governed by or depending on chance. Lacking any definite plan or order or purpose.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (630,616,1,'Repetitive','Property/Data-property/Data-variability-attribute/Repetitive','A recurring action that is often non-purposeful.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (631,616,1,'Stochastic','Property/Data-property/Data-variability-attribute/Stochastic','Uses a random probability distribution or pattern that may be analysed statistically but may not be predicted precisely to determine future states.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (632,616,1,'Varying','Property/Data-property/Data-variability-attribute/Varying','Differing in size, amount, degree, or nature.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (633,401,1,'Environmental-property','Property/Environmental-property','Relating to or arising from the surroundings of an agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (634,633,1,'Indoors','Property/Environmental-property/Indoors','Located inside a building or enclosure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (635,633,1,'Outdoors','Property/Environmental-property/Outdoors','Any area outside a building or shelter.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (636,633,1,'Real-world','Property/Environmental-property/Real-world','Located in a place that exists in real space and time under realistic conditions.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (637,633,1,'Virtual-world','Property/Environmental-property/Virtual-world','Using technology that creates immersive, computer-generated experiences that a person can interact with and navigate through. The digital content is generally delivered to the user through some type of headset and responds to changes in head position or through interaction with other types of sensors. Existing in a virtual setting such as a simulation or game environment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (638,633,1,'Augmented-reality','Property/Environmental-property/Augmented-reality','Using technology that enhances real-world experiences with computer-derived digital overlays to change some aspects of perception of the natural environment. The digital content is shown to the user through a smart device or glasses and responds to changes in the environment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (639,633,1,'Motion-platform','Property/Environmental-property/Motion-platform','A mechanism that creates the feelings of being in a real motion environment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (640,633,1,'Urban','Property/Environmental-property/Urban','Relating to, located in, or characteristic of a city or densely populated area.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (641,633,1,'Rural','Property/Environmental-property/Rural','Of or pertaining to the country as opposed to the city.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (642,633,1,'Terrain','Property/Environmental-property/Terrain','Characterization of the physical features of a tract of land.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (643,642,1,'Composite-terrain','Property/Environmental-property/Terrain/Composite-terrain','Tracts of land characterized by a mixure of physical features.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (644,642,1,'Dirt-terrain','Property/Environmental-property/Terrain/Dirt-terrain','Tracts of land characterized by a soil surface and lack of vegetation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (645,642,1,'Grassy-terrain','Property/Environmental-property/Terrain/Grassy-terrain','Tracts of land covered by grass.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (646,642,1,'Gravel-terrain','Property/Environmental-property/Terrain/Gravel-terrain','Tracts of land covered by a surface consisting a loose aggregation of small water-worn or pounded stones.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (647,642,1,'Leaf-covered-terrain','Property/Environmental-property/Terrain/Leaf-covered-terrain','Tracts of land covered by leaves and composited organic material.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (648,642,1,'Muddy-terrain','Property/Environmental-property/Terrain/Muddy-terrain','Tracts of land covered by a liquid or semi-liquid mixture of water and some combination of soil, silt, and clay.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (649,642,1,'Paved-terrain','Property/Environmental-property/Terrain/Paved-terrain','Tracts of land covered with concrete, asphalt, stones, or bricks.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (650,642,1,'Rocky-terrain','Property/Environmental-property/Terrain/Rocky-terrain','Tracts of land consisting or full of rock or rocks.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (651,642,1,'Sloped-terrain','Property/Environmental-property/Terrain/Sloped-terrain','Tracts of land arranged in a sloping or inclined position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (652,642,1,'Uneven-terrain','Property/Environmental-property/Terrain/Uneven-terrain','Tracts of land that are not level, smooth, or regular.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (653,401,1,'Informational-property','Property/Informational-property','Something that pertains to a task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (654,653,1,'Description','Property/Informational-property/Description','An explanation of what the tag group it is in means. If the description is at the top-level of an event string, the description applies to the event.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (655,653,1,'ID','Property/Informational-property/ID','An alphanumeric name that identifies either a unique object or a unique class of objects. Here the object or class may be an idea, physical countable object (or class), or physical uncountable substance (or class).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (656,653,1,'Label','Property/Informational-property/Label','A string of 20 or fewer characters identifying something. Labels usually refer to general classes of things while IDs refer to specific instances. A term that is associated with some entity. A brief description given for purposes of identification. An identifying or descriptive marker that is attached to an object.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (657,653,1,'Metadata','Property/Informational-property/Metadata','Data about data. Information that describes another set of data.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (658,657,1,'CogAtlas','Property/Informational-property/Metadata/CogAtlas','The Cognitive Atlas ID number of something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (659,657,1,'CogPo','Property/Informational-property/Metadata/CogPo','The CogPO ID number of something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (660,657,1,'Creation-date','Property/Informational-property/Metadata/Creation-date','The date on which data creation of this element began.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (661,657,1,'Experimental-note','Property/Informational-property/Metadata/Experimental-note','A brief written record about the experiment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (662,657,1,'Library-name','Property/Informational-property/Metadata/Library-name','Official name of a HED library.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (663,657,1,'OBO-identifier','Property/Informational-property/Metadata/OBO-identifier','The identifier of a term in some Open Biology Ontology (OBO) ontology.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (664,657,1,'Pathname','Property/Informational-property/Metadata/Pathname','The specification of a node (file or directory) in a hierarchical file system, usually specified by listing the nodes top-down.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (665,657,1,'Subject-identifier','Property/Informational-property/Metadata/Subject-identifier','A sequence of characters used to identify, name, or characterize a trial or study subject.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (666,657,1,'Version-identifier','Property/Informational-property/Metadata/Version-identifier','An alphanumeric character string that identifies a form or variant of a type or original.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (667,653,1,'Parameter','Property/Informational-property/Parameter','Something user-defined for this experiment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (668,667,1,'Parameter-label','Property/Informational-property/Parameter/Parameter-label','The name of the parameter.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (669,667,1,'Parameter-value','Property/Informational-property/Parameter/Parameter-value','The value of the parameter.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (670,401,1,'Organizational-property','Property/Organizational-property','Relating to an organization or the action of organizing something.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (671,670,1,'Collection','Property/Organizational-property/Collection','A tag designating a grouping of items such as in a set or list.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (672,670,1,'Condition-variable','Property/Organizational-property/Condition-variable','An aspect of the experiment or task that is to be varied during the experiment. Task-conditions are sometimes called independent variables or contrasts.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (673,670,1,'Control-variable','Property/Organizational-property/Control-variable','An aspect of the experiment that is fixed throughout the study and usually is explicitly controlled.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (674,670,1,'Def','Property/Organizational-property/Def','A HED-specific utility tag used with a defined name to represent the tags associated with that definition.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (675,670,1,'Def-expand','Property/Organizational-property/Def-expand','A HED specific utility tag that is grouped with an expanded definition. The child value of the Def-expand is the name of the expanded definition.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (676,670,1,'Definition','Property/Organizational-property/Definition','A HED-specific utility tag whose child value is the name of the concept and the tag group associated with the tag is an English language explanation of a concept.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (677,670,1,'Event-context','Property/Organizational-property/Event-context','A special HED tag inserted as part of a top-level tag group to contain information about the interrelated conditions under which the event occurs. The event context includes information about other events that are ongoing when this event happens.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (678,670,1,'Event-stream','Property/Organizational-property/Event-stream','A special HED tag indicating that this event is a member of an ordered succession of events.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (679,670,1,'Experimental-intertrial','Property/Organizational-property/Experimental-intertrial','A tag used to indicate a part of the experiment between trials usually where nothing is happening.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (680,670,1,'Experimental-trial','Property/Organizational-property/Experimental-trial','Designates a run or execution of an activity, for example, one execution of a script. A tag used to indicate a particular organizational part in the experimental design often containing a stimulus-response pair or stimulus-response-feedback triad.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (681,670,1,'Indicator-variable','Property/Organizational-property/Indicator-variable','An aspect of the experiment or task that is measured as task conditions are varied during the experiment. Experiment indicators are sometimes called dependent variables.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (682,670,1,'Recording','Property/Organizational-property/Recording','A tag designating the data recording. Recording tags are usually have temporal scope which is the entire recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (683,670,1,'Task','Property/Organizational-property/Task','An assigned piece of work, usually with a time allotment. A tag used to indicate a linkage the structured activities performed as part of the experiment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (684,670,1,'Time-block','Property/Organizational-property/Time-block','A tag used to indicate a contiguous time block in the experiment during which something is fixed or noted.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (685,401,1,'Sensory-property','Property/Sensory-property','Relating to sensation or the physical senses.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (686,685,1,'Sensory-attribute','Property/Sensory-property/Sensory-attribute','A sensory characteristic associated with another entity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (687,686,1,'Auditory-attribute','Property/Sensory-property/Sensory-attribute/Auditory-attribute','Pertaining to the sense of hearing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (688,687,1,'Loudness','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Loudness','Perceived intensity of a sound.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (689,687,1,'Pitch','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Pitch','A perceptual property that allows the user to order sounds on a frequency scale.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (690,687,1,'Sound-envelope','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope','Description of how a sound changes over time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (691,690,1,'Sound-envelope-attack','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-attack','The time taken for initial run-up of level from nil to peak usually beginning when the key on a musical instrument is pressed.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (692,690,1,'Sound-envelope-decay','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-decay','The time taken for the subsequent run down from the attack level to the designated sustain level.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (693,690,1,'Sound-envelope-release','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-release','The time taken for the level to decay from the sustain level to zero after the key is released.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (694,690,1,'Sound-envelope-sustain','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-envelope/Sound-envelope-sustain','The time taken for the main sequence of the sound duration, until the key is released.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (695,687,1,'Timbre','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Timbre','The perceived sound quality of a singing voice or musical instrument.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (696,687,1,'Sound-volume','Property/Sensory-property/Sensory-attribute/Auditory-attribute/Sound-volume','The sound pressure level (SPL) usually the ratio to a reference signal estimated as the lower bound of hearing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (697,686,1,'Gustatory-attribute','Property/Sensory-property/Sensory-attribute/Gustatory-attribute','Pertaining to the sense of taste.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (698,697,1,'Bitter','Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Bitter','Having a sharp, pungent taste.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (699,697,1,'Salty','Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Salty','Tasting of or like salt.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (700,697,1,'Savory','Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Savory','Belonging to a taste that is salty or spicy rather than sweet.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (701,697,1,'Sour','Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Sour','Having a sharp, acidic taste.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (702,697,1,'Sweet','Property/Sensory-property/Sensory-attribute/Gustatory-attribute/Sweet','Having or resembling the taste of sugar.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (703,686,1,'Olfactory-attribute','Property/Sensory-property/Sensory-attribute/Olfactory-attribute','Having a smell.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (704,686,1,'Somatic-attribute','Property/Sensory-property/Sensory-attribute/Somatic-attribute','Pertaining to the feelings in the body or of the nervous system.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (705,704,1,'Pain','Property/Sensory-property/Sensory-attribute/Somatic-attribute/Pain','The sensation of discomfort, distress, or agony, resulting from the stimulation of specialized nerve endings.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (706,704,1,'Stress','Property/Sensory-property/Sensory-attribute/Somatic-attribute/Stress','The negative mental, emotional, and physical reactions that occur when environmental stressors are perceived as exceeding the adaptive capacities of the individual.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (707,686,1,'Tactile-attribute','Property/Sensory-property/Sensory-attribute/Tactile-attribute','Pertaining to the sense of touch.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (708,707,1,'Tactile-pressure','Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-pressure','Having a feeling of heaviness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (709,707,1,'Tactile-temperature','Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-temperature','Having a feeling of hotness or coldness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (710,707,1,'Tactile-texture','Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-texture','Having a feeling of roughness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (711,707,1,'Tactile-vibration','Property/Sensory-property/Sensory-attribute/Tactile-attribute/Tactile-vibration','Having a feeling of mechanical oscillation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (712,686,1,'Vestibular-attribute','Property/Sensory-property/Sensory-attribute/Vestibular-attribute','Pertaining to the sense of balance or body position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (713,686,1,'Visual-attribute','Property/Sensory-property/Sensory-attribute/Visual-attribute','Pertaining to the sense of sight.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (714,713,1,'Color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color','The appearance of objects (or light sources) described in terms of perception of their hue and lightness (or brightness) and saturation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (715,714,1,'CSS-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color','One of 140 colors supported by all browsers. For more details such as the color RGB or HEX values, check: https://www.w3schools.com/colors/colors_groups.asp.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (716,715,1,'Blue-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (717,716,1,'CadetBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/CadetBlue','CSS-color 0x5F9EA0.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (718,716,1,'SteelBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/SteelBlue','CSS-color 0x4682B4.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (719,716,1,'LightSteelBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/LightSteelBlue','CSS-color 0xB0C4DE.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (720,716,1,'LightBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/LightBlue','CSS-color 0xADD8E6.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (721,716,1,'PowderBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/PowderBlue','CSS-color 0xB0E0E6.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (722,716,1,'LightSkyBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/LightSkyBlue','CSS-color 0x87CEFA.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (723,716,1,'SkyBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/SkyBlue','CSS-color 0x87CEEB.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (724,716,1,'CornflowerBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/CornflowerBlue','CSS-color 0x6495ED.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (725,716,1,'DeepSkyBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/DeepSkyBlue','CSS-color 0x00BFFF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (726,716,1,'DodgerBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/DodgerBlue','CSS-color 0x1E90FF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (727,716,1,'RoyalBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/RoyalBlue','CSS-color 0x4169E1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (728,716,1,'Blue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/Blue','CSS-color 0x0000FF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (729,716,1,'MediumBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/MediumBlue','CSS-color 0x0000CD.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (730,716,1,'DarkBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/DarkBlue','CSS-color 0x00008B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (731,716,1,'Navy','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/Navy','CSS-color 0x000080.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (732,716,1,'MidnightBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Blue-color/MidnightBlue','CSS-color 0x191970.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (733,715,1,'Brown-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (734,733,1,'Cornsilk','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Cornsilk','CSS-color 0xFFF8DC.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (735,733,1,'BlanchedAlmond','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/BlanchedAlmond','CSS-color 0xFFEBCD.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (736,733,1,'Bisque','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Bisque','CSS-color 0xFFE4C4.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (737,733,1,'NavajoWhite','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/NavajoWhite','CSS-color 0xFFDEAD.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (738,733,1,'Wheat','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Wheat','CSS-color 0xF5DEB3.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (739,733,1,'BurlyWood','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/BurlyWood','CSS-color 0xDEB887.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (740,733,1,'Tan','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Tan','CSS-color 0xD2B48C.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (741,733,1,'RosyBrown','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/RosyBrown','CSS-color 0xBC8F8F.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (742,733,1,'SandyBrown','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/SandyBrown','CSS-color 0xF4A460.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (743,733,1,'GoldenRod','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/GoldenRod','CSS-color 0xDAA520.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (744,733,1,'DarkGoldenRod','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/DarkGoldenRod','CSS-color 0xB8860B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (745,733,1,'Peru','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Peru','CSS-color 0xCD853F.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (746,733,1,'Chocolate','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Chocolate','CSS-color 0xD2691E.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (747,733,1,'Olive','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Olive','CSS-color 0x808000.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (748,733,1,'SaddleBrown','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/SaddleBrown','CSS-color 0x8B4513.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (749,733,1,'Sienna','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Sienna','CSS-color 0xA0522D.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (750,733,1,'Brown','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Brown','CSS-color 0xA52A2A.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (751,733,1,'Maroon','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Brown-color/Maroon','CSS-color 0x800000.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (752,715,1,'Cyan-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (753,752,1,'Aqua','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Aqua','CSS-color 0x00FFFF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (754,752,1,'Cyan','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Cyan','CSS-color 0x00FFFF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (755,752,1,'LightCyan','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/LightCyan','CSS-color 0xE0FFFF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (756,752,1,'PaleTurquoise','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/PaleTurquoise','CSS-color 0xAFEEEE.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (757,752,1,'Aquamarine','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Aquamarine','CSS-color 0x7FFFD4.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (758,752,1,'Turquoise','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/Turquoise','CSS-color 0x40E0D0.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (759,752,1,'MediumTurquoise','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/MediumTurquoise','CSS-color 0x48D1CC.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (760,752,1,'DarkTurquoise','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Cyan-color/DarkTurquoise','CSS-color 0x00CED1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (761,715,1,'Green-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (762,761,1,'GreenYellow','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/GreenYellow','CSS-color 0xADFF2F.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (763,761,1,'Chartreuse','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Chartreuse','CSS-color 0x7FFF00.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (764,761,1,'LawnGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LawnGreen','CSS-color 0x7CFC00.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (765,761,1,'Lime','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Lime','CSS-color 0x00FF00.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (766,761,1,'LimeGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LimeGreen','CSS-color 0x32CD32.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (767,761,1,'PaleGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/PaleGreen','CSS-color 0x98FB98.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (768,761,1,'LightGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LightGreen','CSS-color 0x90EE90.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (769,761,1,'MediumSpringGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/MediumSpringGreen','CSS-color 0x00FA9A.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (770,761,1,'SpringGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/SpringGreen','CSS-color 0x00FF7F.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (771,761,1,'MediumSeaGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/MediumSeaGreen','CSS-color 0x3CB371.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (772,761,1,'SeaGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/SeaGreen','CSS-color 0x2E8B57.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (773,761,1,'ForestGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/ForestGreen','CSS-color 0x228B22.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (774,761,1,'Green','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Green','CSS-color 0x008000.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (775,761,1,'DarkGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkGreen','CSS-color 0x006400.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (776,761,1,'YellowGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/YellowGreen','CSS-color 0x9ACD32.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (777,761,1,'OliveDrab','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/OliveDrab','CSS-color 0x6B8E23.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (778,761,1,'DarkOliveGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkOliveGreen','CSS-color 0x556B2F.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (779,761,1,'MediumAquaMarine','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/MediumAquaMarine','CSS-color 0x66CDAA.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (780,761,1,'DarkSeaGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkSeaGreen','CSS-color 0x8FBC8F.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (781,761,1,'LightSeaGreen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/LightSeaGreen','CSS-color 0x20B2AA.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (782,761,1,'DarkCyan','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/DarkCyan','CSS-color 0x008B8B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (783,761,1,'Teal','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Green-color/Teal','CSS-color 0x008080.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (784,715,1,'Gray-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (785,784,1,'Gainsboro','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Gainsboro','CSS-color 0xDCDCDC.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (786,784,1,'LightGray','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/LightGray','CSS-color 0xD3D3D3.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (787,784,1,'Silver','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Silver','CSS-color 0xC0C0C0.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (788,784,1,'DarkGray','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/DarkGray','CSS-color 0xA9A9A9.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (789,784,1,'DimGray','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/DimGray','CSS-color 0x696969.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (790,784,1,'Gray','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Gray','CSS-color 0x808080.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (791,784,1,'LightSlateGray','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/LightSlateGray','CSS-color 0x778899.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (792,784,1,'SlateGray','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/SlateGray','CSS-color 0x708090.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (793,784,1,'DarkSlateGray','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/DarkSlateGray','CSS-color 0x2F4F4F.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (794,784,1,'Black','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Gray-color/Black','CSS-color 0x000000.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (795,715,1,'Orange-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (796,795,1,'Orange','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/Orange','CSS-color 0xFFA500.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (797,795,1,'DarkOrange','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/DarkOrange','CSS-color 0xFF8C00.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (798,795,1,'Coral','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/Coral','CSS-color 0xFF7F50.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (799,795,1,'Tomato','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/Tomato','CSS-color 0xFF6347.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (800,795,1,'OrangeRed','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Orange-color/OrangeRed','CSS-color 0xFF4500.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (801,715,1,'Pink-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (802,801,1,'Pink','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/Pink','CSS-color 0xFFC0CB.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (803,801,1,'LightPink','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/LightPink','CSS-color 0xFFB6C1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (804,801,1,'HotPink','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/HotPink','CSS-color 0xFF69B4.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (805,801,1,'DeepPink','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/DeepPink','CSS-color 0xFF1493.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (806,801,1,'PaleVioletRed','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/PaleVioletRed','CSS-color 0xDB7093.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (807,801,1,'MediumVioletRed','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Pink-color/MediumVioletRed','CSS-color 0xC71585.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (808,715,1,'Purple-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (809,808,1,'Lavender','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Lavender','CSS-color 0xE6E6FA.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (810,808,1,'Thistle','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Thistle','CSS-color 0xD8BFD8.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (811,808,1,'Plum','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Plum','CSS-color 0xDDA0DD.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (812,808,1,'Orchid','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Orchid','CSS-color 0xDA70D6.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (813,808,1,'Violet','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Violet','CSS-color 0xEE82EE.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (814,808,1,'Fuchsia','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Fuchsia','CSS-color 0xFF00FF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (815,808,1,'Magenta','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Magenta','CSS-color 0xFF00FF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (816,808,1,'MediumOrchid','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/MediumOrchid','CSS-color 0xBA55D3.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (817,808,1,'DarkOrchid','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkOrchid','CSS-color 0x9932CC.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (818,808,1,'DarkViolet','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkViolet','CSS-color 0x9400D3.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (819,808,1,'BlueViolet','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/BlueViolet','CSS-color 0x8A2BE2.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (820,808,1,'DarkMagenta','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkMagenta','CSS-color 0x8B008B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (821,808,1,'Purple','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Purple','CSS-color 0x800080.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (822,808,1,'MediumPurple','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/MediumPurple','CSS-color 0x9370DB.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (823,808,1,'MediumSlateBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/MediumSlateBlue','CSS-color 0x7B68EE.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (824,808,1,'SlateBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/SlateBlue','CSS-color 0x6A5ACD.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (825,808,1,'DarkSlateBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/DarkSlateBlue','CSS-color 0x483D8B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (826,808,1,'RebeccaPurple','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/RebeccaPurple','CSS-color 0x663399.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (827,808,1,'Indigo','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Purple-color/Indigo','CSS-color 0x4B0082.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (828,715,1,'Red-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (829,828,1,'LightSalmon','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/LightSalmon','CSS-color 0xFFA07A.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (830,828,1,'Salmon','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/Salmon','CSS-color 0xFA8072.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (831,828,1,'DarkSalmon','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/DarkSalmon','CSS-color 0xE9967A.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (832,828,1,'LightCoral','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/LightCoral','CSS-color 0xF08080.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (833,828,1,'IndianRed','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/IndianRed','CSS-color 0xCD5C5C.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (834,828,1,'Crimson','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/Crimson','CSS-color 0xDC143C.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (835,828,1,'Red','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/Red','CSS-color 0xFF0000.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (836,828,1,'FireBrick','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/FireBrick','CSS-color 0xB22222.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (837,828,1,'DarkRed','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Red-color/DarkRed','CSS-color 0x8B0000.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (838,715,1,'Yellow-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (839,838,1,'Gold','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Gold','CSS-color 0xFFD700.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (840,838,1,'Yellow','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Yellow','CSS-color 0xFFFF00.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (841,838,1,'LightYellow','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/LightYellow','CSS-color 0xFFFFE0.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (842,838,1,'LemonChiffon','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/LemonChiffon','CSS-color 0xFFFACD.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (843,838,1,'LightGoldenRodYellow','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/LightGoldenRodYellow','CSS-color 0xFAFAD2.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (844,838,1,'PapayaWhip','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/PapayaWhip','CSS-color 0xFFEFD5.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (845,838,1,'Moccasin','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Moccasin','CSS-color 0xFFE4B5.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (846,838,1,'PeachPuff','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/PeachPuff','CSS-color 0xFFDAB9.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (847,838,1,'PaleGoldenRod','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/PaleGoldenRod','CSS-color 0xEEE8AA.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (848,838,1,'Khaki','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/Khaki','CSS-color 0xF0E68C.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (849,838,1,'DarkKhaki','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/Yellow-color/DarkKhaki','CSS-color 0xBDB76B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (850,715,1,'White-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color','CSS color group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (851,850,1,'White','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/White','CSS-color 0xFFFFFF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (852,850,1,'Snow','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Snow','CSS-color 0xFFFAFA.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (853,850,1,'HoneyDew','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/HoneyDew','CSS-color 0xF0FFF0.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (854,850,1,'MintCream','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/MintCream','CSS-color 0xF5FFFA.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (855,850,1,'Azure','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Azure','CSS-color 0xF0FFFF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (856,850,1,'AliceBlue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/AliceBlue','CSS-color 0xF0F8FF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (857,850,1,'GhostWhite','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/GhostWhite','CSS-color 0xF8F8FF.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (858,850,1,'WhiteSmoke','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/WhiteSmoke','CSS-color 0xF5F5F5.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (859,850,1,'SeaShell','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/SeaShell','CSS-color 0xFFF5EE.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (860,850,1,'Beige','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Beige','CSS-color 0xF5F5DC.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (861,850,1,'OldLace','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/OldLace','CSS-color 0xFDF5E6.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (862,850,1,'FloralWhite','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/FloralWhite','CSS-color 0xFFFAF0.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (863,850,1,'Ivory','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Ivory','CSS-color 0xFFFFF0.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (864,850,1,'AntiqueWhite','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/AntiqueWhite','CSS-color 0xFAEBD7.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (865,850,1,'Linen','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/Linen','CSS-color 0xFAF0E6.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (866,850,1,'LavenderBlush','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/LavenderBlush','CSS-color 0xFFF0F5.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (867,850,1,'MistyRose','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/CSS-color/White-color/MistyRose','CSS-color 0xFFE4E1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (868,714,1,'Color-shade','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Color-shade','A slight degree of difference between colors, especially with regard to how light or dark it is or as distinguished from one nearly like it.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (869,868,1,'Dark-shade','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Color-shade/Dark-shade','A color tone not reflecting much light.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (870,868,1,'Light-shade','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Color-shade/Light-shade','A color tone reflecting more light.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (871,714,1,'Grayscale','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/Grayscale','Using a color map composed of shades of gray, varying from black at the weakest intensity to white at the strongest.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (872,714,1,'HSV-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color','A color representation that models how colors appear under light.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (873,872,1,'Hue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color/Hue','Attribute of a visual sensation according to which an area appears to be similar to one of the perceived colors.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (874,872,1,'Saturation','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color/Saturation','Colorfulness of a stimulus relative to its own brightness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (875,872,1,'HSV-value','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/HSV-color/HSV-value','An attribute of a visual sensation according to which an area appears to emit more or less light.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (876,714,1,'RGB-color','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color','A color from the RGB schema.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (877,876,1,'RGB-red','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color/RGB-red','The red component.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (878,876,1,'RGB-blue','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color/RGB-blue','The blue component.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (879,876,1,'RGB-green','Property/Sensory-property/Sensory-attribute/Visual-attribute/Color/RGB-color/RGB-green','The green component.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (880,713,1,'Luminance','Property/Sensory-property/Sensory-attribute/Visual-attribute/Luminance','A quality that exists by virtue of the luminous intensity per unit area projected in a given direction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (881,713,1,'Opacity','Property/Sensory-property/Sensory-attribute/Visual-attribute/Opacity','A measure of impenetrability to light.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (882,685,1,'Sensory-presentation','Property/Sensory-property/Sensory-presentation','The entity has a sensory manifestation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (883,882,1,'Auditory-presentation','Property/Sensory-property/Sensory-presentation/Auditory-presentation','The sense of hearing is used in the presentation to the user.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (884,883,1,'Loudspeaker-separation','Property/Sensory-property/Sensory-presentation/Auditory-presentation/Loudspeaker-separation','The distance between two loudspeakers. Grouped with the Distance tag.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (885,883,1,'Monophonic','Property/Sensory-property/Sensory-presentation/Auditory-presentation/Monophonic','Relating to sound transmission, recording, or reproduction involving a single transmission path.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (886,883,1,'Silent','Property/Sensory-property/Sensory-presentation/Auditory-presentation/Silent','The absence of ambient audible sound or the state of having ceased to produce sounds.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (887,883,1,'Stereophonic','Property/Sensory-property/Sensory-presentation/Auditory-presentation/Stereophonic','Relating to, or constituting sound reproduction involving the use of separated microphones and two transmission channels to achieve the sound separation of a live hearing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (888,882,1,'Gustatory-presentation','Property/Sensory-property/Sensory-presentation/Gustatory-presentation','The sense of taste used in the presentation to the user.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (889,882,1,'Olfactory-presentation','Property/Sensory-property/Sensory-presentation/Olfactory-presentation','The sense of smell used in the presentation to the user.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (890,882,1,'Somatic-presentation','Property/Sensory-property/Sensory-presentation/Somatic-presentation','The nervous system is used in the presentation to the user.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (891,882,1,'Tactile-presentation','Property/Sensory-property/Sensory-presentation/Tactile-presentation','The sense of touch used in the presentation to the user.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (892,882,1,'Vestibular-presentation','Property/Sensory-property/Sensory-presentation/Vestibular-presentation','The sense balance used in the presentation to the user.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (893,882,1,'Visual-presentation','Property/Sensory-property/Sensory-presentation/Visual-presentation','The sense of sight used in the presentation to the user.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (894,893,1,'2D-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/2D-view','A view showing only two dimensions.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (895,893,1,'3D-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/3D-view','A view showing three dimensions.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (896,893,1,'Background-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view','Parts of the view that are farthest from the viewer and usually the not part of the visual focus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (897,893,1,'Bistable-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Bistable-view','Something having two stable visual forms that have two distinguishable stable forms as in optical illusions.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (898,893,1,'Foreground-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view','Parts of the view that are closest to the viewer and usually the most important part of the visual focus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (899,893,1,'Foveal-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Foveal-view','Visual presentation directly on the fovea. A view projected on the small depression in the retina containing only cones and where vision is most acute.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (900,893,1,'Map-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view','A diagrammatic representation of an area of land or sea showing physical features, cities, roads.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (901,900,1,'Aerial-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view/Aerial-view','Elevated view of an object from above, with a perspective as though the observer were a bird.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (902,900,1,'Satellite-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view/Satellite-view','A representation as captured by technology such as a satellite.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (903,900,1,'Street-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Map-view/Street-view','A 360-degrees panoramic view from a position on the ground.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (904,893,1,'Peripheral-view','Property/Sensory-property/Sensory-presentation/Visual-presentation/Peripheral-view','Indirect vision as it occurs outside the point of fixation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (905,401,1,'Task-property','Property/Task-property','Something that pertains to a task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (906,905,1,'Task-attentional-demand','Property/Task-property/Task-attentional-demand','Strategy for allocating attention toward goal-relevant information.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (907,906,1,'Bottom-up-attention','Property/Task-property/Task-attentional-demand/Bottom-up-attention','Attentional guidance purely by externally driven factors to stimuli that are salient because of their inherent properties relative to the background. Sometimes this is referred to as stimulus driven.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (908,906,1,'Covert-attention','Property/Task-property/Task-attentional-demand/Covert-attention','Paying attention without moving the eyes.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (909,906,1,'Divided-attention','Property/Task-property/Task-attentional-demand/Divided-attention','Integrating parallel multiple stimuli. Behavior involving responding simultaneously to multiple tasks or multiple task demands.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (910,906,1,'Focused-attention','Property/Task-property/Task-attentional-demand/Focused-attention','Responding discretely to specific visual, auditory, or tactile stimuli.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (911,906,1,'Orienting-attention','Property/Task-property/Task-attentional-demand/Orienting-attention','Directing attention to a target stimulus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (912,906,1,'Overt-attention','Property/Task-property/Task-attentional-demand/Overt-attention','Selectively processing one location over others by moving the eyes to point at that location.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (913,906,1,'Selective-attention','Property/Task-property/Task-attentional-demand/Selective-attention','Maintaining a behavioral or cognitive set in the face of distracting or competing stimuli. Ability to pay attention to a limited array of all available sensory information.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (914,906,1,'Sustained-attention','Property/Task-property/Task-attentional-demand/Sustained-attention','Maintaining a consistent behavioral response during continuous and repetitive activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (915,906,1,'Switched-attention','Property/Task-property/Task-attentional-demand/Switched-attention','Having to switch attention between two or more modalities of presentation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (916,906,1,'Top-down-attention','Property/Task-property/Task-attentional-demand/Top-down-attention','Voluntary allocation of attention to certain features. Sometimes this is referred to goal-oriented attention.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (917,905,1,'Task-effect-evidence','Property/Task-property/Task-effect-evidence','The evidence supporting the conclusion that the event had the specified effect.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (918,917,1,'Computational-evidence','Property/Task-property/Task-effect-evidence/Computational-evidence','A type of evidence in which data are produced, and/or generated, and/or analyzed on a computer.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (919,917,1,'External-evidence','Property/Task-property/Task-effect-evidence/External-evidence','A phenomenon that follows and is caused by some previous phenomenon.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (920,917,1,'Intended-effect','Property/Task-property/Task-effect-evidence/Intended-effect','A phenomenon that is intended to follow and be caused by some previous phenomenon.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (921,917,1,'Behavioral-evidence','Property/Task-property/Task-effect-evidence/Behavioral-evidence','An indication or conclusion based on the behavior of an agent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (922,905,1,'Task-event-role','Property/Task-property/Task-event-role','The purpose of an event with respect to the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (923,922,1,'Experimental-stimulus','Property/Task-property/Task-event-role/Experimental-stimulus','Part of something designed to elicit a response in the experiment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (924,922,1,'Incidental','Property/Task-property/Task-event-role/Incidental','A sensory or other type of event that is unrelated to the task or experiment.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (925,922,1,'Instructional','Property/Task-property/Task-event-role/Instructional','Usually associated with a sensory event intended to give instructions to the participant about the task or behavior.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (926,922,1,'Mishap','Property/Task-property/Task-event-role/Mishap','Unplanned disruption such as an equipment or experiment control abnormality or experimenter error.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (927,922,1,'Participant-response','Property/Task-property/Task-event-role/Participant-response','Something related to a participant actions in performing the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (928,922,1,'Task-activity','Property/Task-property/Task-event-role/Task-activity','Something that is part of the overall task or is necessary to the overall experiment but is not directly part of a stimulus-response cycle. Examples would be taking a survey or provided providing a silva sample.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (929,922,1,'Warning','Property/Task-property/Task-event-role/Warning','Something that should warn the participant that the parameters of the task have been or are about to be exceeded such as a warning message about getting too close to the shoulder of the road in a driving task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (930,905,1,'Task-action-type','Property/Task-property/Task-action-type','How an agent action should be interpreted in terms of the task specification.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (931,930,1,'Appropriate-action','Property/Task-property/Task-action-type/Appropriate-action','An action suitable or proper in the circumstances.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (932,930,1,'Correct-action','Property/Task-property/Task-action-type/Correct-action','An action that was a correct response in the context of the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (933,930,1,'Correction','Property/Task-property/Task-action-type/Correction','An action offering an improvement to replace a mistake or error.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (934,930,1,'Done-indication','Property/Task-property/Task-action-type/Done-indication','An action that indicates that the participant has completed this step in the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (935,930,1,'Incorrect-action','Property/Task-property/Task-action-type/Incorrect-action','An action considered wrong or incorrect in the context of the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (936,930,1,'Imagined-action','Property/Task-property/Task-action-type/Imagined-action','Form a mental image or concept of something. This is used to identity something that only happened in the imagination of the participant as in imagined movements in motor imagery paradigms.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (937,930,1,'Inappropriate-action','Property/Task-property/Task-action-type/Inappropriate-action','An action not in keeping with what is correct or proper for the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (938,930,1,'Indeterminate-action','Property/Task-property/Task-action-type/Indeterminate-action','An action that cannot be distinguished between two or more possibibities in the current context. This tag might be applied when an outside evaluator or a classification algorithm cannot determine a definitive result.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (939,930,1,'Omitted-action','Property/Task-property/Task-action-type/Omitted-action','An expected response was skipped.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (940,930,1,'Miss','Property/Task-property/Task-action-type/Miss','An action considered to be a failure in the context of the task. For example, if the agent is supposed to try to hit a target and misses.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (941,930,1,'Near-miss','Property/Task-property/Task-action-type/Near-miss','An action barely satisfied the requirements of the task. In a driving experiment for example this could pertain to a narrowly avoided collision or other accident.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (942,930,1,'Ready-indication','Property/Task-property/Task-action-type/Ready-indication','An action that indicates that the participant is ready to perform the next step in the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (943,905,1,'Task-relationship','Property/Task-property/Task-relationship','Specifying organizational importance of sub-tasks.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (944,943,1,'Background-subtask','Property/Task-property/Task-relationship/Background-subtask','A part of the task which should be performed in the background as for example inhibiting blinks due to instruction while performing the primary task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (945,943,1,'Primary-subtask','Property/Task-property/Task-relationship/Primary-subtask','A part of the task which should be the primary focus of the participant.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (946,905,1,'Task-stimulus-role','Property/Task-property/Task-stimulus-role','The role the stimulus plays in the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (947,946,1,'Cue','Property/Task-property/Task-stimulus-role/Cue','A signal for an action, a pattern of stimuli indicating a particular response.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (948,946,1,'Distractor','Property/Task-property/Task-stimulus-role/Distractor','A person or thing that distracts or a plausible but incorrect option in a multiple-choice question. In pyschological studies this is sometimes referred to as a foil.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (949,946,1,'Expected','Property/Task-property/Task-stimulus-role/Expected','Considered likely, probable or anticipated. Something of low information value as in frequent non-targets in an RSVP paradigm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (950,946,1,'Extraneous','Property/Task-property/Task-stimulus-role/Extraneous','Irrelevant or unrelated to the subject being dealt with.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (951,946,1,'Feedback','Property/Task-property/Task-stimulus-role/Feedback','An evaluative response to an inquiry, process, event, or activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (952,946,1,'Go-signal','Property/Task-property/Task-stimulus-role/Go-signal','An indicator to proceed with a planned action.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (953,946,1,'Meaningful','Property/Task-property/Task-stimulus-role/Meaningful','Conveying significant or relevant information.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (954,946,1,'Newly-learned','Property/Task-property/Task-stimulus-role/Newly-learned','Representing recently acquired information or understanding.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (955,946,1,'Non-informative','Property/Task-property/Task-stimulus-role/Non-informative','Something that is not useful in forming an opinion or judging an outcome.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (956,946,1,'Non-target','Property/Task-property/Task-stimulus-role/Non-target','Something other than that done or looked for. Also tag Expected if the Non-target is frequent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (957,946,1,'Not-meaningful','Property/Task-property/Task-stimulus-role/Not-meaningful','Not having a serious, important, or useful quality or purpose.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (958,946,1,'Novel','Property/Task-property/Task-stimulus-role/Novel','Having no previous example or precedent or parallel.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (959,946,1,'Oddball','Property/Task-property/Task-stimulus-role/Oddball','Something unusual, or infrequent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (960,946,1,'Planned','Property/Task-property/Task-stimulus-role/Planned','Something that was decided on or arranged in advance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (961,946,1,'Penalty','Property/Task-property/Task-stimulus-role/Penalty','A disadvantage, loss, or hardship due to some action.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (962,946,1,'Priming','Property/Task-property/Task-stimulus-role/Priming','An implicit memory effect in which exposure to a stimulus influences response to a later stimulus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (963,946,1,'Query','Property/Task-property/Task-stimulus-role/Query','A sentence of inquiry that asks for a reply.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (964,946,1,'Reward','Property/Task-property/Task-stimulus-role/Reward','A positive reinforcement for a desired action, behavior or response.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (965,946,1,'Stop-signal','Property/Task-property/Task-stimulus-role/Stop-signal','An indicator that the agent should stop the current activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (966,946,1,'Target','Property/Task-property/Task-stimulus-role/Target','Something fixed as a goal, destination, or point of examination.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (967,946,1,'Threat','Property/Task-property/Task-stimulus-role/Threat','An indicator that signifies hostility and predicts an increased probability of attack.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (968,946,1,'Timed','Property/Task-property/Task-stimulus-role/Timed','Something planned or scheduled to be done at a particular time or lasting for a specified amount of time.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (969,946,1,'Unexpected','Property/Task-property/Task-stimulus-role/Unexpected','Something that is not anticipated.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (970,946,1,'Unplanned','Property/Task-property/Task-stimulus-role/Unplanned','Something that has not been planned as part of the task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (971,NULL,1,'Relation','Relation','Concerns the way in which two or more people or things are connected.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (972,971,1,'Comparative-relation','Relation/Comparative-relation','Something considered in comparison to something else. The first argument is the focus.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (973,972,1,'Approximately-equal-to','Relation/Comparative-relation/Approximately-equal-to','(A, (Approximately-equal-to, B)) indicates that A and B have almost the same value. Here A and B could refer to sizes, orders, positions or other quantities.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (974,972,1,'Less-than','Relation/Comparative-relation/Less-than','(A, (Less-than, B)) indicates that A is smaller than B. Here A and B could refer to sizes, orders, positions or other quantities.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (975,972,1,'Less-than-or-equal-to','Relation/Comparative-relation/Less-than-or-equal-to','(A, (Less-than-or-equal-to, B)) indicates that the relative size or order of A is smaller than or equal to B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (976,972,1,'Greater-than','Relation/Comparative-relation/Greater-than','(A, (Greater-than, B)) indicates that the relative size or order of A is bigger than that of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (977,972,1,'Greater-than-or-equal-to','Relation/Comparative-relation/Greater-than-or-equal-to','(A, (Greater-than-or-equal-to, B)) indicates that the relative size or order of A is bigger than or the same as that of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (978,972,1,'Equal-to','Relation/Comparative-relation/Equal-to','(A, (Equal-to, B)) indicates that the size or order of A is the same as that of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (979,972,1,'Not-equal-to','Relation/Comparative-relation/Not-equal-to','(A, (Not-equal-to, B)) indicates that the size or order of A is not the same as that of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (980,971,1,'Connective-relation','Relation/Connective-relation','Indicates two items are related in some way.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (981,980,1,'Belongs-to','Relation/Connective-relation/Belongs-to','(A, (Belongs-to, B)) indicates that A is a member of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (982,980,1,'Connected-to','Relation/Connective-relation/Connected-to','(A, (Connected-to, B)) indicates that A is related to B in some respect, usually through a direct link.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (983,980,1,'Contained-in','Relation/Connective-relation/Contained-in','(A, (Contained-in, B)) indicates that A is completely inside of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (984,980,1,'Described-by','Relation/Connective-relation/Described-by','(A, (Described-by, B)) indicates that B provides information about A.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (985,980,1,'From-to','Relation/Connective-relation/From-to','(A, (From-to, B)) indicates a directional relation from A to B. A is considered the source.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (986,980,1,'Group-of','Relation/Connective-relation/Group-of','(A, (Group-of, B)) indicates A is a group of items of type B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (987,980,1,'Implied-by','Relation/Connective-relation/Implied-by','(A, (Implied-by, B)) indicates B is suggested by A.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (988,980,1,'Includes','Relation/Connective-relation/Includes','(A, (Includes, B)) indicates that A has B as a member or part.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (989,980,1,'Interacts-with','Relation/Connective-relation/Interacts-with','(A, (Interacts-with, B)) indicates A and B interact, possibly reciprocally.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (990,980,1,'Member-of','Relation/Connective-relation/Member-of','(A, (Member-of, B)) indicates A is a member of group B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (991,980,1,'Part-of','Relation/Connective-relation/Part-of','(A, (Part-of, B)) indicates A is a part of the whole B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (992,980,1,'Performed-by','Relation/Connective-relation/Performed-by','(A, (Performed-by, B)) indicates that the action or procedure A was carried out by agent B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (993,980,1,'Performed-using','Relation/Connective-relation/Performed-using','A, (Performed-using, B)) indicates that the action or procedure A was accomplished using B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (994,980,1,'Related-to','Relation/Connective-relation/Related-to','(A, (Related-to, B)) indicates A has some relationship to B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (995,980,1,'Unrelated-to','Relation/Connective-relation/Unrelated-to','(A, (Unrelated-to, B)) indicates that A is not related to B. For example, A is not related to Task.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (996,971,1,'Directional-relation','Relation/Directional-relation','A relationship indicating direction of change.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (997,996,1,'Away-from','Relation/Directional-relation/Away-from','(A, (Away-from, B)) indicates that A is going or has moved away from B. The meaning depends on A and B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (998,996,1,'Towards','Relation/Directional-relation/Towards','(A, (Towards, B)) indicates that A is going to or has moved to B. The meaning depends on A and B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (999,971,1,'Spatial-relation','Relation/Spatial-relation','Indicating information about position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1000,999,1,'Above','Relation/Spatial-relation/Above','(A, (Above, B)) means A is in a place or position that is higher than B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1001,999,1,'Across-from','Relation/Spatial-relation/Across-from','(A, (Across-from, B)) means A is on the opposite side of something from B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1002,999,1,'Adjacent-to','Relation/Spatial-relation/Adjacent-to','(A, (Adjacent-to, B)) indicates that A is next to B in time or space.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1003,999,1,'Ahead-of','Relation/Spatial-relation/Ahead-of','(A, (Ahead-of, B)) indicates that A is further forward in time or space in B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1004,999,1,'Around','Relation/Spatial-relation/Around','(A, (Around, B)) means A is in or near the present place or situation of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1005,999,1,'Behind','Relation/Spatial-relation/Behind','(A, (Behind, B)) means A is at or to the far side of B, typically so as to be hidden by it.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1006,999,1,'Below','Relation/Spatial-relation/Below','(A, (Below, B)) means A is in a place or position that is lower than the position of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1007,999,1,'Between','Relation/Spatial-relation/Between','(A, (Between, (B, C))) means A is in the space or interval separating B and C.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1008,999,1,'Bilateral-to','Relation/Spatial-relation/Bilateral-to','(A, (Bilateral, B)) means A is on both sides of B or affects both sides of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1009,999,1,'Bottom-edge-of','Relation/Spatial-relation/Bottom-edge-of','(A, (Bottom-edge-of, B)) means A is on the bottom most part or or near the boundary of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1010,999,1,'Boundary-of','Relation/Spatial-relation/Boundary-of','(A, (Boundary-of, B)) means A is on or part of the edge or boundary of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1011,999,1,'Center-of','Relation/Spatial-relation/Center-of','(A, (Center-of, B)) means A is at a point or or in an area that is approximately central within B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1012,999,1,'Close-to','Relation/Spatial-relation/Close-to','(A, (Close-to, B)) means A is at a small distance from or is located near in space to B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1013,999,1,'Far-from','Relation/Spatial-relation/Far-from','(A, (Far-from, B)) means A is at a large distance from or is not located near in space to B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1014,999,1,'In-front-of','Relation/Spatial-relation/In-front-of','(A, (In-front-of, B)) means A is in a position just ahead or at the front part of B, potentially partially blocking B from view.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1015,999,1,'Left-edge-of','Relation/Spatial-relation/Left-edge-of','(A, (Left-edge-of, B)) means A is located on the left side of B on or near the boundary of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1016,999,1,'Left-side-of','Relation/Spatial-relation/Left-side-of','(A, (Left-side-of, B)) means A is located on the left side of B usually as part of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1017,999,1,'Lower-left-of','Relation/Spatial-relation/Lower-left-of','(A, (Lower-left-of, B)) means A is situated on the lower left part of B. This relation is often used to specify qualitative information about screen position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1018,999,1,'Lower-right-of','Relation/Spatial-relation/Lower-right-of','(A, (Lower-right-of, B)) means A is situated on the lower right part of B. This relation is often used to specify qualitative information about screen position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1019,999,1,'Outside-of','Relation/Spatial-relation/Outside-of','(A, (Outside-of, B)) means A is located in the space around but not including B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1020,999,1,'Over','Relation/Spatial-relation/Over','(A, (Over, B)) means A above is above B so as to cover or protect or A extends over the a general area as from a from a vantage point.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1021,999,1,'Right-edge-of','Relation/Spatial-relation/Right-edge-of','(A, (Right-edge-of, B)) means A is located on the right side of B on or near the boundary of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1022,999,1,'Right-side-of','Relation/Spatial-relation/Right-side-of','(A, (Right-side-of, B)) means A is located on the right side of B usually as part of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1023,999,1,'To-left-of','Relation/Spatial-relation/To-left-of','(A, (To-left-of, B)) means A is located on or directed toward the side to the west of B when B is facing north. This term is used when A is not part of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1024,999,1,'To-right-of','Relation/Spatial-relation/To-right-of','(A, (To-right-of, B)) means A is located on or directed toward the side to the east of B when B is facing north. This term is used when A is not part of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1025,999,1,'Top-edge-of','Relation/Spatial-relation/Top-edge-of','(A, (Top-edge-of, B)) means A is on the uppermost part or or near the boundary of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1026,999,1,'Top-of','Relation/Spatial-relation/Top-of','(A, (Top-of, B)) means A is on the uppermost part, side, or surface of B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1027,999,1,'Upper-left-of','Relation/Spatial-relation/Upper-left-of','(A, (Upper-left-of, B)) means A is situated on the upper left part of B. This relation is often used to specify qualitative information about screen position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1028,999,1,'Upper-right-of','Relation/Spatial-relation/Upper-right-of','(A, (Upper-right-of, B)) means A is situated on the upper right part of B. This relation is often used to specify qualitative information about screen position.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1029,999,1,'Underneath','Relation/Spatial-relation/Underneath','(A, (Underneath, B)) means A is situated directly below and may be concealed by B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1030,999,1,'Within','Relation/Spatial-relation/Within','(A, (Within, B)) means A is on the inside of or contained in B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1031,971,1,'Temporal-relation','Relation/Temporal-relation','Any relationship which includes a temporal or time-based component.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1032,1031,1,'After','Relation/Temporal-relation/After','(A, (After B)) means A happens at a time subsequent to a reference time related to B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1033,1031,1,'Asynchronous-with','Relation/Temporal-relation/Asynchronous-with','(A, (Asynchronous-with, B)) means A happens at times not occurring at the same time or having the same period or phase as B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1034,1031,1,'Before','Relation/Temporal-relation/Before','(A, (Before B)) means A happens at a time earlier in time or order than B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1035,1031,1,'During','Relation/Temporal-relation/During','(A, (During, B)) means A happens at some point in a given period of time in which B is ongoing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1036,1031,1,'Synchronous-with','Relation/Temporal-relation/Synchronous-with','(A, (Synchronous-with, B)) means A happens at occurs at the same time or rate as B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1037,1031,1,'Waiting-for','Relation/Temporal-relation/Waiting-for','(A, (Waiting-for, B)) means A pauses for something to happen in B.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1038,NULL,2,'Modulator','Modulator','External stimuli / interventions or changes in the alertness level (sleep) that modify: the background activity, or how often a graphoelement is occurring, or change other features of the graphoelement (like intra-burst frequency). For each observed finding, there is an option of specifying how they are influenced by the modulators and procedures that were done during the recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1039,1038,2,'Sleep-modulator','Modulator/Sleep-modulator','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1040,1039,2,'Sleep-deprivation','Modulator/Sleep-modulator/Sleep-deprivation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1041,1039,2,'Sleep-following-sleep-deprivation','Modulator/Sleep-modulator/Sleep-following-sleep-deprivation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1042,1039,2,'Natural-sleep','Modulator/Sleep-modulator/Natural-sleep','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1043,1039,2,'Induced-sleep','Modulator/Sleep-modulator/Induced-sleep','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1044,1039,2,'Drowsiness','Modulator/Sleep-modulator/Drowsiness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1045,1039,2,'Awakening','Modulator/Sleep-modulator/Awakening','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1046,1038,2,'Medication-modulator','Modulator/Medication-modulator','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1047,1046,2,'Medication-administered-during-recording','Modulator/Medication-modulator/Medication-administered-during-recording','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1048,1046,2,'Medication-withdrawal-or-reduction-during-recording','Modulator/Medication-modulator/Medication-withdrawal-or-reduction-during-recording','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1049,1038,2,'Eye-modulator','Modulator/Eye-modulator','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1050,1049,2,'Manual-eye-closure','Modulator/Eye-modulator/Manual-eye-closure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1051,1049,2,'Manual-eye-opening','Modulator/Eye-modulator/Manual-eye-opening','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1052,1038,2,'Stimulation-modulator','Modulator/Stimulation-modulator','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1053,1052,2,'Intermittent-photic-stimulation','Modulator/Stimulation-modulator/Intermittent-photic-stimulation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1054,1052,2,'Auditory-stimulation','Modulator/Stimulation-modulator/Auditory-stimulation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1055,1052,2,'Nociceptive-stimulation','Modulator/Stimulation-modulator/Nociceptive-stimulation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1056,1038,2,'Hyperventilation','Modulator/Hyperventilation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1057,1038,2,'Physical-effort','Modulator/Physical-effort','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1058,1038,2,'Cognitive-task','Modulator/Cognitive-task','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1059,1038,2,'Other-modulator-or-procedure','Modulator/Other-modulator-or-procedure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1060,NULL,2,'Background-activity','Background-activity','An EEG activity representing the setting in which a given normal or abnormal pattern appears and from which such pattern is distinguished.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1061,1060,2,'Posterior-dominant-rhythm','Background-activity/Posterior-dominant-rhythm','Rhythmic activity occurring during wakefulness over the posterior regions of the head, generally with maximum amplitudes over the occipital areas. Amplitude varies. Best seen with eyes closed and during physical relaxation and relative mental inactivity. Blocked or attenuated by attention, especially visual, and mental effort. In adults this is the alpha rhythm, and the frequency is 8 to 13 Hz. However the frequency can be higher or lower than this range (often a supra or sub harmonic of alpha frequency) and is called alpha variant rhythm (fast and slow alpha variant rhythm). In children, the normal range of the frequency of the posterior dominant rhythm is age-dependant.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1062,1060,2,'Mu-rhythm','Background-activity/Mu-rhythm','EEG rhythm at 7-11 Hz composed of arch-shaped waves occurring over the central or centro-parietal regions of the scalp during wakefulness. Amplitudes varies but is mostly below 50 microV. Blocked or attenuated most clearly by contralateral movement, thought of movement, readiness to move or tactile stimulation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1063,1060,2,'Other-organized-rhythm','Background-activity/Other-organized-rhythm','EEG activity that consisting of waves of approximately constant period, which is considered as part of the background (ongoing) activity, but does not fulfill the criteria of the posterior dominant rhythm.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1064,1060,2,'Background-activity-special-feature','Background-activity/Background-activity-special-feature','Special Features. Special features contains scoring options for the background activity of critically ill patients.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1065,1064,2,'Continuous-background-activity','Background-activity/Background-activity-special-feature/Continuous-background-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1066,1064,2,'Nearly-continuous-background-activity','Background-activity/Background-activity-special-feature/Nearly-continuous-background-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1067,1064,2,'Discontinuous-background-activity','Background-activity/Background-activity-special-feature/Discontinuous-background-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1068,1064,2,'Background-burst-suppression','Background-activity/Background-activity-special-feature/Background-burst-suppression','EEG pattern consisting of bursts (activity appearing and disappearing abruptly) interrupted by periods of low amplitude (below 20 microV) and which occurs simultaneously over all head regions.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1069,1064,2,'Background-burst-attenuation','Background-activity/Background-activity-special-feature/Background-burst-attenuation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1070,1064,2,'Background-activity-suppression','Background-activity/Background-activity-special-feature/Background-activity-suppression','Periods showing activity under 10 microV (referential montage) and interrupting the background (ongoing) activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1071,1064,2,'Electrocerebral-inactivity','Background-activity/Background-activity-special-feature/Electrocerebral-inactivity','Absence of any ongoing cortical electric activities; in all leads EEG is isoelectric or only contains artifacts. Sensitivity has to be increased up to 2 microV/mm; recording time: at least 30 minutes.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1072,NULL,2,'Sleep-and-drowsiness','Sleep-and-drowsiness','The features of the ongoing activity during sleep are scored here. If abnormal graphoelements appear, disappear or change their morphology during sleep, that is not scored here but at the entry corresponding to that graphooelement (as a modulator).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1073,1072,2,'Sleep-architecture','Sleep-and-drowsiness/Sleep-architecture','For longer recordings. Only to be scored if whole-night sleep is part of the recording. It is a global descriptor of the structure and pattern of sleep: estimation of the amount of time spent in REM and NREM sleep, sleep duration, NREM-REM cycle.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1074,1073,2,'Normal-sleep-architecture','Sleep-and-drowsiness/Sleep-architecture/Normal-sleep-architecture','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1075,1073,2,'Abnormal-sleep-architecture','Sleep-and-drowsiness/Sleep-architecture/Abnormal-sleep-architecture','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1076,1072,2,'Sleep-stage-reached','Sleep-and-drowsiness/Sleep-stage-reached','For normal sleep patterns the sleep stages reached during the recording can be specified');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1077,1076,2,'Sleep-stage-N1','Sleep-and-drowsiness/Sleep-stage-reached/Sleep-stage-N1','Sleep stage 1.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1078,1076,2,'Sleep-stage-N2','Sleep-and-drowsiness/Sleep-stage-reached/Sleep-stage-N2','Sleep stage 2.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1079,1076,2,'Sleep-stage-N3','Sleep-and-drowsiness/Sleep-stage-reached/Sleep-stage-N3','Sleep stage 3.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1080,1076,2,'Sleep-stage-REM','Sleep-and-drowsiness/Sleep-stage-reached/Sleep-stage-REM','Rapid eye movement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1081,1072,2,'Sleep-spindles','Sleep-and-drowsiness/Sleep-spindles','Burst at 11-15 Hz but mostly at 12-14 Hz generally diffuse but of higher voltage over the central regions of the head, occurring during sleep. Amplitude varies but is mostly below 50 microV in the adult.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1082,1072,2,'Arousal-pattern','Sleep-and-drowsiness/Arousal-pattern','Arousal pattern in children. Prolonged, marked high voltage 4-6/s activity in all leads with some intermixed slower frequencies, in children.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1083,1072,2,'Frontal-arousal-rhythm','Sleep-and-drowsiness/Frontal-arousal-rhythm','Prolonged (up to 20s) rhythmical sharp or spiky activity over the frontal areas (maximum over the frontal midline) seen at arousal from sleep in children with minimal cerebral dysfunction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1084,1072,2,'Vertex-wave','Sleep-and-drowsiness/Vertex-wave','Sharp potential, maximal at the vertex, negative relative to other areas, apparently occurring spontaneously during sleep or in response to a sensory stimulus during sleep or wakefulness. May be single or repetitive. Amplitude varies but rarely exceeds 250 microV. Abbreviation: V wave. Synonym: vertex sharp wave.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1085,1072,2,'K-complex','Sleep-and-drowsiness/K-complex','A burst of somewhat variable appearance, consisting most commonly of a high voltage negative slow wave followed by a smaller positive slow wave frequently associated with a sleep spindle. Duration greater than 0.5 s. Amplitude is generally maximal in the frontal vertex. K complexes occur during nonREM sleep, apparently spontaneously, or in response to sudden sensory / auditory stimuli, and are not specific for any individual sensory modality.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1086,1072,2,'Saw-tooth-waves','Sleep-and-drowsiness/Saw-tooth-waves','Vertex negative 2-5 Hz waves occuring in series during REM sleep');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1087,1072,2,'POSTS','Sleep-and-drowsiness/POSTS','Positive occipital sharp transients of sleep. Sharp transient maximal over the occipital regions, positive relative to other areas, apparently occurring spontaneously during sleep. May be single or repetitive. Amplitude varies but is generally bellow 50 microV.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1088,1072,2,'Hypnagogic-hypersynchrony','Sleep-and-drowsiness/Hypnagogic-hypersynchrony','Bursts of bilateral, synchronous delta or theta activity of large amplitude, occasionally with superimposed faster components, occurring during falling asleep or during awakening, in children.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1089,1072,2,'Non-reactive-sleep','Sleep-and-drowsiness/Non-reactive-sleep','EEG activity consisting of normal sleep graphoelements, but which cannot be interrupted by external stimuli/ the patient cannot be waken.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1090,NULL,2,'Interictal-finding','Interictal-finding','EEG pattern / transient that is distinguished form the background activity, considered abnormal, but is not recorded during ictal period (seizure) or postictal period; the presence of an interictal finding does not necessarily imply that the patient has epilepsy.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1091,1090,2,'Epileptiform-interictal-activity','Interictal-finding/Epileptiform-interictal-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1092,1090,2,'Abnormal-interictal-rhythmic-activity','Interictal-finding/Abnormal-interictal-rhythmic-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1093,1090,2,'Interictal-special-patterns','Interictal-finding/Interictal-special-patterns','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1094,1093,2,'Interictal-periodic-discharges','Interictal-finding/Interictal-special-patterns/Interictal-periodic-discharges','Periodic discharge not further specified (PDs).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1095,1094,2,'Generalized-periodic-discharges','Interictal-finding/Interictal-special-patterns/Interictal-periodic-discharges/Generalized-periodic-discharges','GPDs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1096,1094,2,'Lateralized-periodic-discharges','Interictal-finding/Interictal-special-patterns/Interictal-periodic-discharges/Lateralized-periodic-discharges','LPDs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1097,1094,2,'Bilateral-independent-periodic-discharges','Interictal-finding/Interictal-special-patterns/Interictal-periodic-discharges/Bilateral-independent-periodic-discharges','BIPDs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1098,1094,2,'Multifocal-periodic-discharges','Interictal-finding/Interictal-special-patterns/Interictal-periodic-discharges/Multifocal-periodic-discharges','MfPDs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1099,1093,2,'Extreme-delta-brush','Interictal-finding/Interictal-special-patterns/Extreme-delta-brush','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1100,NULL,2,'Critically-ill-patients-patterns','Critically-ill-patients-patterns','Rhythmic or periodic patterns in critically ill patients (RPPs) are scored according to the 2012 version of the American Clinical Neurophysiology Society Standardized Critical Care EEG Terminology (Hirsch et al., 2013).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1101,1100,2,'Critically-ill-patients-periodic-discharges','Critically-ill-patients-patterns/Critically-ill-patients-periodic-discharges','Periodic discharges (PDs).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1102,1100,2,'Rhythmic-delta-activity','Critically-ill-patients-patterns/Rhythmic-delta-activity','RDA');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1103,1100,2,'Spike-or-sharp-and-wave','Critically-ill-patients-patterns/Spike-or-sharp-and-wave','SW');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1104,NULL,2,'Episode','Episode','Clinical episode or electrographic seizure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1105,1104,2,'Epileptic-seizure','Episode/Epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1106,1105,2,'Focal-onset-epileptic-seizure','Episode/Epileptic-seizure/Focal-onset-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1107,1106,2,'Aware-focal-onset-epileptic-seizure','Episode/Epileptic-seizure/Focal-onset-epileptic-seizure/Aware-focal-onset-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1108,1106,2,'Impaired-awareness-focal-onset-epileptic-seizure','Episode/Epileptic-seizure/Focal-onset-epileptic-seizure/Impaired-awareness-focal-onset-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1109,1106,2,'Awareness-unknown-focal-onset-epileptic-seizure','Episode/Epileptic-seizure/Focal-onset-epileptic-seizure/Awareness-unknown-focal-onset-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1110,1106,2,'Focal-to-bilateral-tonic-clonic-focal-onset-epileptic-seizure','Episode/Epileptic-seizure/Focal-onset-epileptic-seizure/Focal-to-bilateral-tonic-clonic-focal-onset-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1111,1105,2,'Generalized-onset-epileptic-seizure','Episode/Epileptic-seizure/Generalized-onset-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1112,1105,2,'Unknown-onset-epileptic-seizure','Episode/Epileptic-seizure/Unknown-onset-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1113,1105,2,'Unclassified-epileptic-seizure','Episode/Epileptic-seizure/Unclassified-epileptic-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1114,1104,2,'Subtle-seizure','Episode/Subtle-seizure','Seizure type frequent in neonates, sometimes referred to as motor automatisms; they may include random and roving eye movements, sucking, chewing motions, tongue protrusion, rowing or swimming or boxing movements of the arms, pedaling and bicycling movements of the lower limbs; apneic seizures are relatively common. Although some subtle seizures are associated with rhythmic ictal EEG discharges, and are clearly epileptic, ictal EEG often does not show typical epileptic activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1115,1104,2,'Electrographic-seizure','Episode/Electrographic-seizure','Referred usually to non convulsive status. Ictal EEG: rhythmic discharge or spike and wave pattern with definite evolution in frequency, location, or morphology lasting at least 10 s; evolution in amplitude alone did not qualify.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1116,1104,2,'Seizure-PNES','Episode/Seizure-PNES','Psychogenic non-epileptic seizure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1117,1104,2,'Sleep-related-episode','Episode/Sleep-related-episode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1118,1117,2,'Sleep-related-arousal','Episode/Sleep-related-episode/Sleep-related-arousal','Normal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1119,1117,2,'Benign-sleep-myoclonus','Episode/Sleep-related-episode/Benign-sleep-myoclonus','A distinctive disorder of sleep characterized by a) neonatal onset, b) rhythmic myoclonic jerks only during sleep and c) abrupt and consistent cessation with arousal, d) absence of concomitant electrographic changes suggestive of seizures, and e) good outcome.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1120,1117,2,'Confusional-awakening','Episode/Sleep-related-episode/Confusional-awakening','Episode of non epileptic nature included in NREM parasomnias, characterized by sudden arousal and complex behavior but without full alertness, usually lasting a few minutes and occurring almost in all children at least occasionally. Amnesia of the episode is the rule.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1121,1117,2,'Sleep-periodic-limb-movement','Episode/Sleep-related-episode/Sleep-periodic-limb-movement','PLMS. Periodic limb movement in sleep. Episodes are characterized by brief (0.5- to 5.0-second) lower-extremity movements during sleep, which typically occur at 20- to 40-second intervals, most commonly during the first 3 hours of sleep. The affected individual is usually not aware of the movements or of the transient partial arousals.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1122,1117,2,'REM-sleep-behavioral-disorder','Episode/Sleep-related-episode/REM-sleep-behavioral-disorder','REM sleep behavioral disorder. Episodes characterized by: a) presence of REM sleep without atonia (RSWA) on polysomnography (PSG); b) presence of at least 1 of the following conditions - (1) Sleep-related behaviors, by history, that have been injurious, potentially injurious, or disruptive (example: dream enactment behavior); (2) abnormal REM sleep behavior documented during PSG monitoring; (3) absence of epileptiform activity on electroencephalogram (EEG) during REM sleep (unless RBD can be clearly distinguished from any concurrent REM sleep-related seizure disorder); (4) sleep disorder not better explained by another sleep disorder, a medical or neurologic disorder, a mental disorder, medication use, or a substance use disorder.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1123,1117,2,'Sleep-walking','Episode/Sleep-related-episode/Sleep-walking','Episodes characterized by ambulation during sleep; the patient is difficult to arouse during an episode, and is usually amnesic following the episode. Episodes usually occur in the first third of the night during slow wave sleep. Polysomnographic recordings demonstrate 2 abnormalities during the first sleep cycle: frequent, brief, non-behavioral EEG-defined arousals prior to the somnambulistic episode and abnormally low gamma (0.75-2.0 Hz) EEG power on spectral analysis, correlating with high-voltage (hyper-synchronic gamma) waves lasting 10 to 15 s occurring just prior to the movement. This is followed by stage I NREM sleep, and there is no evidence of complete awakening.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1124,1104,2,'Pediatric-episode','Episode/Pediatric-episode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1125,1124,2,'Hyperekplexia','Episode/Pediatric-episode/Hyperekplexia','Disorder characterized by exaggerated startle response and hypertonicity that may occur during the first year of life and in severe cases during the neonatal period. Children usually present with marked irritability and recurrent startles in response to handling and sounds. Severely affected infants can have severe jerks and stiffening, sometimes with breath-holding spells.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1126,1124,2,'Jactatio-capitis-nocturna','Episode/Pediatric-episode/Jactatio-capitis-nocturna','Relatively common in normal children at the time of going to bed, especially during the first year of life, the rhythmic head movements persist during sleep. Usually, these phenomena disappear before 3 years of age.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1127,1124,2,'Pavor-nocturnus','Episode/Pediatric-episode/Pavor-nocturnus','A nocturnal episode characterized by age of onset of less than five years (mean age 18 months, with peak prevalence at five to seven years), appearance of signs of panic two hours after falling asleep with crying, screams, a fearful expression, inability to recognize other people including parents (for a duration of 5-15 minutes), amnesia upon awakening. Pavor nocturnus occurs in patients almost every night for months or years (but the frequency is highly variable and may be as low as once a month) and is likely to disappear spontaneously at the age of six to eight years.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1128,1124,2,'Pediatric-stereotypical-behavior-episode','Episode/Pediatric-episode/Pediatric-stereotypical-behavior-episode','Repetitive motor behavior in children, typically rhythmic and persistent; usually not paroxysmal and rarely suggest epilepsy. They include headbanging, head-rolling, jactatio capitis nocturna, body rocking, buccal or lingual movements, hand flapping and related mannerisms, repetitive hand-waving (to self-induce photosensitive seizures).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1129,1104,2,'Paroxysmal-motor-event','Episode/Paroxysmal-motor-event','Paroxysmal phenomena during neonatal or childhood periods characterized by recurrent motor or behavioral signs or symptoms that must be distinguishes from epileptic disorders.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1130,1104,2,'Syncope','Episode/Syncope','Episode with loss of consciousness and muscle tone that is abrupt in onset, of short duration and followed by rapid recovery; it occurs in response to transient impairment of cerebral perfusion. Typical prodromal symptoms often herald onset of syncope and postictal symptoms are minimal. Syncopal convulsions resulting from cerebral anoxia are common but are not a form of epilepsy, nor are there any accompanying EEG ictal discharges.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1131,1104,2,'Cataplexy','Episode/Cataplexy','A sudden decrement in muscle tone and loss of deep tendon reflexes, leading to muscle weakness, paralysis, or postural collapse. Cataplexy usually is precipitated by an outburst of emotional expression-notably laughter, anger, or startle. It is one of the tetrad of symptoms of narcolepsy. During cataplexy, respiration and voluntary eye movements are not compromised. Consciousness is preserved.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1132,1104,2,'Other-episode','Episode/Other-episode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1133,NULL,2,'Physiologic-pattern','Physiologic-pattern','EEG graphoelements or rhythms that are considered normal. They only should be scored if the physician considers that they have a specific clinical significance for the recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1134,1133,2,'Rhythmic-activity-pattern','Physiologic-pattern/Rhythmic-activity-pattern','Not further specified.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1135,1133,2,'Slow-alpha-variant-rhythm','Physiologic-pattern/Slow-alpha-variant-rhythm','Characteristic rhythms mostly at 4-5 Hz, recorded most prominently over the posterior regions of the head. Generally alternate, or are intermixed, with alpha rhythm to which they often are harmonically related. Amplitude varies but is frequently close to 50 micro V. Blocked or attenuated by attention, especially visual, and mental effort. Comment: slow alpha variant rhythms should be distinguished from posterior slow waves characteristic of children and adolescents and occasionally seen in young adults.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1136,1133,2,'Fast-alpha-variant-rhythm','Physiologic-pattern/Fast-alpha-variant-rhythm','Characteristic rhythm at 14-20 Hz, detected most prominently over the posterior regions of the head. May alternate or be intermixed with alpha rhythm. Blocked or attenuated by attention, especially visual, and mental effort.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1137,1133,2,'Ciganek-rhythm','Physiologic-pattern/Ciganek-rhythm','Midline theta rhythm (Ciganek rhythm) may be observed during wakefulness or drowsiness. The frequency is 4-7 Hz, and the location is midline (ie, vertex). The morphology is rhythmic, smooth, sinusoidal, arciform, spiky, or mu-like.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1138,1133,2,'Lambda-wave','Physiologic-pattern/Lambda-wave','Diphasic sharp transient occurring over occipital regions of the head of waking subjects during visual exploration. The main component is positive relative to other areas. Time-locked to saccadic eye movement. Amplitude varies but is generally below 50 micro V.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1139,1133,2,'Posterior-slow-waves-youth','Physiologic-pattern/Posterior-slow-waves-youth','Waves in the delta and theta range, of variable form, lasting 0.35 to 0.5 s or longer without any consistent periodicity, found in the range of 6-12 years (occasionally seen in young adults). Alpha waves are almost always intermingled or superimposed. Reactive similar to alpha activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1140,1133,2,'Diffuse-slowing-hyperventilation','Physiologic-pattern/Diffuse-slowing-hyperventilation','Diffuse slowing induced by hyperventilation. Bilateral, diffuse slowing during hyperventilation. Recorded in 70 percent of normal children (3-5 years) and less then 10 percent of adults. Usually appear in the posterior regions and spread forward in younger age group, whereas they tend to appear in the frontal regions and spread backward in the older age group.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1141,1133,2,'Photic-driving','Physiologic-pattern/Photic-driving','Physiologic response consisting of rhythmic activity elicited over the posterior regions of the head by repetitive photic stimulation at frequencies of about 5-30 Hz. Comments: term should be limited to activity time-locked to the stimulus and of frequency identical or harmonically related to the stimulus frequency. Photic driving should be distinguished from the visual evoked potentials elicited by isolated flashes of light or flashes repeated at very low frequency.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1142,1133,2,'Photomyogenic-response','Physiologic-pattern/Photomyogenic-response','A response to intermittent photic stimulation characterized by the appearance in the record of brief, repetitive muscular artifacts (spikes) over the anterior regions of the head. These often increase gradually in amplitude as stimuli are continued and cease promptly when the stimulus is withdrawn. Comment: this response is frequently associated with flutter of the eyelids and vertical oscillations of the eyeballs and sometimes with discrete jerking mostly involving the musculature of the face and head. (Preferred to synonym: photo-myoclonic response).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1143,1133,2,'Other-physiologic-pattern','Physiologic-pattern/Other-physiologic-pattern','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1144,NULL,2,'Uncertain-significant-pattern','Uncertain-significant-pattern','EEG graphoelements or rhythms that resemble abnormal patterns but that are not necessarily associated with a pathology, and the physician does not consider them abnormal in the context of the scored recording (like normal variants and patterns).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1145,1144,2,'Sharp-transient-pattern','Uncertain-significant-pattern/Sharp-transient-pattern','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1146,1144,2,'Wicket-spikes','Uncertain-significant-pattern/Wicket-spikes','Spike-like monophasic negative single waves or trains of waves occurring over the temporal regions during drowsiness that have an arcuate or mu-like appearance. These are mainly seen in older individuals and represent a benign variant that is of little clinical significance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1147,1144,2,'Small-sharp-spikes','Uncertain-significant-pattern/Small-sharp-spikes','Benign epileptiform Transients of Sleep (BETS). Small sharp spikes (SSS) of very short duration and low amplitude, often followed by a small theta wave, occurring in the temporal regions during drowsiness and light sleep. They occur on one or both sides (often asynchronously). The main negative and positive components are of about equally spiky character. Rarely seen in children, they are seen most often in adults and the elderly. Two thirds of the patients have a history of epileptic seizures.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1148,1144,2,'Fourteen-six-Hz-positive-burst','Uncertain-significant-pattern/Fourteen-six-Hz-positive-burst','Burst of arch-shaped waves at 13-17 Hz and/or 5-7-Hz but most commonly at 14 and or 6 Hz seen generally over the posterior temporal and adjacent areas of one or both sides of the head during sleep. The sharp peaks of its component waves are positive with respect to other regions. Amplitude varies but is generally below 75 micro V. Comments: (1) best demonstrated by referential recording using contralateral earlobe or other remote, reference electrodes. (2) This pattern has no established clinical significance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1149,1144,2,'Six-Hz-spike-slow-wave','Uncertain-significant-pattern/Six-Hz-spike-slow-wave','Spike and slow wave complexes at 4-7Hz, but mostly at 6 Hz occurring generally in brief bursts bilaterally and synchronously, symmetrically or asymmetrically, and either confined to or of larger amplitude over the posterior or anterior regions of the head. The spike has a strong positive component. Amplitude varies but is generally smaller than that of spike-and slow-wave complexes repeating at slower rates. Comment: this pattern should be distinguished from epileptiform discharges. Synonym: wave and spike phantom.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1150,1144,2,'Rudimentary-spike-wave-complex','Uncertain-significant-pattern/Rudimentary-spike-wave-complex','Synonym: Pseudo petit mal discharge. Paroxysmal discharge that consists of generalized or nearly generalized high voltage 3 to 4/sec waves with poorly developed spike in the positive trough between the slow waves, occurring in drowsiness only. It is found only in infancy and early childhood when marked hypnagogic rhythmical theta activity is paramount in the drowsy state.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1151,1144,2,'Slow-fused-transient','Uncertain-significant-pattern/Slow-fused-transient','A posterior slow-wave preceded by a sharp-contoured potential that blends together with the ensuing slow wave, in children.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1152,1144,2,'Needle-like-occipital-spikes-blind','Uncertain-significant-pattern/Needle-like-occipital-spikes-blind','Spike discharges of a particularly fast and needle-like character develop over the occipital region in most congenitally blind children. Completely disappear during childhood or adolescence.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1153,1144,2,'Subclinical-rhythmic-EEG-discharge-adults','Uncertain-significant-pattern/Subclinical-rhythmic-EEG-discharge-adults','Subclinical rhythmic EEG discharge of adults (SERDA). A rhythmic pattern seen in the adult age group, mainly in the waking state or drowsiness. It consists of a mixture of frequencies, often predominant in the theta range. The onset may be fairly abrupt with widespread sharp rhythmical theta and occasionally with delta activity. As to the spatial distribution, a maximum of this discharge is usually found over the centroparietal region and especially over the vertex. It may resemble a seizure discharge but is not accompanied by any clinical signs or symptoms.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1154,1144,2,'Rhythmic-temporal-theta-burst-drowsiness','Uncertain-significant-pattern/Rhythmic-temporal-theta-burst-drowsiness','Rhythmic temporal theta burst of drowsiness (RTTD). Characteristic burst of 4-7 Hz waves frequently notched by faster waves, occurring over the temporal regions of the head during drowsiness. Synonym: psychomotor variant pattern. Comment: this is a pattern of drowsiness that is of no clinical significance.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1155,1144,2,'Temporal-slowing-elderly','Uncertain-significant-pattern/Temporal-slowing-elderly','Focal theta and/or delta activity over the temporal regions, especially the left, in persons over the age of 60. Amplitudes are low/similar to the background activity. Comment: focal temporal theta was found in 20 percent of people between the ages of 40-59 years, and 40 percent of people between 60 and 79 years. One third of people older than 60 years had focal temporal delta activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1156,1144,2,'Breach-rhythm','Uncertain-significant-pattern/Breach-rhythm','Rhythmical activity recorded over cranial bone defects. Usually it is in the 6 to 11/sec range, does not respond to movements.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1157,1144,2,'Other-uncertain-significant-pattern','Uncertain-significant-pattern/Other-uncertain-significant-pattern','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1158,NULL,2,'Artifact','Artifact','When relevant for the clinical interpretation, artifacts can be scored by specifying the type and the location.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1159,1158,2,'Biological-artifact','Artifact/Biological-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1160,1159,2,'Eye-blink-artifact','Artifact/Biological-artifact/Eye-blink-artifact','Example for EEG: Fp1/Fp2 become electropositive with eye closure because the cornea is positively charged causing a negative deflection in Fp1/Fp2. If the eye blink is unilateral, consider prosthetic eye. If it is in F8 rather than Fp2 then the electrodes are plugged in wrong.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1161,1159,2,'Eye-movement-horizontal-artifact','Artifact/Biological-artifact/Eye-movement-horizontal-artifact','Example for EEG: There is an upward deflection in the Fp2-F8 derivation, when the eyes move to the right side. In this case F8 becomes more positive and therefore. When the eyes move to the left, F7 becomes more positive and there is an upward deflection in the Fp1-F7 derivation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1162,1159,2,'Eye-movement-vertical-artifact','Artifact/Biological-artifact/Eye-movement-vertical-artifact','Example for EEG: The EEG shows positive potentials (50-100 micro V) with bi-frontal distribution, maximum at Fp1 and Fp2, when the eyeball rotated upward. The downward rotation of the eyeball was associated with the negative deflection. The time course of the deflections was similar to the time course of the eyeball movement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1163,1159,2,'Slow-eye-movement-artifact','Artifact/Biological-artifact/Slow-eye-movement-artifact','Slow, rolling eye-movements, seen during drowsiness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1164,1159,2,'Nystagmus-artifact','Artifact/Biological-artifact/Nystagmus-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1165,1159,2,'Chewing-artifact','Artifact/Biological-artifact/Chewing-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1166,1159,2,'Sucking-artifact','Artifact/Biological-artifact/Sucking-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1167,1159,2,'Glossokinetic-artifact','Artifact/Biological-artifact/Glossokinetic-artifact','The tongue functions as a dipole, with the tip negative with respect to the base. The artifact produced by the tongue has a broad potential field that drops from frontal to occipital areas, although it is less steep than that produced by eye movement artifacts. The amplitude of the potentials is greater inferiorly than in parasagittal regions; the frequency is variable but usually in the delta range. Chewing and sucking can produce similar artifacts.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1168,1159,2,'Rocking-patting-artifact','Artifact/Biological-artifact/Rocking-patting-artifact','Quasi-rhythmical artifacts in recordings from infants caused by rocking/patting.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1169,1159,2,'Movement-artifact','Artifact/Biological-artifact/Movement-artifact','Example for EEG: Large amplitude artifact, with irregular morphology (usually resembling a slow-wave or a wave with complex morphology) seen in one or several channels, due to movement. If the causing movement is repetitive, the artifact might resemble a rhythmic EEG activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1170,1159,2,'Respiration-artifact','Artifact/Biological-artifact/Respiration-artifact','Respiration can produce 2 kinds of artifacts. One type is in the form of slow and rhythmic activity, synchronous with the body movements of respiration and mechanically affecting the impedance of (usually) one electrode. The other type can be slow or sharp waves that occur synchronously with inhalation or exhalation and involve those electrodes on which the patient is lying.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1171,1159,2,'Pulse-artifact','Artifact/Biological-artifact/Pulse-artifact','Example for EEG: Occurs when an EEG electrode is placed over a pulsating vessel. The pulsation can cause slow waves that may simulate EEG activity. A direct relationship exists between ECG and the pulse waves (200-300 millisecond delay after ECG equals QRS complex).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1172,1159,2,'ECG-artifact','Artifact/Biological-artifact/ECG-artifact','Example for EEG: Far-field potential generated in the heart. The voltage and apparent surface of the artifact vary from derivation to derivation and, consequently, from montage to montage. The artifact is observed best in referential montages using earlobe electrodes A1 and A2. ECG artifact is recognized easily by its rhythmicity/regularity and coincidence with the ECG tracing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1173,1159,2,'Sweat-artifact','Artifact/Biological-artifact/Sweat-artifact','Is a low amplitude undulating waveform that is usually greater than 2 seconds and may appear to be an unstable baseline.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1174,1159,2,'EMG-artifact','Artifact/Biological-artifact/EMG-artifact','Myogenic potentials are the most common artifacts. Frontalis and temporalis muscles (ex..: clenching of jaw muscles) are common causes. Generally, the potentials generated in the muscles are of shorter duration than those generated in the brain. The frequency components are usually beyond 30-50 Hz, and the bursts are arrhythmic.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1175,1158,2,'Non-biological-artifact','Artifact/Non-biological-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1176,1175,2,'Power-supply-artifact','Artifact/Non-biological-artifact/Power-supply-artifact','50-60 Hz artifact. Monomorphic waveform due to 50 or 60 Hz A/C power supply.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1177,1175,2,'Induction-artifact','Artifact/Non-biological-artifact/Induction-artifact','Artifacts (usually of high frequency) induced by nearby equipment (like in the intensive care unit).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1178,1175,2,'Dialysis-artifact','Artifact/Non-biological-artifact/Dialysis-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1179,1175,2,'Artificial-ventilation-artifact','Artifact/Non-biological-artifact/Artificial-ventilation-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1180,1175,2,'Electrode-pops-artifact','Artifact/Non-biological-artifact/Electrode-pops-artifact','Are brief discharges with a very steep upslope and shallow fall that occur in all leads which include that electrode.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1181,1175,2,'Salt-bridge-artifact','Artifact/Non-biological-artifact/Salt-bridge-artifact','Typically occurs in 1 channel which may appear isoelectric. Only seen in bipolar montage.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1182,1158,2,'Other-artifact','Artifact/Other-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1183,NULL,2,'Polygraphic-channel-finding','Polygraphic-channel-finding','Changes observed in polygraphic channels can be scored: EOG, Respiration, ECG, EMG, other polygraphic channel (+ free text), and their significance logged (normal, abnormal, no definite abnormality).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1184,1183,2,'EOG-channel-finding','Polygraphic-channel-finding/EOG-channel-finding','ElectroOculoGraphy.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1185,1183,2,'Respiration-channel-finding','Polygraphic-channel-finding/Respiration-channel-finding','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1186,1185,2,'Respiration-oxygen-saturation','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-oxygen-saturation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1187,1185,2,'Respiration-feature','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-feature','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1188,1187,2,'Apnoe-respiration','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-feature/Apnoe-respiration','Add duration (range in seconds) and comments in free text.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1189,1187,2,'Hypopnea-respiration','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-feature/Hypopnea-respiration','Add duration (range in seconds) and comments in free text');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1190,1187,2,'Apnea-hypopnea-index-respiration','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-feature/Apnea-hypopnea-index-respiration','Events/h. Frequency can be tagged with base schema /Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1191,1187,2,'Periodic-respiration','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-feature/Periodic-respiration','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1192,1187,2,'Tachypnea-respiration','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-feature/Tachypnea-respiration','Cycles/min. Frequency can be tagged with base schema /Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1193,1187,2,'Other-respiration-feature','Polygraphic-channel-finding/Respiration-channel-finding/Respiration-feature/Other-respiration-feature','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1194,1183,2,'ECG-channel-finding','Polygraphic-channel-finding/ECG-channel-finding','Electrocardiography.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1195,1194,2,'ECG-QT-period','Polygraphic-channel-finding/ECG-channel-finding/ECG-QT-period','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1196,1194,2,'ECG-feature','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1197,1196,2,'ECG-sinus-rhythm','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/ECG-sinus-rhythm','Normal rhythm. Frequency can be tagged with base schema /Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1198,1196,2,'ECG-arrhythmia','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/ECG-arrhythmia','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1199,1196,2,'ECG-asystolia','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/ECG-asystolia','Add duration (range in seconds) and comments in free text.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1200,1196,2,'ECG-bradycardia','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/ECG-bradycardia','Frequency can be tagged with base schema /Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1201,1196,2,'ECG-extrasystole','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/ECG-extrasystole','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1202,1196,2,'ECG-ventricular-premature-depolarization','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/ECG-ventricular-premature-depolarization','Frequency can be tagged with base schema /Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1203,1196,2,'ECG-tachycardia','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/ECG-tachycardia','Frequency can be tagged with base schema /Property/Data-property/Data-value/Spatiotemporal-value/Rate-of-change/Frequency');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1204,1196,2,'Other-ECG-feature','Polygraphic-channel-finding/ECG-channel-finding/ECG-feature/Other-ECG-feature','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1205,1183,2,'EMG-channel-finding','Polygraphic-channel-finding/EMG-channel-finding','electromyography');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1206,1205,2,'EMG-muscle-side','Polygraphic-channel-finding/EMG-channel-finding/EMG-muscle-side','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1207,1206,2,'EMG-left-muscle','Polygraphic-channel-finding/EMG-channel-finding/EMG-muscle-side/EMG-left-muscle','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1208,1206,2,'EMG-right-muscle','Polygraphic-channel-finding/EMG-channel-finding/EMG-muscle-side/EMG-right-muscle','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1209,1206,2,'EMG-bilateral-muscle','Polygraphic-channel-finding/EMG-channel-finding/EMG-muscle-side/EMG-bilateral-muscle','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1210,1205,2,'EMG-muscle-name','Polygraphic-channel-finding/EMG-channel-finding/EMG-muscle-name','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1211,1205,2,'EMG-feature','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1212,1211,2,'EMG-myoclonus','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-myoclonus','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1213,1212,2,'Negative-myoclonus','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-myoclonus/Negative-myoclonus','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1214,1212,2,'EMG-myoclonus-rhythmic','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-myoclonus/EMG-myoclonus-rhythmic','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1215,1212,2,'EMG-myoclonus-arrhythmic','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-myoclonus/EMG-myoclonus-arrhythmic','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1216,1212,2,'EMG-myoclonus-synchronous','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-myoclonus/EMG-myoclonus-synchronous','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1217,1212,2,'EMG-myoclonus-asynchronous','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-myoclonus/EMG-myoclonus-asynchronous','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1218,1211,2,'EMG-PLMS','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-PLMS','Periodic limb movements in sleep.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1219,1211,2,'EMG-spasm','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-spasm','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1220,1211,2,'EMG-tonic-contraction','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-tonic-contraction','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1221,1211,2,'EMG-asymmetric-activation','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-asymmetric-activation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1222,1221,2,'EMG-asymmetric-activation-left-first','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-asymmetric-activation/EMG-asymmetric-activation-left-first','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1223,1221,2,'EMG-asymmetric-activation-right-first','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/EMG-asymmetric-activation/EMG-asymmetric-activation-right-first','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1224,1211,2,'Other-EMG-features','Polygraphic-channel-finding/EMG-channel-finding/EMG-feature/Other-EMG-features','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1225,1183,2,'Other-polygraphic-channel','Polygraphic-channel-finding/Other-polygraphic-channel','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1226,NULL,2,'Finding-property','Finding-property','Descriptive element similar to main HED /Property. Something that pertains to a thing. A characteristic of some entity. A quality or feature regarded as a characteristic or inherent part of someone or something. HED attributes are adjectives or adverbs.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1227,1226,2,'Signal-morphology-property','Finding-property/Signal-morphology-property','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1228,1227,2,'Rhythmic-activity-morphology','Finding-property/Signal-morphology-property/Rhythmic-activity-morphology','EEG activity consisting of a sequence of waves approximately constant period.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1229,1228,2,'Delta-activity-morphology','Finding-property/Signal-morphology-property/Rhythmic-activity-morphology/Delta-activity-morphology','EEG rhythm in the delta (under 4 Hz) range that does not belong to the posterior dominant rhythm (scored under other organized rhythms).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1230,1228,2,'Theta-activity-morphology','Finding-property/Signal-morphology-property/Rhythmic-activity-morphology/Theta-activity-morphology','EEG rhythm in the theta (4-8 Hz) range that does not belong to the posterior dominant rhythm (scored under other organized rhythm).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1231,1228,2,'Alpha-activity-morphology','Finding-property/Signal-morphology-property/Rhythmic-activity-morphology/Alpha-activity-morphology','EEG rhythm in the alpha range (8-13 Hz) which is considered part of the background (ongoing) activity but does not fulfill the criteria of the posterior dominant rhythm (alpha rhythm).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1232,1228,2,'Beta-activity-morphology','Finding-property/Signal-morphology-property/Rhythmic-activity-morphology/Beta-activity-morphology','EEG rhythm between 14 and 40 Hz, which is considered part of the background (ongoing) activity but does not fulfill the criteria of the posterior dominant rhythm. Most characteristically: a rhythm from 14 to 40 Hz recorded over the fronto-central regions of the head during wakefulness. Amplitude of the beta rhythm varies but is mostly below 30 microV. Other beta rhythms are most prominent in other locations or are diffuse.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1233,1228,2,'Gamma-activity-morphology','Finding-property/Signal-morphology-property/Rhythmic-activity-morphology/Gamma-activity-morphology','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1234,1227,2,'Spike-morphology','Finding-property/Signal-morphology-property/Spike-morphology','A transient, clearly distinguished from background activity, with pointed peak at a conventional paper speed or time scale and duration from 20 to under 70 ms, i.e. 1/50-1/15 s approximately. Main component is generally negative relative to other areas. Amplitude varies.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1235,1227,2,'Spike-and-slow-wave-morphology','Finding-property/Signal-morphology-property/Spike-and-slow-wave-morphology','A pattern consisting of a spike followed by a slow wave.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1236,1227,2,'Runs-of-rapid-spikes-morphology','Finding-property/Signal-morphology-property/Runs-of-rapid-spikes-morphology','Bursts of spike discharges at a rate from 10 to 25/sec (in most cases somewhat irregular). The bursts last more than 2 seconds (usually 2 to 10 seconds) and it is typically seen in sleep. Synonyms: rhythmic spikes, generalized paroxysmal fast activity, fast paroxysmal rhythms, grand mal discharge, fast beta activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1237,1227,2,'Polyspikes-morphology','Finding-property/Signal-morphology-property/Polyspikes-morphology','Two or more consecutive spikes.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1238,1227,2,'Polyspike-and-slow-wave-morphology','Finding-property/Signal-morphology-property/Polyspike-and-slow-wave-morphology','Two or more consecutive spikes associated with one or more slow waves.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1239,1227,2,'Sharp-wave-morphology','Finding-property/Signal-morphology-property/Sharp-wave-morphology','A transient clearly distinguished from background activity, with pointed peak at a conventional paper speed or time scale, and duration of 70-200 ms, i.e. over 1/4-1/5 s approximately. Main component is generally negative relative to other areas. Amplitude varies.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1240,1227,2,'Sharp-and-slow-wave-morphology','Finding-property/Signal-morphology-property/Sharp-and-slow-wave-morphology','A sequence of a sharp wave and a slow wave.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1241,1227,2,'Slow-sharp-wave-morphology','Finding-property/Signal-morphology-property/Slow-sharp-wave-morphology','A transient that bears all the characteristics of a sharp-wave, but exceeds 200 ms. Synonym: blunted sharp wave.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1242,1227,2,'High-frequency-oscillation-morphology','Finding-property/Signal-morphology-property/High-frequency-oscillation-morphology','HFO.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1243,1227,2,'Hypsarrhythmia-classic-morphology','Finding-property/Signal-morphology-property/Hypsarrhythmia-classic-morphology','Abnormal interictal high amplitude waves and a background of irregular spikes.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1244,1227,2,'Hypsarrhythmia-modified-morphology','Finding-property/Signal-morphology-property/Hypsarrhythmia-modified-morphology','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1245,1227,2,'Fast-spike-activity-morphology','Finding-property/Signal-morphology-property/Fast-spike-activity-morphology','A burst consisting of a sequence of spikes. Duration greater than 1 s. Frequency at least in the alpha range.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1246,1227,2,'Low-voltage-fast-activity-morphology','Finding-property/Signal-morphology-property/Low-voltage-fast-activity-morphology','Refers to the fast, and often recruiting activity which can be recorded at the onset of an ictal discharge, particularly in invasive EEG recording of a seizure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1247,1227,2,'Polysharp-waves-morphology','Finding-property/Signal-morphology-property/Polysharp-waves-morphology','A sequence of two or more sharp-waves.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1248,1227,2,'Slow-wave-large-amplitude-morphology','Finding-property/Signal-morphology-property/Slow-wave-large-amplitude-morphology','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1249,1227,2,'Irregular-delta-or-theta-activity-morphology','Finding-property/Signal-morphology-property/Irregular-delta-or-theta-activity-morphology','EEG activity consisting of repetitive waves of inconsistent wave-duration but in delta and/or theta rang (greater than 125 ms).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1250,1227,2,'Electrodecremental-change-morphology','Finding-property/Signal-morphology-property/Electrodecremental-change-morphology','Sudden desynchronization of electrical activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1251,1227,2,'DC-shift-morphology','Finding-property/Signal-morphology-property/DC-shift-morphology','Shift of negative polarity of the direct current recordings, during seizures.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1252,1227,2,'Disappearance-of-ongoing-activity-morphology','Finding-property/Signal-morphology-property/Disappearance-of-ongoing-activity-morphology','Disappearance of the EEG activity that preceded the ictal event but still remnants of background activity (thus not enough to name it electrodecremental change).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1253,1227,2,'Polymorphic-delta-activity-morphology','Finding-property/Signal-morphology-property/Polymorphic-delta-activity-morphology','EEG activity consisting of waves in the delta range (over 250 ms duration for each wave) but of different morphology.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1254,1227,2,'Frontal-intermittent-rhythmic-delta-activity-morphology','Finding-property/Signal-morphology-property/Frontal-intermittent-rhythmic-delta-activity-morphology','Frontal intermittent rhythmic delta activity (FIRDA). Fairly regular or approximately sinusoidal waves, mostly occurring in bursts at 1.5-2.5 Hz over the frontal areas of one or both sides of the head. Comment: most commonly associated with unspecified encephalopathy, in adults.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1255,1227,2,'Occipital-intermittent-rhythmic-delta-activity-morphology','Finding-property/Signal-morphology-property/Occipital-intermittent-rhythmic-delta-activity-morphology','Occipital intermittent rhythmic delta activity (OIRDA). Fairly regular or approximately sinusoidal waves, mostly occurring in bursts at 2-3 Hz over the occipital or posterior head regions of one or both sides of the head. Frequently blocked or attenuated by opening the eyes. Comment: most commonly associated with unspecified encephalopathy, in children.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1256,1227,2,'Temporal-intermittent-rhythmic-delta-activity-morphology','Finding-property/Signal-morphology-property/Temporal-intermittent-rhythmic-delta-activity-morphology','Temporal intermittent rhythmic delta activity (TIRDA). Fairly regular or approximately sinusoidal waves, mostly occurring in bursts at over the temporal areas of one side of the head. Comment: most commonly associated with temporal lobe epilepsy.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1257,1227,2,'Periodic-discharges-morphology','Finding-property/Signal-morphology-property/Periodic-discharges-morphology','Periodic discharges not further specified (PDs).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1258,1257,2,'Periodic-discharges-superimposed-activity','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharges-superimposed-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1259,1258,2,'Periodic-discharges-fast-superimposed-activity','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharges-superimposed-activity/Periodic-discharges-fast-superimposed-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1260,1258,2,'Periodic-discharges-rhythmic-superimposed-activity','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharges-superimposed-activity/Periodic-discharges-rhythmic-superimposed-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1261,1257,2,'Periodic-discharge-sharpness','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-sharpness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1262,1261,2,'Spiky-periodic-discharge-sharpness','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-sharpness/Spiky-periodic-discharge-sharpness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1263,1261,2,'Sharp-periodic-discharge-sharpness','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-sharpness/Sharp-periodic-discharge-sharpness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1264,1261,2,'Sharply-contoured-periodic-discharge-sharpness','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-sharpness/Sharply-contoured-periodic-discharge-sharpness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1265,1261,2,'Blunt-periodic-discharge-sharpness','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-sharpness/Blunt-periodic-discharge-sharpness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1266,1257,2,'Number-of-periodic-discharge-phases','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Number-of-periodic-discharge-phases','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1267,1266,2,'1-periodic-discharge-phase','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Number-of-periodic-discharge-phases/1-periodic-discharge-phase','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1268,1266,2,'2-periodic-discharge-phases','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Number-of-periodic-discharge-phases/2-periodic-discharge-phases','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1269,1266,2,'3-periodic-discharge-phases','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Number-of-periodic-discharge-phases/3-periodic-discharge-phases','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1270,1266,2,'Greater-than-3-periodic-discharge-phases','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Number-of-periodic-discharge-phases/Greater-than-3-periodic-discharge-phases','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1271,1257,2,'Periodic-discharge-triphasic-morphology','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-triphasic-morphology','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1272,1257,2,'Periodic-discharge-absolute-amplitude','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-absolute-amplitude','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1273,1272,2,'Periodic-discharge-absolute-amplitude-very-low','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-absolute-amplitude/Periodic-discharge-absolute-amplitude-very-low','Lower than 20 microV.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1274,1272,2,'Low-periodic-discharge-absolute-amplitude','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-absolute-amplitude/Low-periodic-discharge-absolute-amplitude','20 to 49 microV.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1275,1272,2,'Medium-periodic-discharge-absolute-amplitude','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-absolute-amplitude/Medium-periodic-discharge-absolute-amplitude','50 to 199 microV.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1276,1272,2,'High-periodic-discharge-absolute-amplitude','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-absolute-amplitude/High-periodic-discharge-absolute-amplitude','Greater than 200 microV.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1277,1257,2,'Periodic-discharge-relative-amplitude','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-relative-amplitude','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1278,1277,2,'Periodic-discharge-relative-amplitude-less-than-equal-2','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-relative-amplitude/Periodic-discharge-relative-amplitude-less-than-equal-2','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1279,1277,2,'Periodic-discharge-relative-amplitude-greater-than-2','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-relative-amplitude/Periodic-discharge-relative-amplitude-greater-than-2','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1280,1257,2,'Periodic-discharge-polarity','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-polarity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1281,1280,2,'Periodic-discharge-postitive-polarity','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-polarity/Periodic-discharge-postitive-polarity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1282,1280,2,'Periodic-discharge-negative-polarity','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-polarity/Periodic-discharge-negative-polarity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1283,1280,2,'Periodic-discharge-unclear-polarity','Finding-property/Signal-morphology-property/Periodic-discharges-morphology/Periodic-discharge-polarity/Periodic-discharge-unclear-polarity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1284,1226,2,'Source-analysis-property','Finding-property/Source-analysis-property','How the current in the brain reaches the electrode sensors.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1285,1284,2,'Source-analysis-laterality','Finding-property/Source-analysis-property/Source-analysis-laterality','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1286,1284,2,'Source-analysis-brain-region','Finding-property/Source-analysis-property/Source-analysis-brain-region','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1287,1286,2,'Source-analysis-frontal-perisylvian-superior-surface','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-frontal-perisylvian-superior-surface','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1288,1286,2,'Source-analysis-frontal-lateral','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-frontal-lateral','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1289,1286,2,'Source-analysis-frontal-mesial','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-frontal-mesial','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1290,1286,2,'Source-analysis-frontal-polar','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-frontal-polar','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1291,1286,2,'Source-analysis-frontal-orbitofrontal','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-frontal-orbitofrontal','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1292,1286,2,'Source-analysis-temporal-polar','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-temporal-polar','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1293,1286,2,'Source-analysis-temporal-basal','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-temporal-basal','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1294,1286,2,'Source-analysis-temporal-lateral-anterior','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-temporal-lateral-anterior','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1295,1286,2,'Source-analysis-temporal-lateral-posterior','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-temporal-lateral-posterior','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1296,1286,2,'Source-analysis-temporal-perisylvian-inferior-surface','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-temporal-perisylvian-inferior-surface','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1297,1286,2,'Source-analysis-central-lateral-convexity','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-central-lateral-convexity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1298,1286,2,'Source-analysis-central-mesial','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-central-mesial','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1299,1286,2,'Source-analysis-central-sulcus-anterior-surface','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-central-sulcus-anterior-surface','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1300,1286,2,'Source-analysis-central-sulcus-posterior-surface','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-central-sulcus-posterior-surface','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1301,1286,2,'Source-analysis-central-opercular','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-central-opercular','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1302,1286,2,'Source-analysis-parietal-lateral-convexity','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-parietal-lateral-convexity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1303,1286,2,'Source-analysis-parietal-mesial','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-parietal-mesial','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1304,1286,2,'Source-analysis-parietal-opercular','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-parietal-opercular','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1305,1286,2,'Source-analysis-occipital-lateral','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-occipital-lateral','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1306,1286,2,'Source-analysis-occipital-mesial','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-occipital-mesial','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1307,1286,2,'Source-analysis-occipital-basal','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-occipital-basal','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1308,1286,2,'Source-analysis-insula','Finding-property/Source-analysis-property/Source-analysis-brain-region/Source-analysis-insula','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1309,1226,2,'Location-property','Finding-property/Location-property','Location can be scored for findings. Semiologic finding can also be characterized by the somatotopic modifier (i.e. the part of the body where it occurs). In this respect, laterality (left, right, symmetric, asymmetric, left greater than right, right greater than left), body part (eyelid, face, arm, leg, trunk, visceral, hemi-) and centricity (axial, proximal limb, distal limb) can be scored.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1310,1309,2,'Brain-laterality','Finding-property/Location-property/Brain-laterality','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1311,1310,2,'Brain-laterality-left','Finding-property/Location-property/Brain-laterality/Brain-laterality-left','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1312,1310,2,'Brain-laterality-left-greater-right','Finding-property/Location-property/Brain-laterality/Brain-laterality-left-greater-right','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1313,1310,2,'Brain-laterality-right','Finding-property/Location-property/Brain-laterality/Brain-laterality-right','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1314,1310,2,'Brain-laterality-right-greater-left','Finding-property/Location-property/Brain-laterality/Brain-laterality-right-greater-left','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1315,1310,2,'Brain-laterality-midline','Finding-property/Location-property/Brain-laterality/Brain-laterality-midline','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1316,1310,2,'Brain-laterality-diffuse-asynchronous','Finding-property/Location-property/Brain-laterality/Brain-laterality-diffuse-asynchronous','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1317,1309,2,'Brain-region','Finding-property/Location-property/Brain-region','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1318,1317,2,'Brain-region-frontal','Finding-property/Location-property/Brain-region/Brain-region-frontal','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1319,1317,2,'Brain-region-temporal','Finding-property/Location-property/Brain-region/Brain-region-temporal','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1320,1317,2,'Brain-region-central','Finding-property/Location-property/Brain-region/Brain-region-central','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1321,1317,2,'Brain-region-parietal','Finding-property/Location-property/Brain-region/Brain-region-parietal','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1322,1317,2,'Brain-region-occipital','Finding-property/Location-property/Brain-region/Brain-region-occipital','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1323,1309,2,'Body-part-location','Finding-property/Location-property/Body-part-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1324,1323,2,'Eyelid-location','Finding-property/Location-property/Body-part-location/Eyelid-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1325,1323,2,'Face-location','Finding-property/Location-property/Body-part-location/Face-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1326,1323,2,'Arm-location','Finding-property/Location-property/Body-part-location/Arm-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1327,1323,2,'Leg-location','Finding-property/Location-property/Body-part-location/Leg-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1328,1323,2,'Trunk-location','Finding-property/Location-property/Body-part-location/Trunk-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1329,1323,2,'Visceral-location','Finding-property/Location-property/Body-part-location/Visceral-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1330,1323,2,'Hemi-location','Finding-property/Location-property/Body-part-location/Hemi-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1331,1309,2,'Brain-centricity','Finding-property/Location-property/Brain-centricity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1332,1331,2,'Brain-centricity-axial','Finding-property/Location-property/Brain-centricity/Brain-centricity-axial','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1333,1331,2,'Brain-centricity-proximal-limb','Finding-property/Location-property/Brain-centricity/Brain-centricity-proximal-limb','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1334,1331,2,'Brain-centricity-distal-limb','Finding-property/Location-property/Brain-centricity/Brain-centricity-distal-limb','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1335,1309,2,'Sensors','Finding-property/Location-property/Sensors','Lists all corresponding sensors (electrodes/channels in montage). The sensor-group is selected from a list defined in the site-settings for each EEG-lab.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1336,1309,2,'Finding-propagation','Finding-property/Location-property/Finding-propagation','When propagation within the graphoelement is observed, first the location of the onset region is scored. Then, the location of the propagation can be noted.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1337,1309,2,'Multifocal-finding','Finding-property/Location-property/Multifocal-finding','When the same interictal graphoelement is observed bilaterally and at least in three independent locations, can score them using one entry, and choosing multifocal as a descriptor of the locations of the given interictal graphoelements, optionally emphasizing the involved, and the most active sites.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1338,1226,2,'Modulators-property','Finding-property/Modulators-property','For each described graphoelement, the influence of the modulators can be scored. Only modulators present in the recording are scored.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1339,1338,2,'Modulators-reactivity','Finding-property/Modulators-property/Modulators-reactivity','Susceptibility of individual rhythms or the EEG as a whole to change following sensory stimulation or other physiologic actions.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1340,1338,2,'Eye-closure-sensitivity','Finding-property/Modulators-property/Eye-closure-sensitivity','Eye closure sensitivity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1341,1338,2,'Eye-opening-passive','Finding-property/Modulators-property/Eye-opening-passive','Passive eye opening. Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1342,1338,2,'Medication-effect-EEG','Finding-property/Modulators-property/Medication-effect-EEG','Medications effect on EEG. Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1343,1338,2,'Medication-reduction-effect-EEG','Finding-property/Modulators-property/Medication-reduction-effect-EEG','Medications reduction or withdrawal effect on EEG. Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1344,1338,2,'Auditive-stimuli-effect','Finding-property/Modulators-property/Auditive-stimuli-effect','Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1345,1338,2,'Nociceptive-stimuli-effect','Finding-property/Modulators-property/Nociceptive-stimuli-effect','Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1346,1338,2,'Physical-effort-effect','Finding-property/Modulators-property/Physical-effort-effect','Used with base schema Increasing/Decreasing');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1347,1338,2,'Cognitive-task-effect','Finding-property/Modulators-property/Cognitive-task-effect','Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1348,1338,2,'Other-modulators-effect-EEG','Finding-property/Modulators-property/Other-modulators-effect-EEG','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1349,1338,2,'Facilitating-factor','Finding-property/Modulators-property/Facilitating-factor','Facilitating factors are defined as transient and sporadic endogenous or exogenous elements capable of augmenting seizure incidence (increasing the likelihood of seizure occurrence).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1350,1349,2,'Facilitating-factor-alcohol','Finding-property/Modulators-property/Facilitating-factor/Facilitating-factor-alcohol','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1351,1349,2,'Facilitating-factor-awake','Finding-property/Modulators-property/Facilitating-factor/Facilitating-factor-awake','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1352,1349,2,'Facilitating-factor-catamenial','Finding-property/Modulators-property/Facilitating-factor/Facilitating-factor-catamenial','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1353,1349,2,'Facilitating-factor-fever','Finding-property/Modulators-property/Facilitating-factor/Facilitating-factor-fever','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1354,1349,2,'Facilitating-factor-sleep','Finding-property/Modulators-property/Facilitating-factor/Facilitating-factor-sleep','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1355,1349,2,'Facilitating-factor-sleep-deprived','Finding-property/Modulators-property/Facilitating-factor/Facilitating-factor-sleep-deprived','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1356,1349,2,'Facilitating-factor-other','Finding-property/Modulators-property/Facilitating-factor/Facilitating-factor-other','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1357,1338,2,'Provocative-factor','Finding-property/Modulators-property/Provocative-factor','Provocative factors are defined as transient and sporadic endogenous or exogenous elements capable of evoking/triggering seizures immediately following the exposure to it.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1358,1357,2,'Hyperventilation-provoked','Finding-property/Modulators-property/Provocative-factor/Hyperventilation-provoked','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1359,1357,2,'Reflex-provoked','Finding-property/Modulators-property/Provocative-factor/Reflex-provoked','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1360,1338,2,'Medication-effect-clinical','Finding-property/Modulators-property/Medication-effect-clinical','Medications clinical effect. Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1361,1338,2,'Medication-reduction-effect-clinical','Finding-property/Modulators-property/Medication-reduction-effect-clinical','Medications reduction or withdrawal clinical effect. Used with base schema Increasing/Decreasing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1362,1338,2,'Other-modulators-effect-clinical','Finding-property/Modulators-property/Other-modulators-effect-clinical','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1363,1338,2,'Intermittent-photic-stimulation-effect','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1364,1363,2,'Posterior-stimulus-dependent-intermittent-photic-stimulation-response','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect/Posterior-stimulus-dependent-intermittent-photic-stimulation-response','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1365,1363,2,'Posterior-stimulus-independent-intermittent-photic-stimulation-response-limited','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect/Posterior-stimulus-independent-intermittent-photic-stimulation-response-limited','limited to the stimulus-train');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1366,1363,2,'Posterior-stimulus-independent-intermittent-photic-stimulation-response-self-sustained','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect/Posterior-stimulus-independent-intermittent-photic-stimulation-response-self-sustained','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1367,1363,2,'Generalized-photoparoxysmal-intermittent-photic-stimulation-response-limited','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect/Generalized-photoparoxysmal-intermittent-photic-stimulation-response-limited','Limited to the stimulus-train.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1368,1363,2,'Generalized-photoparoxysmal-intermittent-photic-stimulation-response-self-sustained','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect/Generalized-photoparoxysmal-intermittent-photic-stimulation-response-self-sustained','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1369,1363,2,'Activation-of-pre-existing-epileptogenic-area-intermittent-photic-stimulation-effect','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect/Activation-of-pre-existing-epileptogenic-area-intermittent-photic-stimulation-effect','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1370,1363,2,'Unmodified-intermittent-photic-stimulation-effect','Finding-property/Modulators-property/Intermittent-photic-stimulation-effect/Unmodified-intermittent-photic-stimulation-effect','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1371,1338,2,'Quality-of-hyperventilation','Finding-property/Modulators-property/Quality-of-hyperventilation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1372,1371,2,'Hyperventilation-refused-procedure','Finding-property/Modulators-property/Quality-of-hyperventilation/Hyperventilation-refused-procedure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1373,1371,2,'Hyperventilation-poor-effort','Finding-property/Modulators-property/Quality-of-hyperventilation/Hyperventilation-poor-effort','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1374,1371,2,'Hyperventilation-good-effort','Finding-property/Modulators-property/Quality-of-hyperventilation/Hyperventilation-good-effort','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1375,1371,2,'Hyperventilation-excellent-effort','Finding-property/Modulators-property/Quality-of-hyperventilation/Hyperventilation-excellent-effort','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1376,1338,2,'Modulators-effect','Finding-property/Modulators-property/Modulators-effect','Tags for describing the influence of the modulators');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1377,1376,2,'Modulators-effect-continuous-during-NRS','Finding-property/Modulators-property/Modulators-effect/Modulators-effect-continuous-during-NRS','Continuous during non-rapid-eye-movement-sleep (NRS)');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1378,1376,2,'Modulators-effect-only-during','Finding-property/Modulators-property/Modulators-effect/Modulators-effect-only-during','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1379,1376,2,'Modulators-effect-change-of-patterns','Finding-property/Modulators-property/Modulators-effect/Modulators-effect-change-of-patterns','Change of patterns during sleep/awakening.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1380,1226,2,'Time-related-property','Finding-property/Time-related-property','Important to estimate how often an interictal abnormality is seen in the recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1381,1380,2,'Appearance-mode','Finding-property/Time-related-property/Appearance-mode','Describes how the non-ictal EEG pattern/graphoelement is distributed through the recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1382,1381,2,'Random-appearance-mode','Finding-property/Time-related-property/Appearance-mode/Random-appearance-mode','Occurrence of the non-ictal EEG pattern / graphoelement without any rhythmicity / periodicity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1383,1381,2,'Periodic-appearance-mode','Finding-property/Time-related-property/Appearance-mode/Periodic-appearance-mode','Non-ictal EEG pattern / graphoelement occurring at an approximately regular rate / interval (generally of 1 to several seconds).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1384,1381,2,'Variable-appearance-mode','Finding-property/Time-related-property/Appearance-mode/Variable-appearance-mode','Occurrence of non-ictal EEG pattern / graphoelements, that is sometimes rhythmic or periodic, other times random, throughout the recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1385,1381,2,'Intermittent-appearance-mode','Finding-property/Time-related-property/Appearance-mode/Intermittent-appearance-mode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1386,1381,2,'Continuous-appearance-mode','Finding-property/Time-related-property/Appearance-mode/Continuous-appearance-mode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1387,1380,2,'Discharge-pattern','Finding-property/Time-related-property/Discharge-pattern','Describes the organization of the EEG signal within the discharge (distinguish between single and repetitive discharges)');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1388,1387,2,'Single-discharge-pattern','Finding-property/Time-related-property/Discharge-pattern/Single-discharge-pattern','Applies to the intra-burst pattern: a graphoelement that is not repetitive; before and after the graphoelement one can distinguish the background activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1389,1387,2,'Rhythmic-trains-or-bursts-discharge-pattern','Finding-property/Time-related-property/Discharge-pattern/Rhythmic-trains-or-bursts-discharge-pattern','Applies to the intra-burst pattern: a non-ictal graphoelement that repeats itself without returning to the background activity between them. The graphoelements within this repetition occur at approximately constant period.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1390,1387,2,'Arrhythmic-trains-or-bursts-discharge-pattern','Finding-property/Time-related-property/Discharge-pattern/Arrhythmic-trains-or-bursts-discharge-pattern','Applies to the intra-burst pattern: a non-ictal graphoelement that repeats itself without returning to the background activity between them. The graphoelements within this repetition occur at inconstant period.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1391,1387,2,'Fragmented-discharge-pattern','Finding-property/Time-related-property/Discharge-pattern/Fragmented-discharge-pattern','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1392,1380,2,'Periodic-discharge-time-related-features','Finding-property/Time-related-property/Periodic-discharge-time-related-features','Periodic discharges not further specified (PDs) time-relayed features tags.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1393,1392,2,'Periodic-discharge-duration','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-duration','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1394,1393,2,'Very-brief-periodic-discharge-duration','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-duration/Very-brief-periodic-discharge-duration','Less than 10 sec.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1395,1393,2,'Brief-periodic-discharge-duration','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-duration/Brief-periodic-discharge-duration','10 to 59 sec.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1396,1393,2,'Intermediate-periodic-discharge-duration','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-duration/Intermediate-periodic-discharge-duration','1 to 4.9 min.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1397,1393,2,'Long-periodic-discharge-duration','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-duration/Long-periodic-discharge-duration','5 to 59 min.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1398,1393,2,'Very-long-periodic-discharge-duration','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-duration/Very-long-periodic-discharge-duration','Greater than 1 hour.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1399,1392,2,'Periodic-discharge-onset','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-onset','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1400,1399,2,'Sudden-periodic-discharge-onset','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-onset/Sudden-periodic-discharge-onset','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1401,1399,2,'Gradual-periodic-discharge-onset','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-onset/Gradual-periodic-discharge-onset','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1402,1392,2,'Periodic-discharge-dynamics','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-dynamics','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1403,1402,2,'Evolving-periodic-discharge-dynamics','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-dynamics/Evolving-periodic-discharge-dynamics','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1404,1402,2,'Fluctuating-periodic-discharge-dynamics','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-dynamics/Fluctuating-periodic-discharge-dynamics','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1405,1402,2,'Static-periodic-discharge-dynamics','Finding-property/Time-related-property/Periodic-discharge-time-related-features/Periodic-discharge-dynamics/Static-periodic-discharge-dynamics','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1406,1380,2,'Finding-extent','Finding-property/Time-related-property/Finding-extent','Percentage of occurrence during the recording (background activity and interictal finding).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1407,1380,2,'Finding-incidence','Finding-property/Time-related-property/Finding-incidence','How often it occurs/time-epoch.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1408,1407,2,'Only-once-finding-incidence','Finding-property/Time-related-property/Finding-incidence/Only-once-finding-incidence','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1409,1407,2,'Rare-finding-incidence','Finding-property/Time-related-property/Finding-incidence/Rare-finding-incidence','less than 1/h');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1410,1407,2,'Uncommon-finding-incidence','Finding-property/Time-related-property/Finding-incidence/Uncommon-finding-incidence','1/5 min to 1/h.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1411,1407,2,'Occasional-finding-incidence','Finding-property/Time-related-property/Finding-incidence/Occasional-finding-incidence','1/min to 1/5min.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1412,1407,2,'Frequent-finding-incidence','Finding-property/Time-related-property/Finding-incidence/Frequent-finding-incidence','1/10 s to 1/min.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1413,1407,2,'Abundant-finding-incidence','Finding-property/Time-related-property/Finding-incidence/Abundant-finding-incidence','Greater than 1/10 s).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1414,1380,2,'Finding-prevalence','Finding-property/Time-related-property/Finding-prevalence','The percentage of the recording covered by the train/burst.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1415,1414,2,'Rare-finding-prevalence','Finding-property/Time-related-property/Finding-prevalence/Rare-finding-prevalence','Less than 1 percent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1416,1414,2,'Occasional-finding-prevalence','Finding-property/Time-related-property/Finding-prevalence/Occasional-finding-prevalence','1 to 9 percent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1417,1414,2,'Frequent-finding-prevalence','Finding-property/Time-related-property/Finding-prevalence/Frequent-finding-prevalence','10 to 49 percent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1418,1414,2,'Abundant-finding-prevalence','Finding-property/Time-related-property/Finding-prevalence/Abundant-finding-prevalence','50 to 89 percent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1419,1414,2,'Continuous-finding-prevalence','Finding-property/Time-related-property/Finding-prevalence/Continuous-finding-prevalence','Greater than 90 percent.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1420,1226,2,'Posterior-dominant-rhythm-property','Finding-property/Posterior-dominant-rhythm-property','Posterior dominant rhythm is the most often scored EEG feature in clinical practice. Therefore, there are specific terms that can be chosen for characterizing the PDR.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1421,1420,2,'Posterior-dominant-rhythm-amplitude-range','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-amplitude-range','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1422,1421,2,'Low-posterior-dominant-rhythm-amplitude-range','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-amplitude-range/Low-posterior-dominant-rhythm-amplitude-range','Low (less than 20 microV).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1423,1421,2,'Medium-posterior-dominant-rhythm-amplitude-range','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-amplitude-range/Medium-posterior-dominant-rhythm-amplitude-range','Medium (between 20 and 70 microV).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1424,1421,2,'High-posterior-dominant-rhythm-amplitude-range','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-amplitude-range/High-posterior-dominant-rhythm-amplitude-range','High (more than 70 microV).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1425,1420,2,'Posterior-dominant-rhythm-frequency-asymmetry','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-frequency-asymmetry','When symmetrical could be labeled with base schema Symmetrical tag.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1426,1425,2,'Posterior-dominant-rhythm-frequency-asymmetry-lower-left','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-frequency-asymmetry/Posterior-dominant-rhythm-frequency-asymmetry-lower-left','Hz lower on the left side.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1427,1425,2,'Posterior-dominant-rhythm-frequency-asymmetry-lower-right','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-frequency-asymmetry/Posterior-dominant-rhythm-frequency-asymmetry-lower-right','Hz lower on the right side.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1428,1420,2,'Posterior-dominant-rhythm-eye-opening-reactivity','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-eye-opening-reactivity','Change (disappearance or measurable decrease in amplitude) of a posterior dominant rhythm following eye-opening. Eye closure has the opposite effect.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1429,1428,2,'Posterior-dominant-rhythm-eye-opening-reactivity-reduced-left','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-eye-opening-reactivity/Posterior-dominant-rhythm-eye-opening-reactivity-reduced-left','Reduced left side reactivity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1430,1428,2,'Posterior-dominant-rhythm-eye-opening-reactivity-reduced-right','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-eye-opening-reactivity/Posterior-dominant-rhythm-eye-opening-reactivity-reduced-right','Reduced right side reactivity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1431,1428,2,'Posterior-dominant-rhythm-eye-opening-reactivity-reduced-both','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-eye-opening-reactivity/Posterior-dominant-rhythm-eye-opening-reactivity-reduced-both','Reduced reactivity on both sides.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1432,1420,2,'Posterior-dominant-rhythm-organization','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-organization','When normal could be labeled with base schema Normal tag.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1433,1432,2,'Posterior-dominant-rhythm-organization-poorly-organized','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-organization/Posterior-dominant-rhythm-organization-poorly-organized','Poorly organized.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1434,1432,2,'Posterior-dominant-rhythm-organization-disorganized','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-organization/Posterior-dominant-rhythm-organization-disorganized','Disorganized.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1435,1432,2,'Posterior-dominant-rhythm-organization-markedly-disorganized','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-organization/Posterior-dominant-rhythm-organization-markedly-disorganized','Markedly disorganized.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1436,1420,2,'Posterior-dominant-rhythm-caveat','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-caveat','Caveat to the annotation of PDR.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1437,1436,2,'No-posterior-dominant-rhythm-caveat','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-caveat/No-posterior-dominant-rhythm-caveat','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1438,1436,2,'Posterior-dominant-rhythm-caveat-only-open-eyes-during-the-recording','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-caveat/Posterior-dominant-rhythm-caveat-only-open-eyes-during-the-recording','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1439,1436,2,'Posterior-dominant-rhythm-caveat-sleep-deprived-caveat','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-caveat/Posterior-dominant-rhythm-caveat-sleep-deprived-caveat','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1440,1436,2,'Posterior-dominant-rhythm-caveat-drowsy','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-caveat/Posterior-dominant-rhythm-caveat-drowsy','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1441,1436,2,'Posterior-dominant-rhythm-caveat-only-following-hyperventilation','Finding-property/Posterior-dominant-rhythm-property/Posterior-dominant-rhythm-caveat/Posterior-dominant-rhythm-caveat-only-following-hyperventilation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1442,1420,2,'Absence-of-posterior-dominant-rhythm','Finding-property/Posterior-dominant-rhythm-property/Absence-of-posterior-dominant-rhythm','Reason for absence of PDR.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1443,1442,2,'Absence-of-posterior-dominant-rhythm-artifacts','Finding-property/Posterior-dominant-rhythm-property/Absence-of-posterior-dominant-rhythm/Absence-of-posterior-dominant-rhythm-artifacts','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1444,1442,2,'Absence-of-posterior-dominant-rhythm-extreme-low-voltage','Finding-property/Posterior-dominant-rhythm-property/Absence-of-posterior-dominant-rhythm/Absence-of-posterior-dominant-rhythm-extreme-low-voltage','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1445,1442,2,'Absence-of-posterior-dominant-rhythm-eye-closure-could-not-be-achieved','Finding-property/Posterior-dominant-rhythm-property/Absence-of-posterior-dominant-rhythm/Absence-of-posterior-dominant-rhythm-eye-closure-could-not-be-achieved','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1446,1442,2,'Absence-of-posterior-dominant-rhythm-lack-of-awake-period','Finding-property/Posterior-dominant-rhythm-property/Absence-of-posterior-dominant-rhythm/Absence-of-posterior-dominant-rhythm-lack-of-awake-period','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1447,1442,2,'Absence-of-posterior-dominant-rhythm-lack-of-compliance','Finding-property/Posterior-dominant-rhythm-property/Absence-of-posterior-dominant-rhythm/Absence-of-posterior-dominant-rhythm-lack-of-compliance','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1448,1442,2,'Absence-of-posterior-dominant-rhythm-other-causes','Finding-property/Posterior-dominant-rhythm-property/Absence-of-posterior-dominant-rhythm/Absence-of-posterior-dominant-rhythm-other-causes','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1449,1226,2,'Episode-property','Finding-property/Episode-property','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1450,1449,2,'Seizure-classification','Finding-property/Episode-property/Seizure-classification','Epileptic seizures are named using the current ILAE seizure classification (Fisher et al., 2017, Beniczky et al., 2017).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1451,1450,2,'Motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1452,1451,2,'Myoclonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Myoclonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1453,1451,2,'Negative-myoclonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Negative-myoclonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1454,1451,2,'Clonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Clonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1455,1451,2,'Tonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Tonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1456,1451,2,'Atonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Atonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1457,1451,2,'Myoclonic-atonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Myoclonic-atonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1458,1451,2,'Myoclonic-tonic-clonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Myoclonic-tonic-clonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1459,1451,2,'Tonic-clonic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Tonic-clonic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1460,1451,2,'Automatism-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Automatism-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1461,1451,2,'Hyperkinetic-motor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Hyperkinetic-motor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1462,1451,2,'Epileptic-spasm-episode','Finding-property/Episode-property/Seizure-classification/Motor-onset-seizure/Epileptic-spasm-episode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1463,1450,2,'Nonmotor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Nonmotor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1464,1463,2,'Behavior-arrest-nonmotor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Nonmotor-onset-seizure/Behavior-arrest-nonmotor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1465,1463,2,'Sensory-nonmotor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Nonmotor-onset-seizure/Sensory-nonmotor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1466,1463,2,'Emotional-nonmotor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Nonmotor-onset-seizure/Emotional-nonmotor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1467,1463,2,'Cognitive-nonmotor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Nonmotor-onset-seizure/Cognitive-nonmotor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1468,1463,2,'Autonomic-nonmotor-onset-seizure','Finding-property/Episode-property/Seizure-classification/Nonmotor-onset-seizure/Autonomic-nonmotor-onset-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1469,1450,2,'Absence-seizure','Finding-property/Episode-property/Seizure-classification/Absence-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1470,1469,2,'Typical-absence-seizure','Finding-property/Episode-property/Seizure-classification/Absence-seizure/Typical-absence-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1471,1469,2,'Atypical-absence-seizure','Finding-property/Episode-property/Seizure-classification/Absence-seizure/Atypical-absence-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1472,1469,2,'Myoclonic-absence-seizure','Finding-property/Episode-property/Seizure-classification/Absence-seizure/Myoclonic-absence-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1473,1469,2,'Eyelid-myoclonia-absence-seizure','Finding-property/Episode-property/Seizure-classification/Absence-seizure/Eyelid-myoclonia-absence-seizure','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1474,1449,2,'Episode-phase','Finding-property/Episode-property/Episode-phase','The electroclinical findings (i.e., the seizure semiology and the ictal EEG) are divided in three phases: onset, propagation, and postictal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1475,1474,2,'Episode-phase-initial','Finding-property/Episode-property/Episode-phase/Episode-phase-initial','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1476,1474,2,'Episode-phase-subsequent','Finding-property/Episode-property/Episode-phase/Episode-phase-subsequent','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1477,1474,2,'Episode-phase-postictal','Finding-property/Episode-property/Episode-phase/Episode-phase-postictal','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1478,1449,2,'Seizure-semiology-manifestation','Finding-property/Episode-property/Seizure-semiology-manifestation','Semiology is described according to the ILAE Glossary of Descriptive Terminology for Ictal Semiology (Blume et al., 2001). Besides the name, the semiologic finding can also be characterized by the somatotopic modifier, laterality, body part and centricity. Uses Location-property tags.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1479,1478,2,'Semiology-motor-manifestation','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1480,1479,2,'Semiology-elementary-motor','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1481,1480,2,'Semiology-motor-tonic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-tonic','A sustained increase in muscle contraction lasting a few seconds to minutes.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1482,1480,2,'Semiology-motor-dystonic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-dystonic','Sustained contractions of both agonist and antagonist muscles producing athetoid or twisting movements, which, when prolonged, may produce abnormal postures.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1483,1480,2,'Semiology-motor-epileptic-spasm','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-epileptic-spasm','A sudden flexion, extension, or mixed extension flexion of predominantly proximal and truncal muscles that is usually more sustained than a myoclonic movement but not so sustained as a tonic seizure (i.e., about 1 s). Limited forms may occur: grimacing, head nodding. Frequent occurrence in clusters.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1484,1480,2,'Semiology-motor-postural','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-postural','Adoption of a posture that may be bilaterally symmetric or asymmetric (as in a fencing posture).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1485,1480,2,'Semiology-motor-versive','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-versive','A sustained, forced conjugate ocular, cephalic, and/or truncal rotation or lateral deviation from the midline.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1486,1480,2,'Semiology-motor-clonic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-clonic','Myoclonus that is regularly repetitive, involves the same muscle groups, at a frequency of about 2 to 3 c/s, and is prolonged. Synonym: rhythmic myoclonus .');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1487,1480,2,'Semiology-motor-myoclonic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-myoclonic','Characterized by myoclonus. MYOCLONUS : sudden, brief (lower than 100 ms) involuntary single or multiple contraction(s) of muscles(s) or muscle groups of variable topography (axial, proximal limb, distal).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1488,1480,2,'Semiology-motor-jacksonian-march','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-jacksonian-march','Term indicating spread of clonic movements through contiguous body parts unilaterally.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1489,1480,2,'Semiology-motor-negative-myoclonus','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-negative-myoclonus','Characterized by negative myoclonus. NEGATIVE MYOCLONUS: interruption of tonic muscular activity for lower than 500 ms without evidence of preceding myoclonia.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1490,1480,2,'Semiology-motor-tonic-clonic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-tonic-clonic','A sequence consisting of a tonic followed by a clonic phase. Variants such as clonic-tonic-clonic may be seen. Asymmetry of limb posture during the tonic phase of a GTC: one arm is rigidly extended at the elbow (often with the fist clenched tightly and flexed at the wrist), whereas the opposite arm is flexed at the elbow.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1491,1490,2,'Semiology-motor-tonic-clonic-without-figure-of-four','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-tonic-clonic/Semiology-motor-tonic-clonic-without-figure-of-four','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1492,1490,2,'Semiology-motor-tonic-clonic-with-figure-of-four-extension-left-elbow','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-tonic-clonic/Semiology-motor-tonic-clonic-with-figure-of-four-extension-left-elbow','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1493,1490,2,'Semiology-motor-tonic-clonic-with-figure-of-four-extension-right-elbow','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-tonic-clonic/Semiology-motor-tonic-clonic-with-figure-of-four-extension-right-elbow','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1494,1480,2,'Semiology-motor-astatic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-astatic','Loss of erect posture that results from an atonic, myoclonic, or tonic mechanism. Synonym: drop attack.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1495,1480,2,'Semiology-motor-atonic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-atonic','Sudden loss or diminution of muscle tone without apparent preceding myoclonic or tonic event lasting greater or equal to 1 to 2 s, involving head, trunk, jaw, or limb musculature.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1496,1480,2,'Semiology-motor-eye-blinking','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-eye-blinking','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1497,1480,2,'Semiology-motor-other-elementary-motor','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-elementary-motor/Semiology-motor-other-elementary-motor','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1498,1479,2,'Semiology-motor-automatisms','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1499,1498,2,'Semiology-motor-automatisms-mimetic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-mimetic','Facial expression suggesting an emotional state, often fear.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1500,1498,2,'Semiology-motor-automatisms-oroalimentary','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-oroalimentary','Lip smacking, lip pursing, chewing, licking, tooth grinding, or swallowing.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1501,1498,2,'Semiology-motor-automatisms-dacrystic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-dacrystic','Bursts of crying.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1502,1498,2,'Semiology-motor-automatisms-dyspraxic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-dyspraxic','Inability to perform learned movements spontaneously or on command or imitation despite intact relevant motor and sensory systems and adequate comprehension and cooperation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1503,1498,2,'Semiology-motor-automatisms-manual','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-manual','1. Indicates principally distal components, bilateral or unilateral. 2. Fumbling, tapping, manipulating movements.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1504,1498,2,'Semiology-motor-automatisms-gestural','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-gestural','Semipurposive, asynchronous hand movements. Often unilateral.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1505,1498,2,'Semiology-motor-automatisms-pedal','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-pedal','1. Indicates principally distal components, bilateral or unilateral. 2. Fumbling, tapping, manipulating movements.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1506,1498,2,'Semiology-motor-automatisms-hypermotor','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-hypermotor','1. Involves predominantly proximal limb or axial muscles producing irregular sequential ballistic movements, such as pedaling, pelvic thrusting, thrashing, rocking movements. 2. Increase in rate of ongoing movements or inappropriately rapid performance of a movement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1507,1498,2,'Semiology-motor-automatisms-hypokinetic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-hypokinetic','A decrease in amplitude and/or rate or arrest of ongoing motor activity.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1508,1498,2,'Semiology-motor-automatisms-gelastic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-automatisms-gelastic','Bursts of laughter or giggling, usually without an appropriate affective tone.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1509,1498,2,'Semiology-motor-other-automatisms','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-automatisms/Semiology-motor-other-automatisms','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1510,1479,2,'Semiology-motor-behavioral-arrest','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-motor-manifestation/Semiology-motor-behavioral-arrest','Interruption of ongoing motor activity or of ongoing behaviors with fixed gaze, without movement of the head or trunk (oro-alimentary and hand automatisms may continue).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1511,1478,2,'Semiology-non-motor-manifestation','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1512,1511,2,'Semiology-sensory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1513,1512,2,'Semiology-sensory-headache','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-headache','Headache occurring in close temporal proximity to the seizure or as the sole seizure manifestation.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1514,1512,2,'Semiology-sensory-visual','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-visual','Flashing or flickering lights, spots, simple patterns, scotomata, or amaurosis.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1515,1512,2,'Semiology-sensory-auditory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-auditory','Buzzing, drumming sounds or single tones.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1516,1512,2,'Semiology-sensory-olfactory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-olfactory','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1517,1512,2,'Semiology-sensory-gustatory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-gustatory','Taste sensations including acidic, bitter, salty, sweet, or metallic.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1518,1512,2,'Semiology-sensory-epigastric','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-epigastric','Abdominal discomfort including nausea, emptiness, tightness, churning, butterflies, malaise, pain, and hunger; sensation may rise to chest or throat. Some phenomena may reflect ictal autonomic dysfunction.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1519,1512,2,'Semiology-sensory-somatosensory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-somatosensory','Tingling, numbness, electric-shock sensation, sense of movement or desire to move.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1520,1512,2,'Semiology-sensory-painful','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-painful','Peripheral (lateralized/bilateral), cephalic, abdominal.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1521,1512,2,'Semiology-sensory-autonomic-sensation','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-autonomic-sensation','A sensation consistent with involvement of the autonomic nervous system, including cardiovascular, gastrointestinal, sudomotor, vasomotor, and thermoregulatory functions. (Thus autonomic aura; cf. autonomic events 3.0).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1522,1512,2,'Semiology-sensory-other','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-sensory/Semiology-sensory-other','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1523,1511,2,'Semiology-experiential','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1524,1523,2,'Semiology-experiential-affective-emotional','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential/Semiology-experiential-affective-emotional','Components include fear, depression, joy, and (rarely) anger.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1525,1523,2,'Semiology-experiential-hallucinatory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential/Semiology-experiential-hallucinatory','Composite perceptions without corresponding external stimuli involving visual, auditory, somatosensory, olfactory, and/or gustatory phenomena. Example: hearing and seeing people talking.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1526,1523,2,'Semiology-experiential-illusory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential/Semiology-experiential-illusory','An alteration of actual percepts involving the visual, auditory, somatosensory, olfactory, or gustatory systems.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1527,1523,2,'Semiology-experiential-mnemonic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential/Semiology-experiential-mnemonic','Components that reflect ictal dysmnesia such as feelings of familiarity (deja-vu) and unfamiliarity (jamais-vu).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1528,1527,2,'Semiology-experiential-mnemonic-Deja-vu','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential/Semiology-experiential-mnemonic/Semiology-experiential-mnemonic-Deja-vu','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1529,1527,2,'Semiology-experiential-mnemonic-Jamais-vu','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential/Semiology-experiential-mnemonic/Semiology-experiential-mnemonic-Jamais-vu','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1530,1523,2,'Semiology-experiential-other','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-experiential/Semiology-experiential-other','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1531,1511,2,'Semiology-dyscognitive','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-dyscognitive','The term describes events in which (1) disturbance of cognition is the predominant or most apparent feature, and (2a) two or more of the following components are involved, or (2b) involvement of such components remains undetermined. Otherwise, use the more specific term (e.g., mnemonic experiential seizure or hallucinatory experiential seizure). Components of cognition: ++ perception: symbolic conception of sensory information ++ attention: appropriate selection of a principal perception or task ++ emotion: appropriate affective significance of a perception ++ memory: ability to store and retrieve percepts or concepts ++ executive function: anticipation, selection, monitoring of consequences, and initiation of motor activity including praxis, speech.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1532,1511,2,'Semiology-language-related','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-language-related','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1533,1532,2,'Semiology-language-related-vocalization','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-language-related/Semiology-language-related-vocalization','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1534,1532,2,'Semiology-language-related-verbalization','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-language-related/Semiology-language-related-verbalization','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1535,1532,2,'Semiology-language-related-dysphasia','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-language-related/Semiology-language-related-dysphasia','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1536,1532,2,'Semiology-language-related-aphasia','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-language-related/Semiology-language-related-aphasia','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1537,1532,2,'Semiology-language-related-other','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-language-related/Semiology-language-related-other','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1538,1511,2,'Semiology-autonomic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1539,1538,2,'Semiology-autonomic-pupillary','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-pupillary','Mydriasis, miosis (either bilateral or unilateral).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1540,1538,2,'Semiology-autonomic-hypersalivation','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-hypersalivation','Increase in production of saliva leading to uncontrollable drooling');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1541,1538,2,'Semiology-autonomic-respiratory-apnoeic','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-respiratory-apnoeic','subjective shortness of breath, hyperventilation, stridor, coughing, choking, apnea, oxygen desaturation, neurogenic pulmonary edema.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1542,1538,2,'Semiology-autonomic-cardiovascular','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-cardiovascular','Modifications of heart rate (tachycardia, bradycardia), cardiac arrhythmias (such as sinus arrhythmia, sinus arrest, supraventricular tachycardia, atrial premature depolarizations, ventricular premature depolarizations, atrio-ventricular block, bundle branch block, atrioventricular nodal escape rhythm, asystole).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1543,1538,2,'Semiology-autonomic-gastrointestinal','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-gastrointestinal','Nausea, eructation, vomiting, retching, abdominal sensations, abdominal pain, flatulence, spitting, diarrhea.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1544,1538,2,'Semiology-autonomic-urinary-incontinence','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-urinary-incontinence','urinary urge (intense urinary urge at the beginning of seizures), urinary incontinence, ictal urination (rare symptom of partial seizures without loss of consciousness).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1545,1538,2,'Semiology-autonomic-genital','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-genital','Sexual auras (erotic thoughts and feelings, sexual arousal and orgasm). Genital auras (unpleasant, sometimes painful, frightening or emotionally neutral somatosensory sensations in the genitals that can be accompanied by ictal orgasm). Sexual automatisms (hypermotor movements consisting of writhing, thrusting, rhythmic movements of the pelvis, arms and legs, sometimes associated with picking and rhythmic manipulation of the groin or genitalia, exhibitionism and masturbation).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1546,1538,2,'Semiology-autonomic-vasomotor','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-vasomotor','Flushing or pallor (may be accompanied by feelings of warmth, cold and pain).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1547,1538,2,'Semiology-autonomic-sudomotor','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-sudomotor','Sweating and piloerection (may be accompanied by feelings of warmth, cold and pain).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1548,1538,2,'Semiology-autonomic-thermoregulatory','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-thermoregulatory','Hyperthermia, fever.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1549,1538,2,'Semiology-autonomic-other','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-non-motor-manifestation/Semiology-autonomic/Semiology-autonomic-other','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1550,1478,2,'Semiology-manifestation-other','Finding-property/Episode-property/Seizure-semiology-manifestation/Semiology-manifestation-other','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1551,1449,2,'Postictal-semiology-manifestation','Finding-property/Episode-property/Postictal-semiology-manifestation','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1552,1551,2,'Postictal-semiology-unconscious','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-unconscious','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1553,1551,2,'Postictal-semiology-quick-recovery-of-consciousness','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-quick-recovery-of-consciousness','Quick recovery of awareness and responsiveness.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1554,1551,2,'Postictal-semiology-aphasia-or-dysphasia','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-aphasia-or-dysphasia','Impaired communication involving language without dysfunction of relevant primary motor or sensory pathways, manifested as impaired comprehension, anomia, parahasic errors or a combination of these.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1555,1551,2,'Postictal-semiology-behavioral-change','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-behavioral-change','Occurring immediately after a aseizure. Including psychosis, hypomanina, obsessive-compulsive behavior.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1556,1551,2,'Postictal-semiology-hemianopia','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-hemianopia','Postictal visual loss in a a hemi field.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1557,1551,2,'Postictal-semiology-impaired-cognition','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-impaired-cognition','Decreased Cognitive performance involving one or more of perception, attention, emotion, memory, execution, praxis, speech.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1558,1551,2,'Postictal-semiology-dysphoria','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-dysphoria','Depression, irritability, euphoric mood, fear, anxiety.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1559,1551,2,'Postictal-semiology-headache','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-headache','Headache with features of tension-type or migraine headache that develops within 3 h following the seizure and resolves within 72 h after seizure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1560,1551,2,'Postictal-semiology-nose-wiping','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-nose-wiping','Noes-wiping usually within 60 sec of seizure offset, usually with the hand ipsilateral to the seizure onset.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1561,1551,2,'Postictal-semiology-anterograde-amnesia','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-anterograde-amnesia','Impaired ability to remember new material.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1562,1551,2,'Postictal-semiology-retrograde-amnesia','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-retrograde-amnesia','Impaired ability to recall previously remember material.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1563,1551,2,'Postictal-semiology-paresis','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-paresis','Todds palsy. Any unilateral postictal dysfunction relating to motor, language, sensory and/or integrative functions.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1564,1551,2,'Postictal-semiology-sleep','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-sleep','Invincible need to sleep after a seizure.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1565,1551,2,'Postictal-semiology-unilateral-myoclonic-jerks','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-unilateral-myoclonic-jerks','unilateral motor phenomena, other then specified, occurring in postictal phase.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1566,1551,2,'Postictal-semiology-other-unilateral-motor-phenomena','Finding-property/Episode-property/Postictal-semiology-manifestation/Postictal-semiology-other-unilateral-motor-phenomena','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1567,1449,2,'Polygraphic-channel-relation-to-episode','Finding-property/Episode-property/Polygraphic-channel-relation-to-episode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1568,1567,2,'Polygraphic-channel-cause-to-episode','Finding-property/Episode-property/Polygraphic-channel-relation-to-episode/Polygraphic-channel-cause-to-episode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1569,1567,2,'Polygraphic-channel-consequence-of-episode','Finding-property/Episode-property/Polygraphic-channel-relation-to-episode/Polygraphic-channel-consequence-of-episode','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1570,1449,2,'Ictal-EEG-patterns','Finding-property/Episode-property/Ictal-EEG-patterns','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1571,1570,2,'Ictal-EEG-patterns-obscured-by-artifacts','Finding-property/Episode-property/Ictal-EEG-patterns/Ictal-EEG-patterns-obscured-by-artifacts','The interpretation of the EEG is not possible due to artifacts.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1572,1570,2,'Ictal-EEG-activity','Finding-property/Episode-property/Ictal-EEG-patterns/Ictal-EEG-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1573,1570,2,'Postictal-EEG-activity','Finding-property/Episode-property/Ictal-EEG-patterns/Postictal-EEG-activity','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1574,1449,2,'Episode-time-context-property','Finding-property/Episode-property/Episode-time-context-property','Additional clinically relevant features related to episodes can be scored under timing and context. If needed, episode duration can be tagged with base schema /Property/Data-property/Data-value/Spatiotemporal-value/Temporal-value/Duration.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1575,1574,2,'Episode-consciousness','Finding-property/Episode-property/Episode-time-context-property/Episode-consciousness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1576,1575,2,'Episode-consciousness-not-tested','Finding-property/Episode-property/Episode-time-context-property/Episode-consciousness/Episode-consciousness-not-tested','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1577,1575,2,'Episode-consciousness-affected','Finding-property/Episode-property/Episode-time-context-property/Episode-consciousness/Episode-consciousness-affected','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1578,1575,2,'Episode-consciousness-mildly-affected','Finding-property/Episode-property/Episode-time-context-property/Episode-consciousness/Episode-consciousness-mildly-affected','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1579,1575,2,'Episode-consciousness-not-affected','Finding-property/Episode-property/Episode-time-context-property/Episode-consciousness/Episode-consciousness-not-affected','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1580,1574,2,'Episode-awareness','Finding-property/Episode-property/Episode-time-context-property/Episode-awareness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1581,1574,2,'Clinical-EEG-temporal-relationship','Finding-property/Episode-property/Episode-time-context-property/Clinical-EEG-temporal-relationship','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1582,1581,2,'Clinical-start-followed-EEG','Finding-property/Episode-property/Episode-time-context-property/Clinical-EEG-temporal-relationship/Clinical-start-followed-EEG','Clinical start, followed by EEG start by X seconds.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1583,1581,2,'EEG-start-followed-clinical','Finding-property/Episode-property/Episode-time-context-property/Clinical-EEG-temporal-relationship/EEG-start-followed-clinical','EEG start, followed by clinical start by X seconds.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1584,1581,2,'Simultaneous-start-clinical-EEG','Finding-property/Episode-property/Episode-time-context-property/Clinical-EEG-temporal-relationship/Simultaneous-start-clinical-EEG','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1585,1581,2,'Clinical-EEG-temporal-relationship-notes','Finding-property/Episode-property/Episode-time-context-property/Clinical-EEG-temporal-relationship/Clinical-EEG-temporal-relationship-notes','Clinical notes to annotate the clinical-EEG temporal relationship.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1586,1574,2,'Episode-event-count','Finding-property/Episode-property/Episode-time-context-property/Episode-event-count','Number of stereotypical episodes during the recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1587,1574,2,'State-episode-start','Finding-property/Episode-property/Episode-time-context-property/State-episode-start','State at the start of the episode.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1588,1587,2,'Episode-start-from-sleep','Finding-property/Episode-property/Episode-time-context-property/State-episode-start/Episode-start-from-sleep','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1589,1587,2,'Episode-start-from-awake','Finding-property/Episode-property/Episode-time-context-property/State-episode-start/Episode-start-from-awake','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1590,1574,2,'Episode-postictal-phase','Finding-property/Episode-property/Episode-time-context-property/Episode-postictal-phase','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1591,1574,2,'Episode-prodrome','Finding-property/Episode-property/Episode-time-context-property/Episode-prodrome','Prodrome is a preictal phenomenon, and it is defined as a subjective or objective clinical alteration (e.g., ill-localized sensation or agitation) that heralds the onset of an epileptic seizure but does not form part of it (Blume et al., 2001). Therefore, prodrome should be distinguished from aura (which is an ictal phenomenon).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1592,1574,2,'Episode-tongue-biting','Finding-property/Episode-property/Episode-time-context-property/Episode-tongue-biting','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1593,1574,2,'Episode-responsiveness','Finding-property/Episode-property/Episode-time-context-property/Episode-responsiveness','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1594,1593,2,'Episode-responsiveness-preserved','Finding-property/Episode-property/Episode-time-context-property/Episode-responsiveness/Episode-responsiveness-preserved','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1595,1593,2,'Episode-responsiveness-affected','Finding-property/Episode-property/Episode-time-context-property/Episode-responsiveness/Episode-responsiveness-affected','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1596,1574,2,'Episode-appearance','Finding-property/Episode-property/Episode-time-context-property/Episode-appearance','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1597,1596,2,'Episode-appearance-interactive','Finding-property/Episode-property/Episode-time-context-property/Episode-appearance/Episode-appearance-interactive','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1598,1596,2,'Episode-appearance-spontaneous','Finding-property/Episode-property/Episode-time-context-property/Episode-appearance/Episode-appearance-spontaneous','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1599,1574,2,'Seizure-dynamics','Finding-property/Episode-property/Episode-time-context-property/Seizure-dynamics','Spatiotemporal dynamics can be scored (evolution in morphology; evolution in frequency; evolution in location).');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1600,1599,2,'Seizure-dynamics-evolution-morphology','Finding-property/Episode-property/Episode-time-context-property/Seizure-dynamics/Seizure-dynamics-evolution-morphology','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1601,1599,2,'Seizure-dynamics-evolution-frequency','Finding-property/Episode-property/Episode-time-context-property/Seizure-dynamics/Seizure-dynamics-evolution-frequency','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1602,1599,2,'Seizure-dynamics-evolution-location','Finding-property/Episode-property/Episode-time-context-property/Seizure-dynamics/Seizure-dynamics-evolution-location','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1603,1599,2,'Seizure-dynamics-not-possible-to-determine','Finding-property/Episode-property/Episode-time-context-property/Seizure-dynamics/Seizure-dynamics-not-possible-to-determine','Not possible to determine.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1604,1226,2,'Other-finding-property','Finding-property/Other-finding-property','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1605,1604,2,'Artifact-significance-to-recording','Finding-property/Other-finding-property/Artifact-significance-to-recording','It is important to score the significance of the described artifacts: recording is not interpretable, recording of reduced diagnostic value, does not interfere with the interpretation of the recording.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1606,1605,2,'Recording-not-interpretable-due-to-artifact','Finding-property/Other-finding-property/Artifact-significance-to-recording/Recording-not-interpretable-due-to-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1607,1605,2,'Recording-of-reduced-diagnostic-value-due-to-artifact','Finding-property/Other-finding-property/Artifact-significance-to-recording/Recording-of-reduced-diagnostic-value-due-to-artifact','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1608,1605,2,'Artifact-does-not-interfere-recording','Finding-property/Other-finding-property/Artifact-significance-to-recording/Artifact-does-not-interfere-recording','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1609,1604,2,'Finding-significance-to-recording','Finding-property/Other-finding-property/Finding-significance-to-recording','Significance of finding. When normal/abnormal could be labeled with base schema Normal/Abnormal tags.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1610,1609,2,'Finding-no-definite-abnormality','Finding-property/Other-finding-property/Finding-significance-to-recording/Finding-no-definite-abnormality','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1611,1609,2,'Finding-significance-not-possible-to-determine','Finding-property/Other-finding-property/Finding-significance-to-recording/Finding-significance-not-possible-to-determine','Not possible to determine.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1612,1604,2,'Finding-frequency','Finding-property/Other-finding-property/Finding-frequency','Value in Hz (number) typed in.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1613,1604,2,'Finding-amplitude','Finding-property/Other-finding-property/Finding-amplitude','Value in microvolts (number) typed in.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1614,1604,2,'Finding-amplitude-asymmetry','Finding-property/Other-finding-property/Finding-amplitude-asymmetry','For posterior dominant rhythm: a difference in amplitude between the homologous area on opposite sides of the head that consistently exceeds 50 percent. When symmetrical could be labeled with base schema Symmetrical tag. For sleep: Absence or consistently marked amplitude asymmetry (greater than 50 percent) of a normal sleep graphoelement.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1615,1614,2,'Finding-amplitude-asymmetry-lower-left','Finding-property/Other-finding-property/Finding-amplitude-asymmetry/Finding-amplitude-asymmetry-lower-left','Amplitude lower on the left side.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1616,1614,2,'Finding-amplitude-asymmetry-lower-right','Finding-property/Other-finding-property/Finding-amplitude-asymmetry/Finding-amplitude-asymmetry-lower-right','Amplitude lower on the right side.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1617,1614,2,'Finding-amplitude-asymmetry-not-possible-to-determine','Finding-property/Other-finding-property/Finding-amplitude-asymmetry/Finding-amplitude-asymmetry-not-possible-to-determine','Not possible to determine.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1618,1604,2,'Finding-stopped-by','Finding-property/Other-finding-property/Finding-stopped-by','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1619,1604,2,'Finding-triggered-by','Finding-property/Other-finding-property/Finding-triggered-by','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1620,1604,2,'Finding-unmodified','Finding-property/Other-finding-property/Finding-unmodified','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1621,1604,2,'Property-not-possible-to-determine','Finding-property/Other-finding-property/Property-not-possible-to-determine','Not possible to determine.');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1622,1604,2,'Property-exists','Finding-property/Other-finding-property/Property-exists','No description available');
+INSERT INTO `hed_schema_nodes` (`ID`, `ParentID`, `SchemaID`, `Name`, `LongName`, `Description`) VALUES (1623,1604,2,'Property-absence','Finding-property/Other-finding-property/Property-absence','No description available');
+UNLOCK TABLES;
+SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_permissions.sql b/raisinbread/RB_files/RB_permissions.sql
index 1cc65054d0d..9e1dd4d34bc 100644
--- a/raisinbread/RB_files/RB_permissions.sql
+++ b/raisinbread/RB_files/RB_permissions.sql
@@ -14,14 +14,14 @@ INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (12,'examiner_view','Add and Certify Examiners - Own Sites',17,NULL,2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (13,'examiner_multisite','Add and Certify Examiners - All Sites',17,NULL,2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (17,'conflict_resolver','Resolve Conflicts',9,NULL,2);
-INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (18,'data_dict_view','Parameter Type Descriptions',13,'View',2);
+INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (18,'data_dict_view','Parameter Type Descriptions',46,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (19,'violated_scans_view_allsites','Violated Scans - All Sites',30,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (22,'config','Settings',8,'View/Edit',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (23,'imaging_browser_view_site','Imaging Scans - Own Sites',20,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (24,'imaging_browser_view_allsites','Imaging Scans - All Sites',20,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (25,'dicom_archive_view_allsites','DICOMs - All Sites',15,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (28,'instrument_builder','Instrument Forms',23,'Create/Edit',2);
-INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (29,'data_dict_edit','Parameter Type Descriptions',13,'Edit',2);
+INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (29,'data_dict_edit','Parameter Type Descriptions',46,'Edit',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (31,'candidate_parameter_view','Candidate Information',7,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (32,'candidate_parameter_edit','Candidate Information',7,'Edit',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (33,'genomic_browser_view_site','Genomic Data - Own Sites',18,'View',2);
@@ -61,9 +61,10 @@ INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (67,'survey_accounts_view','Candidate Surveys',36,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (68,'imaging_quality_control_view','Flagged Imaging Entries',21,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (69,'behavioural_quality_control_view','Flagged Behavioural Entries',3,'View',2);
-INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (70,'api_docs','API Documentation: View LORIS API Manual',NULL,NULL,2);
+INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (70,'api_docs','LORIS API Manual',45,'View',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (71,'electrophysiology_browser_edit_annotations','Annotations',41,'Create/Edit',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (72,'monitor_eeg_uploads','Monitor EEG uploads',47,'Create/Edit',2);
INSERT INTO `permissions` (`permID`, `code`, `description`, `moduleID`, `action`, `categoryID`) VALUES (73,'schedule_module','Schedule Module: edit and delete appointment',48,'View/Create/Edit',2);
+
UNLOCK TABLES;
SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_annotation_archive.sql b/raisinbread/RB_files/RB_physiological_annotation_archive.sql
deleted file mode 100644
index 4b151ea9537..00000000000
--- a/raisinbread/RB_files/RB_physiological_annotation_archive.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-SET FOREIGN_KEY_CHECKS=0;
-TRUNCATE TABLE `physiological_annotation_archive`;
-LOCK TABLES `physiological_annotation_archive` WRITE;
-UNLOCK TABLES;
-SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_annotation_file.sql b/raisinbread/RB_files/RB_physiological_annotation_file.sql
deleted file mode 100644
index a80a80a2a37..00000000000
--- a/raisinbread/RB_files/RB_physiological_annotation_file.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-SET FOREIGN_KEY_CHECKS=0;
-TRUNCATE TABLE `physiological_annotation_file`;
-LOCK TABLES `physiological_annotation_file` WRITE;
-UNLOCK TABLES;
-SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_annotation_file_type.sql b/raisinbread/RB_files/RB_physiological_annotation_file_type.sql
deleted file mode 100644
index 4a1f2f664c4..00000000000
--- a/raisinbread/RB_files/RB_physiological_annotation_file_type.sql
+++ /dev/null
@@ -1,7 +0,0 @@
-SET FOREIGN_KEY_CHECKS=0;
-TRUNCATE TABLE `physiological_annotation_file_type`;
-LOCK TABLES `physiological_annotation_file_type` WRITE;
-INSERT INTO `physiological_annotation_file_type` (`FileType`, `Description`) VALUES ('json','JSON File Type, metadata for annotations');
-INSERT INTO `physiological_annotation_file_type` (`FileType`, `Description`) VALUES ('tsv','TSV File Type, contains information about each annotation');
-UNLOCK TABLES;
-SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_annotation_instance.sql b/raisinbread/RB_files/RB_physiological_annotation_instance.sql
deleted file mode 100644
index 7a5d15a8e08..00000000000
--- a/raisinbread/RB_files/RB_physiological_annotation_instance.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-SET FOREIGN_KEY_CHECKS=0;
-TRUNCATE TABLE `physiological_annotation_instance`;
-LOCK TABLES `physiological_annotation_instance` WRITE;
-UNLOCK TABLES;
-SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_annotation_label.sql b/raisinbread/RB_files/RB_physiological_annotation_label.sql
deleted file mode 100644
index 64168d79151..00000000000
--- a/raisinbread/RB_files/RB_physiological_annotation_label.sql
+++ /dev/null
@@ -1,28 +0,0 @@
-SET FOREIGN_KEY_CHECKS=0;
-TRUNCATE TABLE `physiological_annotation_label`;
-LOCK TABLES `physiological_annotation_label` WRITE;
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (1,NULL,'artifact','artifactual data');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (2,NULL,'motion','motion related artifact');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (3,NULL,'flux_jump','artifactual data due to flux jump');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (4,NULL,'line_noise','artifactual data due to line noise (e.g., 50Hz)');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (5,NULL,'muscle','artifactual data due to muscle activity');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (6,NULL,'epilepsy_interictal','period deemed interictal');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (7,NULL,'epilepsy_preictal','onset of preictal state prior to onset of epilepsy');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (8,NULL,'epilepsy_seizure','onset of epilepsy');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (9,NULL,'epilepsy_postictal','postictal seizure period');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (10,NULL,'epileptiform','unspecified epileptiform activity');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (11,NULL,'epileptiform_single','a single epileptiform graphoelement (including possible slow wave)');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (12,NULL,'epileptiform_run','a run of one or more epileptiform graphoelements');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (13,NULL,'eye_blink','Eye blink');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (14,NULL,'eye_movement','Smooth Pursuit / Saccadic eye movement');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (15,NULL,'eye_fixation','Fixation onset');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (16,NULL,'sleep_N1','sleep stage N1');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (17,NULL,'sleep_N2','sleep stage N2');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (18,NULL,'sleep_N3','sleep stage N3');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (19,NULL,'sleep_REM','REM sleep');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (20,NULL,'sleep_wake','sleep stage awake');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (21,NULL,'sleep_spindle','sleep spindle');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (22,NULL,'sleep_k-complex','sleep K-complex');
-INSERT INTO `physiological_annotation_label` (`AnnotationLabelID`, `AnnotationFileID`, `LabelName`, `LabelDescription`) VALUES (23,NULL,'scorelabeled','a global label indicating that the EEG has been annotated with SCORE.');
-UNLOCK TABLES;
-SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_annotation_parameter.sql b/raisinbread/RB_files/RB_physiological_annotation_parameter.sql
deleted file mode 100644
index 812f2463f90..00000000000
--- a/raisinbread/RB_files/RB_physiological_annotation_parameter.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-SET FOREIGN_KEY_CHECKS=0;
-TRUNCATE TABLE `physiological_annotation_parameter`;
-LOCK TABLES `physiological_annotation_parameter` WRITE;
-UNLOCK TABLES;
-SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_annotation_rel.sql b/raisinbread/RB_files/RB_physiological_annotation_rel.sql
deleted file mode 100644
index 362e9d22592..00000000000
--- a/raisinbread/RB_files/RB_physiological_annotation_rel.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-SET FOREIGN_KEY_CHECKS=0;
-TRUNCATE TABLE `physiological_annotation_rel`;
-LOCK TABLES `physiological_annotation_rel` WRITE;
-UNLOCK TABLES;
-SET FOREIGN_KEY_CHECKS=1;
diff --git a/raisinbread/RB_files/RB_physiological_task_event.sql b/raisinbread/RB_files/RB_physiological_task_event.sql
index 7a24d50a9e0..b13b927d672 100644
--- a/raisinbread/RB_files/RB_physiological_task_event.sql
+++ b/raisinbread/RB_files/RB_physiological_task_event.sql
@@ -1,19857 +1,19857 @@
SET FOREIGN_KEY_CHECKS=0;
TRUNCATE TABLE `physiological_task_event`;
LOCK TABLES `physiological_task_event` WRITE;
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1,1,1,'2019-08-21 15:09:58',11.734000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2,1,1,'2019-08-21 15:09:58',12.533000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3,1,1,'2019-08-21 15:09:58',13.332000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4,1,1,'2019-08-21 15:09:58',14.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5,1,1,'2019-08-21 15:09:58',14.997000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6,1,1,'2019-08-21 15:09:58',15.508000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7,1,1,'2019-08-21 15:09:58',15.796000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8,1,1,'2019-08-21 15:09:58',16.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9,1,1,'2019-08-21 15:09:58',17.478000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10,1,1,'2019-08-21 15:09:58',18.243000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11,1,1,'2019-08-21 15:09:58',19.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12,1,1,'2019-08-21 15:09:58',19.941000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13,1,1,'2019-08-21 15:09:58',20.554000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14,1,1,'2019-08-21 15:09:58',20.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15,1,1,'2019-08-21 15:09:58',21.159000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16,1,1,'2019-08-21 15:09:58',21.739000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17,1,1,'2019-08-21 15:09:58',22.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18,1,1,'2019-08-21 15:09:58',23.505000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19,1,1,'2019-08-21 15:09:58',23.975000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (20,1,1,'2019-08-21 15:09:58',24.503000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (21,1,1,'2019-08-21 15:09:58',24.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (22,1,1,'2019-08-21 15:09:58',25.419000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (23,1,1,'2019-08-21 15:09:58',26.285000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (24,1,1,'2019-08-21 15:09:58',27.200000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (25,1,1,'2019-08-21 15:09:58',27.558000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (26,1,1,'2019-08-21 15:09:58',28.066000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (27,1,1,'2019-08-21 15:09:58',28.915000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (28,1,1,'2019-08-21 15:09:58',29.715000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (29,1,1,'2019-08-21 15:09:58',30.040000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (30,1,1,'2019-08-21 15:09:58',30.597000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (31,1,1,'2019-08-21 15:09:58',31.513000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (32,1,1,'2019-08-21 15:09:58',32.411000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (33,1,1,'2019-08-21 15:09:58',32.855000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (34,1,1,'2019-08-21 15:09:58',33.178000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (35,1,1,'2019-08-21 15:09:58',33.521000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (36,1,1,'2019-08-21 15:09:58',34.010000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (37,1,1,'2019-08-21 15:09:58',35.009000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (38,1,1,'2019-08-21 15:09:58',35.891000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (39,1,1,'2019-08-21 15:09:58',36.890000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (40,1,1,'2019-08-21 15:09:58',37.672000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (41,1,1,'2019-08-21 15:09:58',38.472000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (42,1,1,'2019-08-21 15:09:58',39.454000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (43,1,1,'2019-08-21 15:09:58',40.236000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (44,1,1,'2019-08-21 15:09:58',40.597000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (45,1,1,'2019-08-21 15:09:58',41.219000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (46,1,1,'2019-08-21 15:09:58',42.117000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (47,1,1,'2019-08-21 15:09:58',42.483000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (48,1,1,'2019-08-21 15:09:58',43.083000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (49,1,1,'2019-08-21 15:09:58',44.049000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (50,1,1,'2019-08-21 15:09:58',45.015000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (51,1,1,'2019-08-21 15:09:58',45.410000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (52,1,1,'2019-08-21 15:09:58',45.913000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (53,1,1,'2019-08-21 15:09:58',46.696000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (54,1,1,'2019-08-21 15:09:58',47.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (55,1,1,'2019-08-21 15:09:58',47.528000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (56,1,1,'2019-08-21 15:09:58',48.494000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (57,1,1,'2019-08-21 15:09:58',49.409000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (58,1,1,'2019-08-21 15:09:58',50.226000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (59,1,1,'2019-08-21 15:09:58',51.141000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (60,1,1,'2019-08-21 15:09:58',51.957000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (61,1,1,'2019-08-21 15:09:58',52.344000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (62,1,1,'2019-08-21 15:09:58',52.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (63,1,1,'2019-08-21 15:09:58',53.362000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (64,1,1,'2019-08-21 15:09:58',53.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (65,1,1,'2019-08-21 15:09:58',54.109000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (66,1,1,'2019-08-21 15:09:58',54.587000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (67,1,1,'2019-08-21 15:09:58',55.370000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (68,1,1,'2019-08-21 15:09:58',55.896000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (69,1,1,'2019-08-21 15:09:58',56.302000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (70,1,1,'2019-08-21 15:09:58',57.301000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (71,1,1,'2019-08-21 15:09:58',58.300000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (72,1,1,'2019-08-21 15:09:58',59.199000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (73,1,1,'2019-08-21 15:09:58',60.015000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (74,1,1,'2019-08-21 15:09:58',61.014000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (75,1,1,'2019-08-21 15:09:58',61.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (76,1,1,'2019-08-21 15:09:58',62.324000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (77,1,1,'2019-08-21 15:09:58',62.828000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (78,1,1,'2019-08-21 15:09:58',63.644000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (79,1,1,'2019-08-21 15:09:58',64.010000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (80,1,1,'2019-08-21 15:09:58',64.410000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (81,1,1,'2019-08-21 15:09:58',65.409000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (82,1,1,'2019-08-21 15:09:58',66.175000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (83,1,1,'2019-08-21 15:09:58',66.645000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (84,1,1,'2019-08-21 15:09:58',67.073000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (85,1,1,'2019-08-21 15:09:58',67.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (86,1,1,'2019-08-21 15:09:58',68.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (87,1,1,'2019-08-21 15:09:58',68.755000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (88,1,1,'2019-08-21 15:09:58',69.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (89,1,1,'2019-08-21 15:09:58',69.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (90,1,1,'2019-08-21 15:09:58',70.337000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (91,1,1,'2019-08-21 15:09:58',71.285000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (92,1,1,'2019-08-21 15:09:58',72.268000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (93,1,1,'2019-08-21 15:09:58',73.184000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (94,1,1,'2019-08-21 15:09:58',73.617000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (95,1,1,'2019-08-21 15:09:58',73.966000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (96,1,1,'2019-08-21 15:09:58',74.832000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (97,1,1,'2019-08-21 15:09:58',75.598000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (98,1,1,'2019-08-21 15:09:58',76.597000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (99,1,1,'2019-08-21 15:09:58',77.445000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (100,1,1,'2019-08-21 15:09:58',77.866000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (101,1,1,'2019-08-21 15:09:58',78.444000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (102,1,1,'2019-08-21 15:09:58',78.855000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (103,1,1,'2019-08-21 15:09:58',79.210000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (104,1,1,'2019-08-21 15:09:58',80.060000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (105,1,1,'2019-08-21 15:09:58',80.958000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (106,1,1,'2019-08-21 15:09:58',81.957000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (107,1,1,'2019-08-21 15:09:58',82.790000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (108,1,1,'2019-08-21 15:09:58',83.165000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (109,1,1,'2019-08-21 15:09:58',83.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (110,1,1,'2019-08-21 15:09:58',84.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (111,1,1,'2019-08-21 15:09:58',85.052000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (112,1,1,'2019-08-21 15:09:58',85.670000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (113,1,1,'2019-08-21 15:09:58',86.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (114,1,1,'2019-08-21 15:09:58',87.401000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (115,1,1,'2019-08-21 15:09:58',88.268000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (116,1,1,'2019-08-21 15:09:58',88.675000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (117,1,1,'2019-08-21 15:09:58',89.166000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (118,1,1,'2019-08-21 15:09:58',89.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (119,1,1,'2019-08-21 15:09:58',89.932000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (120,1,1,'2019-08-21 15:09:58',90.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (121,1,1,'2019-08-21 15:09:58',91.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (122,1,1,'2019-08-21 15:09:58',92.513000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (123,1,1,'2019-08-21 15:09:58',92.863000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (124,1,1,'2019-08-21 15:09:58',93.378000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (125,1,1,'2019-08-21 15:09:58',94.277000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (126,1,1,'2019-08-21 15:09:58',94.640000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (127,1,1,'2019-08-21 15:09:58',95.243000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (128,1,1,'2019-08-21 15:09:58',96.025000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (129,1,1,'2019-08-21 15:09:58',96.975000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (130,1,1,'2019-08-21 15:09:58',97.344000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (131,1,1,'2019-08-21 15:09:58',97.840000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (132,1,1,'2019-08-21 15:09:58',98.789000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (133,1,1,'2019-08-21 15:09:58',99.181000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (134,1,1,'2019-08-21 15:09:58',99.688000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (135,1,1,'2019-08-21 15:09:58',100.504000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (136,1,1,'2019-08-21 15:09:58',101.470000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (137,1,1,'2019-08-21 15:09:58',102.468000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (138,1,1,'2019-08-21 15:09:58',103.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (139,1,1,'2019-08-21 15:09:58',103.803000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (140,1,1,'2019-08-21 15:09:58',104.350000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (141,1,1,'2019-08-21 15:09:58',105.282000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (142,1,1,'2019-08-21 15:09:58',106.214000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (143,1,1,'2019-08-21 15:09:58',106.538000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (144,1,1,'2019-08-21 15:09:58',107.146000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (145,1,1,'2019-08-21 15:09:58',107.598000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (146,1,1,'2019-08-21 15:09:58',108.129000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (147,1,1,'2019-08-21 15:09:58',109.044000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (148,1,1,'2019-08-21 15:09:58',109.910000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (149,1,1,'2019-08-21 15:09:58',110.332000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (150,1,1,'2019-08-21 15:09:58',110.709000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (151,1,1,'2019-08-21 15:09:58',111.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (152,1,1,'2019-08-21 15:09:58',112.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (153,1,1,'2019-08-21 15:09:58',113.623000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (154,1,1,'2019-08-21 15:09:58',114.057000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (155,1,1,'2019-08-21 15:09:58',114.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (156,1,1,'2019-08-21 15:09:58',115.287000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (157,1,1,'2019-08-21 15:09:58',115.712000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (158,1,1,'2019-08-21 15:09:58',116.220000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (159,1,1,'2019-08-21 15:09:58',117.136000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (160,1,1,'2019-08-21 15:09:58',118.018000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (161,1,1,'2019-08-21 15:09:58',118.416000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (162,1,1,'2019-08-21 15:09:58',118.967000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (163,1,1,'2019-08-21 15:09:58',119.496000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (164,1,1,'2019-08-21 15:09:58',119.816000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (165,1,1,'2019-08-21 15:09:58',120.682000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (166,1,1,'2019-08-21 15:09:58',121.497000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (167,1,1,'2019-08-21 15:09:58',122.347000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (168,1,1,'2019-08-21 15:09:58',123.212000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (169,1,1,'2019-08-21 15:09:58',123.573000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (170,1,1,'2019-08-21 15:09:58',124.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (171,1,1,'2019-08-21 15:09:58',124.943000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (172,1,1,'2019-08-21 15:09:58',125.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (173,1,1,'2019-08-21 15:09:58',126.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (174,1,1,'2019-08-21 15:09:58',126.742000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (175,1,1,'2019-08-21 15:09:58',127.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (176,1,1,'2019-08-21 15:09:58',128.523000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (177,1,1,'2019-08-21 15:09:58',129.289000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (178,1,1,'2019-08-21 15:09:58',130.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (179,1,1,'2019-08-21 15:09:58',130.547000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (180,1,1,'2019-08-21 15:09:58',131.004000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (181,1,1,'2019-08-21 15:09:58',131.415000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (182,1,1,'2019-08-21 15:09:58',131.819000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (183,1,1,'2019-08-21 15:09:58',132.802000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (184,1,1,'2019-08-21 15:09:58',133.801000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (185,1,1,'2019-08-21 15:09:58',134.160000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (186,1,1,'2019-08-21 15:09:58',134.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (187,1,1,'2019-08-21 15:09:58',135.665000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (188,1,1,'2019-08-21 15:09:58',136.598000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (189,1,1,'2019-08-21 15:09:58',137.580000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (190,1,1,'2019-08-21 15:09:58',138.015000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (191,1,1,'2019-08-21 15:09:58',138.462000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (192,1,1,'2019-08-21 15:09:58',139.378000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (193,1,1,'2019-08-21 15:09:58',140.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (194,1,1,'2019-08-21 15:09:58',140.578000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (195,1,1,'2019-08-21 15:09:58',141.010000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (196,1,1,'2019-08-21 15:09:58',141.842000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (197,1,1,'2019-08-21 15:09:58',142.314000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (198,1,1,'2019-08-21 15:09:58',142.808000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (199,1,1,'2019-08-21 15:09:58',143.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (200,1,1,'2019-08-21 15:09:58',144.589000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (201,1,1,'2019-08-21 15:09:58',145.090000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (202,1,1,'2019-08-21 15:09:58',145.505000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (203,1,1,'2019-08-21 15:09:58',146.320000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (204,1,1,'2019-08-21 15:09:58',147.086000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (205,1,1,'2019-08-21 15:09:58',148.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (206,1,1,'2019-08-21 15:09:58',148.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (207,1,1,'2019-08-21 15:09:58',148.984000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (208,1,1,'2019-08-21 15:09:58',149.850000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (209,1,1,'2019-08-21 15:09:58',150.716000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (210,1,1,'2019-08-21 15:09:58',151.682000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (211,1,1,'2019-08-21 15:09:58',152.663000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (212,1,1,'2019-08-21 15:09:58',153.629000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (213,1,1,'2019-08-21 15:09:58',154.132000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (214,1,1,'2019-08-21 15:09:58',154.595000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (215,1,1,'2019-08-21 15:09:58',155.030000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (216,1,1,'2019-08-21 15:09:58',155.443000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (217,1,1,'2019-08-21 15:09:58',156.310000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (218,1,1,'2019-08-21 15:09:58',157.158000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (219,1,1,'2019-08-21 15:09:58',157.503000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (220,1,1,'2019-08-21 15:09:58',158.091000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (221,1,1,'2019-08-21 15:09:58',158.593000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (222,1,1,'2019-08-21 15:09:58',158.974000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (223,1,1,'2019-08-21 15:09:58',159.955000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (224,1,1,'2019-08-21 15:09:58',160.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (225,1,1,'2019-08-21 15:09:58',161.358000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (226,1,1,'2019-08-21 15:09:58',161.787000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (227,1,1,'2019-08-21 15:09:58',162.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (228,1,1,'2019-08-21 15:09:58',163.585000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (229,1,1,'2019-08-21 15:09:58',164.417000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (230,1,1,'2019-08-21 15:09:58',164.789000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (231,1,1,'2019-08-21 15:09:58',165.250000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (232,1,1,'2019-08-21 15:09:58',166.115000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (233,1,1,'2019-08-21 15:09:58',167.098000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (234,1,1,'2019-08-21 15:09:58',168.030000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (235,1,1,'2019-08-21 15:09:58',168.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (236,1,1,'2019-08-21 15:09:58',168.979000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (237,1,1,'2019-08-21 15:09:58',169.928000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (238,1,1,'2019-08-21 15:09:58',170.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (239,1,1,'2019-08-21 15:09:58',170.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (240,1,1,'2019-08-21 15:09:58',171.843000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (241,1,1,'2019-08-21 15:09:58',172.809000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (242,1,1,'2019-08-21 15:09:58',173.607000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (243,1,1,'2019-08-21 15:09:58',174.034000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (244,1,1,'2019-08-21 15:09:58',174.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (245,1,1,'2019-08-21 15:09:58',175.013000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (246,1,1,'2019-08-21 15:09:58',175.472000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (247,1,1,'2019-08-21 15:09:58',176.338000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (248,1,1,'2019-08-21 15:09:58',177.337000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (249,1,1,'2019-08-21 15:09:58',178.335000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (250,1,1,'2019-08-21 15:09:58',179.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (251,1,1,'2019-08-21 15:09:58',180.150000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (252,1,1,'2019-08-21 15:09:58',180.634000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (253,1,1,'2019-08-21 15:09:58',180.999000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (254,1,1,'2019-08-21 15:09:58',181.798000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (255,1,1,'2019-08-21 15:09:58',182.179000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (256,1,1,'2019-08-21 15:09:58',182.747000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (257,1,1,'2019-08-21 15:09:58',183.197000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (258,1,1,'2019-08-21 15:09:58',183.547000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (259,1,1,'2019-08-21 15:09:58',184.545000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (260,1,1,'2019-08-21 15:09:58',185.428000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (261,1,1,'2019-08-21 15:09:58',186.377000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (262,1,1,'2019-08-21 15:09:58',187.259000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (263,1,1,'2019-08-21 15:09:58',187.668000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (264,1,1,'2019-08-21 15:09:58',188.274000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (265,1,1,'2019-08-21 15:09:58',189.190000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (266,1,1,'2019-08-21 15:09:58',190.156000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (267,1,1,'2019-08-21 15:09:58',190.585000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (268,1,1,'2019-08-21 15:09:58',190.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (269,1,1,'2019-08-21 15:09:58',191.921000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (270,1,1,'2019-08-21 15:09:58',192.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (271,1,1,'2019-08-21 15:09:58',192.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (272,1,1,'2019-08-21 15:09:58',193.719000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (273,1,1,'2019-08-21 15:09:58',194.299000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (274,1,1,'2019-08-21 15:09:58',194.617000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (275,1,1,'2019-08-21 15:09:58',195.533000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (276,1,1,'2019-08-21 15:09:58',196.499000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (277,1,1,'2019-08-21 15:09:58',197.281000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (278,1,1,'2019-08-21 15:09:58',198.080000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (279,1,1,'2019-08-21 15:09:58',198.487000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (280,1,1,'2019-08-21 15:09:58',198.979000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (281,1,1,'2019-08-21 15:09:58',199.962000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (282,1,1,'2019-08-21 15:09:58',200.827000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (283,1,1,'2019-08-21 15:09:58',201.677000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (284,1,1,'2019-08-21 15:09:58',202.181000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (285,1,1,'2019-08-21 15:09:58',202.476000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (286,1,1,'2019-08-21 15:09:58',203.309000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (287,1,1,'2019-08-21 15:09:58',203.766000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (288,1,1,'2019-08-21 15:09:58',204.273000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (289,1,1,'2019-08-21 15:09:58',205.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (290,1,1,'2019-08-21 15:09:58',205.683000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (291,1,1,'2019-08-21 15:09:58',206.205000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (292,1,1,'2019-08-21 15:09:58',207.021000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (293,1,1,'2019-08-21 15:09:58',207.804000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (294,1,1,'2019-08-21 15:09:58',208.246000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (295,1,1,'2019-08-21 15:09:58',208.669000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (296,1,1,'2019-08-21 15:09:58',209.451000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (297,1,1,'2019-08-21 15:09:58',210.367000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (298,1,1,'2019-08-21 15:09:58',210.719000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (299,1,1,'2019-08-21 15:09:58',211.300000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (300,1,1,'2019-08-21 15:09:58',212.281000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (301,1,1,'2019-08-21 15:09:58',212.656000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (302,1,1,'2019-08-21 15:09:58',213.081000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (303,1,1,'2019-08-21 15:09:58',213.946000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (304,1,1,'2019-08-21 15:09:58',214.862000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (305,1,1,'2019-08-21 15:09:58',215.694000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (306,1,1,'2019-08-21 15:09:58',216.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (307,1,1,'2019-08-21 15:09:58',216.915000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (308,1,1,'2019-08-21 15:09:58',217.442000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (309,1,1,'2019-08-21 15:09:58',218.242000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (310,1,1,'2019-08-21 15:09:58',218.631000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (311,1,1,'2019-08-21 15:09:58',219.024000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (312,1,1,'2019-08-21 15:09:58',219.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (313,1,1,'2019-08-21 15:09:58',220.905000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (314,1,1,'2019-08-21 15:09:58',221.838000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (315,1,1,'2019-08-21 15:09:58',222.163000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (316,1,1,'2019-08-21 15:09:58',222.820000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (317,1,1,'2019-08-21 15:09:58',223.233000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (318,1,1,'2019-08-21 15:09:58',223.586000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (319,1,1,'2019-08-21 15:09:58',224.385000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (320,1,1,'2019-08-21 15:09:58',225.284000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (321,1,1,'2019-08-21 15:09:58',226.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (322,1,1,'2019-08-21 15:09:58',226.543000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (323,1,1,'2019-08-21 15:09:58',226.949000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (324,1,1,'2019-08-21 15:09:58',227.452000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (325,1,1,'2019-08-21 15:09:58',227.932000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (326,1,1,'2019-08-21 15:09:58',228.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (327,1,1,'2019-08-21 15:09:58',229.646000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (328,1,1,'2019-08-21 15:09:58',230.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (329,1,1,'2019-08-21 15:09:58',231.311000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (330,1,1,'2019-08-21 15:09:58',232.210000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (331,1,1,'2019-08-21 15:09:58',232.608000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (332,1,1,'2019-08-21 15:09:58',233.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (333,1,1,'2019-08-21 15:09:58',233.908000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (334,1,1,'2019-08-21 15:09:58',234.426000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (335,1,1,'2019-08-21 15:09:58',234.824000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (336,1,1,'2019-08-21 15:09:58',235.789000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (337,1,1,'2019-08-21 15:09:58',236.589000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (338,1,1,'2019-08-21 15:09:58',237.471000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (339,1,1,'2019-08-21 15:09:58',237.947000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (340,1,1,'2019-08-21 15:09:58',238.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (341,1,1,'2019-08-21 15:09:58',239.235000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (342,1,1,'2019-08-21 15:09:58',240.201000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (343,1,1,'2019-08-21 15:09:58',240.622000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (344,1,1,'2019-08-21 15:09:58',240.967000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (345,1,1,'2019-08-21 15:09:58',241.899000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (346,1,1,'2019-08-21 15:09:58',242.849000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (347,1,1,'2019-08-21 15:09:58',243.780000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (348,1,1,'2019-08-21 15:09:58',244.204000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (349,1,1,'2019-08-21 15:09:58',244.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (350,1,1,'2019-08-21 15:09:58',245.662000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (351,1,1,'2019-08-21 15:09:58',246.052000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (352,1,1,'2019-08-21 15:09:58',246.444000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (353,1,1,'2019-08-21 15:09:58',247.410000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (354,1,1,'2019-08-21 15:09:58',248.226000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (355,1,1,'2019-08-21 15:09:58',249.125000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (356,1,1,'2019-08-21 15:09:58',249.543000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (357,1,1,'2019-08-21 15:09:58',249.940000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (358,1,1,'2019-08-21 15:09:58',250.723000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (359,1,1,'2019-08-21 15:09:58',251.522000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (360,1,1,'2019-08-21 15:09:58',251.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (361,1,1,'2019-08-21 15:09:58',252.305000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (362,1,1,'2019-08-21 15:09:58',253.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (363,1,1,'2019-08-21 15:09:58',254.053000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (364,1,1,'2019-08-21 15:09:58',254.519000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (365,1,1,'2019-08-21 15:09:58',255.035000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (366,1,1,'2019-08-21 15:09:58',255.934000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (367,1,1,'2019-08-21 15:09:58',256.866000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (368,1,1,'2019-08-21 15:09:58',257.264000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (369,1,1,'2019-08-21 15:09:58',257.732000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (370,1,1,'2019-08-21 15:09:58',258.531000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (371,1,1,'2019-08-21 15:09:58',259.530000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (372,1,1,'2019-08-21 15:09:58',259.878000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (373,1,1,'2019-08-21 15:09:58',260.379000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (374,1,1,'2019-08-21 15:09:58',261.145000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (375,1,1,'2019-08-21 15:09:58',261.944000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (376,1,1,'2019-08-21 15:09:58',262.400000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (377,1,1,'2019-08-21 15:09:58',262.910000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (378,1,1,'2019-08-21 15:09:58',263.875000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (379,1,1,'2019-08-21 15:09:58',264.675000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (380,1,1,'2019-08-21 15:09:58',265.573000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (381,1,1,'2019-08-21 15:09:58',266.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (382,1,1,'2019-08-21 15:09:58',266.942000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (383,1,1,'2019-08-21 15:09:58',267.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (384,1,1,'2019-08-21 15:09:58',268.088000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (385,1,1,'2019-08-21 15:09:58',268.769000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (386,1,1,'2019-08-21 15:09:58',268.887000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (387,1,1,'2019-08-21 15:09:58',269.769000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (388,1,1,'2019-08-21 15:09:58',270.568000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (389,1,1,'2019-08-21 15:09:58',270.999000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (390,1,1,'2019-08-21 15:09:58',271.483000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (391,1,1,'2019-08-21 15:09:58',272.267000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (392,1,1,'2019-08-21 15:09:58',273.198000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (393,1,1,'2019-08-21 15:09:58',273.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (394,1,1,'2019-08-21 15:09:58',274.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (395,1,1,'2019-08-21 15:09:58',274.880000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (396,1,1,'2019-08-21 15:09:58',275.379000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (397,1,1,'2019-08-21 15:09:58',275.662000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (398,1,1,'2019-08-21 15:09:58',276.678000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (399,1,1,'2019-08-21 15:09:58',293.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (400,1,1,'2019-08-21 15:09:58',312.301000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (401,1,1,'2019-08-21 15:09:58',312.883000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (402,1,1,'2019-08-21 15:09:58',313.282000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (403,1,1,'2019-08-21 15:09:58',314.099000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (404,1,1,'2019-08-21 15:09:58',315.097000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (405,1,1,'2019-08-21 15:09:58',315.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (406,1,1,'2019-08-21 15:09:58',316.516000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (407,1,1,'2019-08-21 15:09:58',316.896000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (408,1,1,'2019-08-21 15:09:58',317.860000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (409,1,1,'2019-08-21 15:09:58',318.302000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (410,1,1,'2019-08-21 15:09:58',318.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (411,1,1,'2019-08-21 15:09:58',319.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (412,1,1,'2019-08-21 15:09:58',320.508000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (413,1,1,'2019-08-21 15:09:58',320.977000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (414,1,1,'2019-08-21 15:09:58',321.323000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (415,1,1,'2019-08-21 15:09:58',322.140000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (416,1,1,'2019-08-21 15:09:58',322.922000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (417,1,1,'2019-08-21 15:09:58',323.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (418,1,1,'2019-08-21 15:09:58',323.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (419,1,1,'2019-08-21 15:09:58',324.770000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (420,1,1,'2019-08-21 15:09:58',325.719000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (421,1,1,'2019-08-21 15:09:58',326.123000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (422,1,1,'2019-08-21 15:09:58',326.518000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (423,1,1,'2019-08-21 15:09:58',327.467000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (424,1,1,'2019-08-21 15:09:58',328.416000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (425,1,1,'2019-08-21 15:09:58',329.298000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (426,1,1,'2019-08-21 15:09:58',329.826000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (427,1,1,'2019-08-21 15:09:58',330.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (428,1,1,'2019-08-21 15:09:58',330.725000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (429,1,1,'2019-08-21 15:09:58',331.246000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (430,1,1,'2019-08-21 15:09:58',332.028000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (431,1,1,'2019-08-21 15:09:58',332.928000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (432,1,1,'2019-08-21 15:09:58',333.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (433,1,1,'2019-08-21 15:09:58',334.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (434,1,1,'2019-08-21 15:09:58',335.592000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (435,1,1,'2019-08-21 15:09:58',336.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (436,1,1,'2019-08-21 15:09:58',337.373000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (437,1,1,'2019-08-21 15:09:58',337.810000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (438,1,1,'2019-08-21 15:09:58',338.355000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (439,1,1,'2019-08-21 15:09:58',338.879000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (440,1,1,'2019-08-21 15:09:58',339.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (441,1,1,'2019-08-21 15:09:58',339.575000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (442,1,1,'2019-08-21 15:09:58',340.003000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (443,1,1,'2019-08-21 15:09:58',340.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (444,1,1,'2019-08-21 15:09:58',340.969000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (445,1,1,'2019-08-21 15:09:58',341.802000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (446,1,1,'2019-08-21 15:09:58',342.634000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (447,1,1,'2019-08-21 15:09:58',343.517000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (448,1,1,'2019-08-21 15:09:58',344.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (449,1,1,'2019-08-21 15:09:58',345.381000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (450,1,1,'2019-08-21 15:09:58',346.213000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (451,1,1,'2019-08-21 15:09:58',346.996000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (452,1,1,'2019-08-21 15:09:58',347.548000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (453,1,1,'2019-08-21 15:09:58',347.778000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (454,1,1,'2019-08-21 15:09:58',348.123000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (455,1,1,'2019-08-21 15:09:58',348.577000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (456,1,1,'2019-08-21 15:09:58',349.477000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (457,1,1,'2019-08-21 15:09:58',350.375000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (458,1,1,'2019-08-21 15:09:58',351.175000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (459,1,1,'2019-08-21 15:09:58',351.564000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (460,1,1,'2019-08-21 15:09:58',351.990000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (461,1,1,'2019-08-21 15:09:58',352.402000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (462,1,1,'2019-08-21 15:09:58',352.923000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (463,1,1,'2019-08-21 15:09:58',353.888000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (464,1,1,'2019-08-21 15:09:58',354.787000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (465,1,1,'2019-08-21 15:09:58',355.703000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (466,1,1,'2019-08-21 15:09:58',356.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (467,1,1,'2019-08-21 15:09:58',356.963000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (468,1,1,'2019-08-21 15:09:58',357.351000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (469,1,1,'2019-08-21 15:09:58',358.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (470,1,1,'2019-08-21 15:09:58',359.065000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (471,1,1,'2019-08-21 15:09:58',359.456000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (472,1,1,'2019-08-21 15:09:58',359.915000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (473,1,1,'2019-08-21 15:09:58',360.830000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (474,1,1,'2019-08-21 15:09:58',361.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (475,1,1,'2019-08-21 15:09:58',362.479000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (476,1,1,'2019-08-21 15:09:58',362.888000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (477,1,1,'2019-08-21 15:09:58',363.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (478,1,1,'2019-08-21 15:09:58',363.685000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (479,1,1,'2019-08-21 15:09:58',364.094000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (480,1,1,'2019-08-21 15:09:58',365.076000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (481,1,1,'2019-08-21 15:09:58',366.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (482,1,1,'2019-08-21 15:09:58',366.891000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (483,1,1,'2019-08-21 15:09:58',367.807000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (484,1,1,'2019-08-21 15:09:58',368.195000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (485,1,1,'2019-08-21 15:09:58',368.655000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (486,1,1,'2019-08-21 15:09:58',369.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (487,1,1,'2019-08-21 15:09:58',369.860000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (488,1,1,'2019-08-21 15:09:58',370.420000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (489,1,1,'2019-08-21 15:09:58',371.286000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (490,1,1,'2019-08-21 15:09:58',371.678000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (491,1,1,'2019-08-21 15:09:58',372.085000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (492,1,1,'2019-08-21 15:09:58',372.950000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (493,1,1,'2019-08-21 15:09:58',373.916000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (494,1,1,'2019-08-21 15:09:58',374.342000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (495,1,1,'2019-08-21 15:09:58',374.898000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (496,1,1,'2019-08-21 15:09:58',375.864000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (497,1,1,'2019-08-21 15:09:58',376.663000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (498,1,1,'2019-08-21 15:09:58',377.629000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (499,1,1,'2019-08-21 15:09:58',378.528000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (500,1,1,'2019-08-21 15:09:58',379.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (501,1,1,'2019-08-21 15:09:58',379.812000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (502,1,1,'2019-08-21 15:09:58',380.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (503,1,1,'2019-08-21 15:09:58',381.103000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (504,1,1,'2019-08-21 15:09:58',381.175000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (505,1,1,'2019-08-21 15:09:58',381.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (506,1,1,'2019-08-21 15:09:58',382.294000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (507,1,1,'2019-08-21 15:09:58',382.956000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (508,1,1,'2019-08-21 15:09:58',383.855000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (509,1,1,'2019-08-21 15:09:58',384.788000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (510,1,1,'2019-08-21 15:09:58',385.570000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (511,1,1,'2019-08-21 15:09:58',386.088000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (512,1,1,'2019-08-21 15:09:58',386.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (513,1,1,'2019-08-21 15:09:58',387.318000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (514,1,1,'2019-08-21 15:09:58',388.218000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (515,1,1,'2019-08-21 15:09:58',388.823000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (516,1,1,'2019-08-21 15:09:58',389.166000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (517,1,1,'2019-08-21 15:09:58',390.148000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (518,1,1,'2019-08-21 15:09:58',390.549000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (519,1,1,'2019-08-21 15:09:58',390.964000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (520,1,1,'2019-08-21 15:09:58',391.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (521,1,1,'2019-08-21 15:09:58',392.713000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (522,1,1,'2019-08-21 15:09:58',393.595000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (523,1,1,'2019-08-21 15:09:58',394.561000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (524,1,1,'2019-08-21 15:09:58',395.442000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (525,1,1,'2019-08-21 15:09:58',395.877000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (526,1,1,'2019-08-21 15:09:58',396.242000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (527,1,1,'2019-08-21 15:09:58',396.584000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (528,1,1,'2019-08-21 15:09:58',397.107000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (529,1,1,'2019-08-21 15:09:58',398.073000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (530,1,1,'2019-08-21 15:09:58',398.512000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (531,1,1,'2019-08-21 15:09:58',399.006000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (532,1,1,'2019-08-21 15:09:58',399.871000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (533,1,1,'2019-08-21 15:09:58',400.277000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (534,1,1,'2019-08-21 15:09:58',400.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (535,1,1,'2019-08-21 15:09:58',401.869000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (536,1,1,'2019-08-21 15:09:58',402.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (537,1,1,'2019-08-21 15:09:58',403.314000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (538,1,1,'2019-08-21 15:09:58',403.617000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (539,1,1,'2019-08-21 15:09:58',404.583000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (540,1,1,'2019-08-21 15:09:58',405.481000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (541,1,1,'2019-08-21 15:09:58',405.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (542,1,1,'2019-08-21 15:09:58',406.364000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (543,1,1,'2019-08-21 15:09:58',407.213000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (544,1,1,'2019-08-21 15:09:58',408.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (545,1,1,'2019-08-21 15:09:58',408.512000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (546,1,1,'2019-08-21 15:09:58',409.111000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (547,1,1,'2019-08-21 15:09:58',409.877000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (548,1,1,'2019-08-21 15:09:58',410.859000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (549,1,1,'2019-08-21 15:09:58',411.237000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (550,1,1,'2019-08-21 15:09:58',411.741000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (551,1,1,'2019-08-21 15:09:58',412.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (552,1,1,'2019-08-21 15:09:58',413.656000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (553,1,1,'2019-08-21 15:09:58',414.422000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (554,1,1,'2019-08-21 15:09:58',415.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (555,1,1,'2019-08-21 15:09:58',416.320000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (556,1,1,'2019-08-21 15:09:58',417.136000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (557,1,1,'2019-08-21 15:09:58',417.564000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (558,1,1,'2019-08-21 15:09:58',418.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (559,1,1,'2019-08-21 15:09:58',418.503000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (560,1,1,'2019-08-21 15:09:58',419.084000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (561,1,1,'2019-08-21 15:09:58',420.049000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (562,1,1,'2019-08-21 15:09:58',420.915000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (563,1,1,'2019-08-21 15:09:58',421.914000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (564,1,1,'2019-08-21 15:09:58',422.763000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (565,1,1,'2019-08-21 15:09:58',423.307000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (566,1,1,'2019-08-21 15:09:58',423.729000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (567,1,1,'2019-08-21 15:09:58',424.544000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (568,1,1,'2019-08-21 15:09:58',425.377000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (569,1,1,'2019-08-21 15:09:58',425.729000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (570,1,1,'2019-08-21 15:09:58',426.159000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (571,1,1,'2019-08-21 15:09:58',427.092000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (572,1,1,'2019-08-21 15:09:58',427.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (573,1,1,'2019-08-21 15:09:58',428.322000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (574,1,1,'2019-08-21 15:09:58',428.790000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (575,1,1,'2019-08-21 15:09:58',429.789000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (576,1,1,'2019-08-21 15:09:58',430.721000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (577,1,1,'2019-08-21 15:09:58',431.637000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (578,1,1,'2019-08-21 15:09:58',432.197000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (579,1,1,'2019-08-21 15:09:58',432.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (580,1,1,'2019-08-21 15:09:58',433.484000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (581,1,1,'2019-08-21 15:09:58',434.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (582,1,1,'2019-08-21 15:09:58',434.872000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (583,1,1,'2019-08-21 15:09:58',435.333000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (584,1,1,'2019-08-21 15:09:58',436.215000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (585,1,1,'2019-08-21 15:09:58',436.997000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (586,1,1,'2019-08-21 15:09:58',437.436000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (587,1,1,'2019-08-21 15:09:58',437.847000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (588,1,1,'2019-08-21 15:09:58',438.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (589,1,1,'2019-08-21 15:09:58',439.211000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (590,1,1,'2019-08-21 15:09:58',439.611000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (591,1,1,'2019-08-21 15:09:58',440.594000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (592,1,1,'2019-08-21 15:09:58',440.957000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (593,1,1,'2019-08-21 15:09:58',441.543000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (594,1,1,'2019-08-21 15:09:58',442.558000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (595,1,1,'2019-08-21 15:09:58',442.936000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (596,1,1,'2019-08-21 15:09:58',443.507000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (597,1,1,'2019-08-21 15:09:58',444.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (598,1,1,'2019-08-21 15:09:58',445.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (599,1,1,'2019-08-21 15:09:58',446.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (600,1,1,'2019-08-21 15:09:58',447.020000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (601,1,1,'2019-08-21 15:09:58',447.426000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (602,1,1,'2019-08-21 15:09:58',447.952000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (603,1,1,'2019-08-21 15:09:58',448.334000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (604,1,1,'2019-08-21 15:09:58',448.751000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (605,1,1,'2019-08-21 15:09:58',449.601000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (606,1,1,'2019-08-21 15:09:58',450.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (607,1,1,'2019-08-21 15:09:58',451.282000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (608,1,1,'2019-08-21 15:09:58',452.081000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (609,1,1,'2019-08-21 15:09:58',452.946000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (610,1,1,'2019-08-21 15:09:58',453.562000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (611,1,1,'2019-08-21 15:09:58',453.763000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (612,1,1,'2019-08-21 15:09:58',454.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (613,1,1,'2019-08-21 15:09:58',455.511000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (614,1,1,'2019-08-21 15:09:58',456.477000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (615,1,1,'2019-08-21 15:09:58',457.408000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (616,1,1,'2019-08-21 15:09:58',458.391000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (617,1,1,'2019-08-21 15:09:58',458.840000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (618,1,1,'2019-08-21 15:09:58',459.156000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (619,1,1,'2019-08-21 15:09:58',460.072000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (620,1,1,'2019-08-21 15:09:58',460.435000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (621,1,1,'2019-08-21 15:09:58',460.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (622,1,1,'2019-08-21 15:09:58',461.903000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (623,1,1,'2019-08-21 15:09:58',462.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (624,1,1,'2019-08-21 15:09:58',463.382000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (625,1,1,'2019-08-21 15:09:58',463.651000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (626,1,1,'2019-08-21 15:09:58',463.997000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (627,1,1,'2019-08-21 15:09:58',464.601000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (628,1,1,'2019-08-21 15:09:58',465.517000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (629,1,1,'2019-08-21 15:09:58',466.448000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (630,1,1,'2019-08-21 15:09:58',467.231000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (631,1,1,'2019-08-21 15:09:58',468.146000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (632,1,1,'2019-08-21 15:09:58',468.589000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (633,1,1,'2019-08-21 15:09:58',468.912000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (634,1,1,'2019-08-21 15:09:58',469.795000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (635,1,1,'2019-08-21 15:09:58',470.627000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (636,1,1,'2019-08-21 15:09:58',471.427000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (637,1,1,'2019-08-21 15:09:58',471.809000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (638,1,1,'2019-08-21 15:09:58',472.375000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (639,1,1,'2019-08-21 15:09:58',473.341000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (640,1,1,'2019-08-21 15:09:58',474.307000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (641,1,1,'2019-08-21 15:09:58',475.139000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (642,1,1,'2019-08-21 15:09:58',476.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (643,1,1,'2019-08-21 15:09:58',476.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (644,1,1,'2019-08-21 15:09:58',476.904000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (645,1,1,'2019-08-21 15:09:58',477.278000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (646,1,1,'2019-08-21 15:09:58',477.803000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (647,1,1,'2019-08-21 15:09:58',478.702000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (648,1,1,'2019-08-21 15:09:58',479.701000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (649,1,1,'2019-08-21 15:09:58',480.194000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (650,1,1,'2019-08-21 15:09:58',480.666000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (651,1,1,'2019-08-21 15:09:58',481.599000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (652,1,1,'2019-08-21 15:09:58',482.448000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (653,1,1,'2019-08-21 15:09:58',482.899000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (654,1,1,'2019-08-21 15:09:58',483.247000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (655,1,1,'2019-08-21 15:09:58',484.112000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (656,1,1,'2019-08-21 15:09:58',484.945000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (657,1,1,'2019-08-21 15:09:58',485.301000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (658,1,1,'2019-08-21 15:09:58',485.928000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (659,1,1,'2019-08-21 15:09:58',486.391000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (660,1,1,'2019-08-21 15:09:58',486.926000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (661,1,1,'2019-08-21 15:09:58',487.809000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (662,1,1,'2019-08-21 15:09:58',488.691000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (663,1,1,'2019-08-21 15:09:58',489.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (664,1,1,'2019-08-21 15:09:58',489.943000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (665,1,1,'2019-08-21 15:09:58',490.522000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (666,1,1,'2019-08-21 15:09:58',491.338000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (667,1,1,'2019-08-21 15:09:58',492.204000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (668,1,1,'2019-08-21 15:09:58',492.647000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (669,1,1,'2019-08-21 15:09:58',493.069000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (670,1,1,'2019-08-21 15:09:58',493.835000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (671,1,1,'2019-08-21 15:09:58',494.701000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (672,1,1,'2019-08-21 15:09:58',495.517000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (673,1,1,'2019-08-21 15:09:58',495.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (674,1,1,'2019-08-21 15:09:58',496.366000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (675,1,1,'2019-08-21 15:09:58',497.314000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (676,1,1,'2019-08-21 15:09:58',498.081000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (677,1,1,'2019-08-21 15:09:58',498.471000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (678,1,1,'2019-08-21 15:09:58',498.930000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (679,1,1,'2019-08-21 15:09:58',499.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (680,1,1,'2019-08-21 15:09:58',500.227000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (681,1,1,'2019-08-21 15:09:58',500.694000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (682,1,1,'2019-08-21 15:09:58',501.677000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (683,1,1,'2019-08-21 15:09:58',502.560000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (684,1,1,'2019-08-21 15:09:58',503.375000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (685,1,1,'2019-08-21 15:09:58',503.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (686,1,1,'2019-08-21 15:09:58',504.240000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (687,1,1,'2019-08-21 15:09:58',505.057000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (688,1,1,'2019-08-21 15:09:58',505.424000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (689,1,1,'2019-08-21 15:09:58',506.039000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (690,1,1,'2019-08-21 15:09:58',506.954000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (691,1,1,'2019-08-21 15:09:58',507.837000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (692,1,1,'2019-08-21 15:09:58',508.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (693,1,1,'2019-08-21 15:09:58',508.702000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (694,1,1,'2019-08-21 15:09:58',509.519000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (695,1,1,'2019-08-21 15:09:58',510.483000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (696,1,1,'2019-08-21 15:09:58',510.844000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (697,1,1,'2019-08-21 15:09:58',511.416000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (698,1,1,'2019-08-21 15:09:58',512.215000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (699,1,1,'2019-08-21 15:09:58',513.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (700,1,1,'2019-08-21 15:09:58',513.997000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (701,1,1,'2019-08-21 15:09:58',514.467000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (702,1,1,'2019-08-21 15:09:58',514.896000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (703,1,1,'2019-08-21 15:09:58',515.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (704,1,1,'2019-08-21 15:09:58',516.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (705,1,1,'2019-08-21 15:09:58',516.494000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (706,1,1,'2019-08-21 15:09:58',517.029000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (707,1,1,'2019-08-21 15:09:58',517.326000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (708,1,1,'2019-08-21 15:09:58',518.292000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (709,1,1,'2019-08-21 15:09:58',519.241000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (710,1,1,'2019-08-21 15:09:58',520.140000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (711,1,1,'2019-08-21 15:09:58',521.089000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (712,1,1,'2019-08-21 15:09:58',521.581000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (713,1,1,'2019-08-21 15:09:58',521.854000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (714,1,1,'2019-08-21 15:09:58',522.196000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (715,1,1,'2019-08-21 15:09:58',522.671000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (716,1,1,'2019-08-21 15:09:58',523.636000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (717,1,1,'2019-08-21 15:09:58',524.585000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (718,1,1,'2019-08-21 15:09:58',525.534000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (719,1,1,'2019-08-21 15:09:58',526.467000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (720,1,1,'2019-08-21 15:09:58',526.909000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (721,1,1,'2019-08-21 15:09:58',527.266000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (722,1,1,'2019-08-21 15:09:58',528.215000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (723,1,1,'2019-08-21 15:09:58',528.655000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (724,1,1,'2019-08-21 15:09:58',529.063000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (725,1,1,'2019-08-21 15:09:58',529.946000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (726,1,1,'2019-08-21 15:09:58',530.762000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (727,1,1,'2019-08-21 15:09:58',531.627000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (728,1,1,'2019-08-21 15:09:58',532.477000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (729,1,1,'2019-08-21 15:09:58',533.442000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (730,1,1,'2019-08-21 15:09:58',534.208000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (731,1,1,'2019-08-21 15:09:58',534.560000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (732,1,1,'2019-08-21 15:09:58',535.157000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (733,1,1,'2019-08-21 15:09:58',535.508000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (734,1,1,'2019-08-21 15:09:58',536.105000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (735,1,1,'2019-08-21 15:09:58',536.905000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (736,1,1,'2019-08-21 15:09:58',537.820000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (737,1,1,'2019-08-21 15:09:58',538.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (738,1,1,'2019-08-21 15:09:58',539.785000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (739,1,1,'2019-08-21 15:09:58',540.261000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (740,1,1,'2019-08-21 15:09:58',540.668000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (741,1,1,'2019-08-21 15:09:58',541.028000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (742,1,1,'2019-08-21 15:09:58',541.649000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (743,1,1,'2019-08-21 15:09:58',542.449000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (744,1,1,'2019-08-21 15:09:58',543.314000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (745,1,1,'2019-08-21 15:09:58',544.313000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (746,1,1,'2019-08-21 15:09:58',544.681000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (747,1,1,'2019-08-21 15:09:58',545.163000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (748,1,1,'2019-08-21 15:09:58',545.962000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (749,1,1,'2019-08-21 15:09:58',546.366000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (750,1,1,'2019-08-21 15:09:58',546.911000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (751,1,1,'2019-08-21 15:09:58',547.826000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (752,1,1,'2019-08-21 15:09:58',548.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (753,1,1,'2019-08-21 15:09:58',549.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (754,1,1,'2019-08-21 15:09:58',550.141000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (755,1,1,'2019-08-21 15:09:58',550.557000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (756,1,1,'2019-08-21 15:09:58',551.423000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (757,1,1,'2019-08-21 15:09:58',551.836000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (758,1,1,'2019-08-21 15:09:58',552.338000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (759,1,1,'2019-08-21 15:09:58',553.138000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (760,1,1,'2019-08-21 15:09:58',554.053000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (761,1,1,'2019-08-21 15:09:58',554.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (762,1,1,'2019-08-21 15:09:58',555.207000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (763,1,1,'2019-08-21 15:09:58',555.685000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (764,1,1,'2019-08-21 15:09:58',556.095000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (765,1,1,'2019-08-21 15:09:58',556.634000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (766,1,1,'2019-08-21 15:09:58',557.549000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (767,1,1,'2019-08-21 15:09:58',558.515000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (768,1,1,'2019-08-21 15:09:58',559.530000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (769,1,1,'2019-08-21 15:09:58',559.971000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (770,1,1,'2019-08-21 15:09:58',560.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (771,1,1,'2019-08-21 15:09:58',561.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (772,1,1,'2019-08-21 15:09:58',562.277000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (773,1,1,'2019-08-21 15:09:58',562.715000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (774,1,1,'2019-08-21 15:09:58',563.177000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (775,1,1,'2019-08-21 15:09:58',564.191000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (776,1,1,'2019-08-21 15:09:58',564.643000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (777,1,1,'2019-08-21 15:09:58',565.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (778,1,1,'2019-08-21 15:09:58',565.940000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (779,1,1,'2019-08-21 15:09:58',566.257000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (780,1,1,'2019-08-21 15:09:58',566.839000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (781,1,1,'2019-08-21 15:09:58',567.621000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (782,1,1,'2019-08-21 15:09:58',568.421000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (783,1,1,'2019-08-21 15:09:58',568.892000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (784,1,1,'2019-08-21 15:09:58',569.336000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (785,1,1,'2019-08-21 15:09:58',570.202000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (786,1,1,'2019-08-21 15:09:58',571.117000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (787,1,1,'2019-08-21 15:09:58',572.033000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (788,1,1,'2019-08-21 15:09:58',572.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (789,1,1,'2019-08-21 15:09:58',572.999000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (790,1,1,'2019-08-21 15:09:58',573.915000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (791,1,1,'2019-08-21 15:09:58',574.913000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (792,1,1,'2019-08-21 15:09:58',575.779000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (793,1,1,'2019-08-21 15:09:58',576.147000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (794,1,1,'2019-08-21 15:09:58',576.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (795,1,1,'2019-08-21 15:09:58',577.327000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (796,1,1,'2019-08-21 15:09:58',578.310000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (797,1,1,'2019-08-21 15:09:58',578.730000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (798,1,1,'2019-08-21 15:09:58',603.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (799,1,1,'2019-08-21 15:09:58',617.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (800,1,1,'2019-08-21 15:09:58',618.548000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (801,1,1,'2019-08-21 15:09:58',619.447000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (802,1,1,'2019-08-21 15:09:58',620.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (803,1,1,'2019-08-21 15:09:58',620.842000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (804,1,1,'2019-08-21 15:09:58',621.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (805,1,1,'2019-08-21 15:09:58',621.659000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (806,1,1,'2019-08-21 15:09:58',622.011000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (807,1,1,'2019-08-21 15:09:58',622.993000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (808,1,1,'2019-08-21 15:09:58',623.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (809,1,1,'2019-08-21 15:09:58',623.858000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (810,1,1,'2019-08-21 15:09:58',624.824000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (811,1,1,'2019-08-21 15:09:58',625.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (812,1,1,'2019-08-21 15:09:58',626.506000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (813,1,1,'2019-08-21 15:09:58',627.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (814,1,1,'2019-08-21 15:09:58',627.705000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (815,1,1,'2019-08-21 15:09:58',628.337000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (816,1,1,'2019-08-21 15:09:58',629.187000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (817,1,1,'2019-08-21 15:09:58',630.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (818,1,1,'2019-08-21 15:09:58',630.490000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (819,1,1,'2019-08-21 15:09:58',630.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (820,1,1,'2019-08-21 15:09:58',631.429000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (821,1,1,'2019-08-21 15:09:58',631.783000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (822,1,1,'2019-08-21 15:09:58',632.582000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (823,1,1,'2019-08-21 15:09:58',633.349000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (824,1,1,'2019-08-21 15:09:58',633.740000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (825,1,1,'2019-08-21 15:09:58',634.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (826,1,1,'2019-08-21 15:09:58',634.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (827,1,1,'2019-08-21 15:09:58',635.405000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (828,1,1,'2019-08-21 15:09:58',635.962000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (829,1,1,'2019-08-21 15:09:58',636.928000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (830,1,1,'2019-08-21 15:09:58',637.727000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (831,1,1,'2019-08-21 15:09:58',638.726000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (832,1,1,'2019-08-21 15:09:58',639.625000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (833,1,1,'2019-08-21 15:09:58',640.440000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (834,1,1,'2019-08-21 15:09:58',640.835000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (835,1,1,'2019-08-21 15:09:58',641.373000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (836,1,1,'2019-08-21 15:09:58',642.288000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (837,1,1,'2019-08-21 15:09:58',643.088000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (838,1,1,'2019-08-21 15:09:58',643.500000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (839,1,1,'2019-08-21 15:09:58',644.003000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (840,1,1,'2019-08-21 15:09:58',644.969000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (841,1,1,'2019-08-21 15:09:58',645.417000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (842,1,1,'2019-08-21 15:09:58',645.835000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (843,1,1,'2019-08-21 15:09:58',646.175000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (844,1,1,'2019-08-21 15:09:58',646.750000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (845,1,1,'2019-08-21 15:09:58',647.649000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (846,1,1,'2019-08-21 15:09:58',648.615000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (847,1,1,'2019-08-21 15:09:58',649.497000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (848,1,1,'2019-08-21 15:09:58',649.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (849,1,1,'2019-08-21 15:09:58',650.479000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (850,1,1,'2019-08-21 15:09:58',651.479000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (851,1,1,'2019-08-21 15:09:58',652.294000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (852,1,1,'2019-08-21 15:09:58',653.260000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (853,1,1,'2019-08-21 15:09:58',653.684000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (854,1,1,'2019-08-21 15:09:58',654.059000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (855,1,1,'2019-08-21 15:09:58',654.958000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (856,1,1,'2019-08-21 15:09:58',655.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (857,1,1,'2019-08-21 15:09:58',656.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (858,1,1,'2019-08-21 15:09:58',657.755000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (859,1,1,'2019-08-21 15:09:58',658.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (860,1,1,'2019-08-21 15:09:58',658.922000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (861,1,1,'2019-08-21 15:09:58',659.286000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (862,1,1,'2019-08-21 15:09:58',659.698000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (863,1,1,'2019-08-21 15:09:58',660.086000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (864,1,1,'2019-08-21 15:09:58',661.035000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (865,1,1,'2019-08-21 15:09:58',661.851000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (866,1,1,'2019-08-21 15:09:58',662.833000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (867,1,1,'2019-08-21 15:09:58',663.614000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (868,1,1,'2019-08-21 15:09:58',663.815000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (869,1,1,'2019-08-21 15:09:58',664.780000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (870,1,1,'2019-08-21 15:09:58',665.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (871,1,1,'2019-08-21 15:09:58',665.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (872,1,1,'2019-08-21 15:09:58',666.528000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (873,1,1,'2019-08-21 15:09:58',666.976000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (874,1,1,'2019-08-21 15:09:58',667.511000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (875,1,1,'2019-08-21 15:09:58',668.311000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (876,1,1,'2019-08-21 15:09:58',668.620000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (877,1,1,'2019-08-21 15:09:58',669.292000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (878,1,1,'2019-08-21 15:09:58',670.108000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (879,1,1,'2019-08-21 15:09:58',670.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (880,1,1,'2019-08-21 15:09:58',671.873000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (881,1,1,'2019-08-21 15:09:58',672.705000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (882,1,1,'2019-08-21 15:09:58',673.041000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (883,1,1,'2019-08-21 15:09:58',673.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (884,1,1,'2019-08-21 15:09:58',674.453000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (885,1,1,'2019-08-21 15:09:58',675.436000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (886,1,1,'2019-08-21 15:09:58',675.907000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (887,1,1,'2019-08-21 15:09:58',676.335000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (888,1,1,'2019-08-21 15:09:58',677.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (889,1,1,'2019-08-21 15:09:58',677.693000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (890,1,1,'2019-08-21 15:09:58',678.216000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (891,1,1,'2019-08-21 15:09:58',678.998000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (892,1,1,'2019-08-21 15:09:58',679.848000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (893,1,1,'2019-08-21 15:09:58',680.196000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (894,1,1,'2019-08-21 15:09:58',680.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (895,1,1,'2019-08-21 15:09:58',681.445000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (896,1,1,'2019-08-21 15:09:58',682.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (897,1,1,'2019-08-21 15:09:58',682.720000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (898,1,1,'2019-08-21 15:09:58',683.211000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (899,1,1,'2019-08-21 15:09:58',684.209000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (900,1,1,'2019-08-21 15:09:58',685.009000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (901,1,1,'2019-08-21 15:09:58',685.857000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (902,1,1,'2019-08-21 15:09:58',686.161000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (903,1,1,'2019-08-21 15:09:58',686.773000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (904,1,1,'2019-08-21 15:09:58',687.539000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (905,1,1,'2019-08-21 15:09:58',687.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (906,1,1,'2019-08-21 15:09:58',688.321000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (907,1,1,'2019-08-21 15:09:58',689.188000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (908,1,1,'2019-08-21 15:09:58',690.103000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (909,1,1,'2019-08-21 15:09:58',691.019000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (910,1,1,'2019-08-21 15:09:58',691.369000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (911,1,1,'2019-08-21 15:09:58',691.968000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (912,1,1,'2019-08-21 15:09:58',692.917000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (913,1,1,'2019-08-21 15:09:58',693.256000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (914,1,1,'2019-08-21 15:09:58',693.716000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (915,1,1,'2019-08-21 15:09:58',694.063000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (916,1,1,'2019-08-21 15:09:58',694.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (917,1,1,'2019-08-21 15:09:58',695.431000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (918,1,1,'2019-08-21 15:09:58',696.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (919,1,1,'2019-08-21 15:09:58',697.062000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (920,1,1,'2019-08-21 15:09:58',698.027000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (921,1,1,'2019-08-21 15:09:58',698.943000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (922,1,1,'2019-08-21 15:09:58',699.726000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (923,1,1,'2019-08-21 15:09:58',700.108000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (924,1,1,'2019-08-21 15:09:58',700.708000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (925,1,1,'2019-08-21 15:09:58',701.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (926,1,1,'2019-08-21 15:09:58',701.875000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (927,1,1,'2019-08-21 15:09:58',702.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (928,1,1,'2019-08-21 15:09:58',702.713000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (929,1,1,'2019-08-21 15:09:58',703.188000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (930,1,1,'2019-08-21 15:09:58',704.154000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (931,1,1,'2019-08-21 15:09:58',705.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (932,1,1,'2019-08-21 15:09:58',706.052000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (933,1,1,'2019-08-21 15:09:58',706.457000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (934,1,1,'2019-08-21 15:09:58',706.951000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (935,1,1,'2019-08-21 15:09:58',707.851000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (936,1,1,'2019-08-21 15:09:58',708.616000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (937,1,1,'2019-08-21 15:09:58',709.062000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (938,1,1,'2019-08-21 15:09:58',709.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (939,1,1,'2019-08-21 15:09:58',709.868000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (940,1,1,'2019-08-21 15:09:58',710.348000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (941,1,1,'2019-08-21 15:09:58',711.313000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (942,1,1,'2019-08-21 15:09:58',712.262000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (943,1,1,'2019-08-21 15:09:58',713.178000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (944,1,1,'2019-08-21 15:09:58',713.603000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (945,1,1,'2019-08-21 15:09:58',714.110000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (946,1,1,'2019-08-21 15:09:58',715.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (947,1,1,'2019-08-21 15:09:58',715.480000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (948,1,1,'2019-08-21 15:09:58',716.024000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (949,1,1,'2019-08-21 15:09:58',716.891000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (950,1,1,'2019-08-21 15:09:58',717.789000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (951,1,1,'2019-08-21 15:09:58',718.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (952,1,1,'2019-08-21 15:09:58',719.521000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (953,1,1,'2019-08-21 15:09:58',720.370000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (954,1,1,'2019-08-21 15:09:58',721.169000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (955,1,1,'2019-08-21 15:09:58',721.586000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (956,1,1,'2019-08-21 15:09:58',722.068000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (957,1,1,'2019-08-21 15:09:58',722.363000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (958,1,1,'2019-08-21 15:09:58',722.967000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (959,1,1,'2019-08-21 15:09:58',723.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (960,1,1,'2019-08-21 15:09:58',724.361000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (961,1,1,'2019-08-21 15:09:58',724.698000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (962,1,1,'2019-08-21 15:09:58',725.631000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (963,1,1,'2019-08-21 15:09:58',726.547000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (964,1,1,'2019-08-21 15:09:58',727.329000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (965,1,1,'2019-08-21 15:09:58',727.763000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (966,1,1,'2019-08-21 15:09:58',728.278000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (967,1,1,'2019-08-21 15:09:58',729.094000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (968,1,1,'2019-08-21 15:09:58',729.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (969,1,1,'2019-08-21 15:09:58',730.043000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (970,1,1,'2019-08-21 15:09:58',730.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (971,1,1,'2019-08-21 15:09:58',731.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (972,1,1,'2019-08-21 15:09:58',731.857000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (973,1,1,'2019-08-21 15:09:58',732.689000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (974,1,1,'2019-08-21 15:09:58',733.489000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (975,1,1,'2019-08-21 15:09:58',734.305000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (976,1,1,'2019-08-21 15:09:58',734.787000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (977,1,1,'2019-08-21 15:09:58',735.070000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (978,1,1,'2019-08-21 15:09:58',735.920000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (979,1,1,'2019-08-21 15:09:58',736.686000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (980,1,1,'2019-08-21 15:09:58',737.484000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (981,1,1,'2019-08-21 15:09:58',737.886000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (982,1,1,'2019-08-21 15:09:58',738.284000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (983,1,1,'2019-08-21 15:09:58',739.183000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (984,1,1,'2019-08-21 15:09:58',740.099000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (985,1,1,'2019-08-21 15:09:58',741.014000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (986,1,1,'2019-08-21 15:09:58',741.913000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (987,1,1,'2019-08-21 15:09:58',742.679000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (988,1,1,'2019-08-21 15:09:58',743.043000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (989,1,1,'2019-08-21 15:09:58',743.661000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (990,1,1,'2019-08-21 15:09:58',743.972000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (991,1,1,'2019-08-21 15:09:58',744.443000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (992,1,1,'2019-08-21 15:09:58',745.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (993,1,1,'2019-08-21 15:09:58',745.950000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (994,1,1,'2019-08-21 15:09:58',746.292000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (995,1,1,'2019-08-21 15:09:58',746.687000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (996,1,1,'2019-08-21 15:09:58',747.290000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (997,1,1,'2019-08-21 15:09:58',747.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (998,1,1,'2019-08-21 15:09:58',748.156000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (999,1,1,'2019-08-21 15:09:58',749.089000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1000,1,1,'2019-08-21 15:09:58',750.054000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1001,1,1,'2019-08-21 15:09:58',750.970000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1002,1,1,'2019-08-21 15:09:58',751.919000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1003,1,1,'2019-08-21 15:09:58',752.852000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1004,1,1,'2019-08-21 15:09:58',753.297000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1005,1,1,'2019-08-21 15:09:58',753.667000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1006,1,1,'2019-08-21 15:09:58',754.064000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1007,1,1,'2019-08-21 15:09:58',754.516000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1008,1,1,'2019-08-21 15:09:58',755.398000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1009,1,1,'2019-08-21 15:09:58',756.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1010,1,1,'2019-08-21 15:09:58',756.719000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1011,1,1,'2019-08-21 15:09:58',757.347000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1012,1,1,'2019-08-21 15:09:58',757.737000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1013,1,1,'2019-08-21 15:09:58',758.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1014,1,1,'2019-08-21 15:09:58',759.194000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1015,1,1,'2019-08-21 15:09:58',760.177000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1016,1,1,'2019-08-21 15:09:58',761.092000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1017,1,1,'2019-08-21 15:09:58',761.472000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1018,1,1,'2019-08-21 15:09:58',762.041000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1019,1,1,'2019-08-21 15:09:58',762.907000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1020,1,1,'2019-08-21 15:09:58',763.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1021,1,1,'2019-08-21 15:09:58',763.673000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1022,1,1,'2019-08-21 15:09:58',764.622000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1023,1,1,'2019-08-21 15:09:58',765.620000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1024,1,1,'2019-08-21 15:09:58',766.403000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1025,1,1,'2019-08-21 15:09:58',767.285000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1026,1,1,'2019-08-21 15:09:58',767.669000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1027,1,1,'2019-08-21 15:09:58',768.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1028,1,1,'2019-08-21 15:09:58',769.066000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1029,1,1,'2019-08-21 15:09:58',769.933000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1030,1,1,'2019-08-21 15:09:58',770.698000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1031,1,1,'2019-08-21 15:09:58',771.080000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1032,1,1,'2019-08-21 15:09:58',771.681000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1033,1,1,'2019-08-21 15:09:58',772.109000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1034,1,1,'2019-08-21 15:09:58',772.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1035,1,1,'2019-08-21 15:09:58',773.562000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1036,1,1,'2019-08-21 15:09:58',774.411000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1037,1,1,'2019-08-21 15:09:58',775.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1038,1,1,'2019-08-21 15:09:58',776.076000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1039,1,1,'2019-08-21 15:09:58',776.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1040,1,1,'2019-08-21 15:09:58',776.858000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1041,1,1,'2019-08-21 15:09:58',777.277000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1042,1,1,'2019-08-21 15:09:58',777.773000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1043,1,1,'2019-08-21 15:09:58',778.195000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1044,1,1,'2019-08-21 15:09:58',778.640000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1045,1,1,'2019-08-21 15:09:58',779.539000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1046,1,1,'2019-08-21 15:09:58',780.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1047,1,1,'2019-08-21 15:09:58',781.271000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1048,1,1,'2019-08-21 15:09:58',782.119000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1049,1,1,'2019-08-21 15:09:58',783.002000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1050,1,1,'2019-08-21 15:09:58',783.464000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1051,1,1,'2019-08-21 15:09:58',783.983000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1052,1,1,'2019-08-21 15:09:58',784.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1053,1,1,'2019-08-21 15:09:58',785.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1054,1,1,'2019-08-21 15:09:58',785.898000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1055,1,1,'2019-08-21 15:09:58',786.780000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1056,1,1,'2019-08-21 15:09:58',787.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1057,1,1,'2019-08-21 15:09:58',788.479000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1058,1,1,'2019-08-21 15:09:58',789.378000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1059,1,1,'2019-08-21 15:09:58',789.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1060,1,1,'2019-08-21 15:09:58',790.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1061,1,1,'2019-08-21 15:09:58',791.143000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1062,1,1,'2019-08-21 15:09:58',791.558000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1063,1,1,'2019-08-21 15:09:58',792.075000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1064,1,1,'2019-08-21 15:09:58',793.023000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1065,1,1,'2019-08-21 15:09:58',794.022000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1066,1,1,'2019-08-21 15:09:58',794.576000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1067,1,1,'2019-08-21 15:09:58',795.038000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1068,1,1,'2019-08-21 15:09:58',795.921000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1069,1,1,'2019-08-21 15:09:58',796.703000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1070,1,1,'2019-08-21 15:09:58',797.149000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1071,1,1,'2019-08-21 15:09:58',797.569000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1072,1,1,'2019-08-21 15:09:58',798.435000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1073,1,1,'2019-08-21 15:09:58',799.351000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1074,1,1,'2019-08-21 15:09:58',800.333000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1075,1,1,'2019-08-21 15:09:58',801.314000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1076,1,1,'2019-08-21 15:09:58',801.722000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1077,1,1,'2019-08-21 15:09:58',802.230000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1078,1,1,'2019-08-21 15:09:58',803.180000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1079,1,1,'2019-08-21 15:09:58',803.568000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1080,1,1,'2019-08-21 15:09:58',804.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1081,1,1,'2019-08-21 15:09:58',805.011000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1082,1,1,'2019-08-21 15:09:58',805.476000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1083,1,1,'2019-08-21 15:09:58',805.977000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1084,1,1,'2019-08-21 15:09:58',806.976000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1085,1,1,'2019-08-21 15:09:58',807.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1086,1,1,'2019-08-21 15:09:58',808.120000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1087,1,1,'2019-08-21 15:09:58',808.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1088,1,1,'2019-08-21 15:09:58',809.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1089,1,1,'2019-08-21 15:09:58',810.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1090,1,1,'2019-08-21 15:09:58',810.825000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1091,1,1,'2019-08-21 15:09:58',811.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1092,1,1,'2019-08-21 15:09:58',812.069000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1093,1,1,'2019-08-21 15:09:58',813.035000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1094,1,1,'2019-08-21 15:09:58',813.449000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1095,1,1,'2019-08-21 15:09:58',813.951000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1096,1,1,'2019-08-21 15:09:58',814.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1097,1,1,'2019-08-21 15:09:58',815.600000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1098,1,1,'2019-08-21 15:09:58',815.992000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1099,1,1,'2019-08-21 15:09:58',816.599000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1100,1,1,'2019-08-21 15:09:58',817.397000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1101,1,1,'2019-08-21 15:09:58',817.799000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1102,1,1,'2019-08-21 15:09:58',818.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1103,1,1,'2019-08-21 15:09:58',819.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1104,1,1,'2019-08-21 15:09:58',819.895000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1105,1,1,'2019-08-21 15:09:58',820.241000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1106,1,1,'2019-08-21 15:09:58',820.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1107,1,1,'2019-08-21 15:09:58',821.576000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1108,1,1,'2019-08-21 15:09:58',822.441000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1109,1,1,'2019-08-21 15:09:58',823.258000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1110,1,1,'2019-08-21 15:09:58',824.189000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1111,1,1,'2019-08-21 15:09:58',824.551000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1112,1,1,'2019-08-21 15:09:58',825.122000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1113,1,1,'2019-08-21 15:09:58',825.904000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1114,1,1,'2019-08-21 15:09:58',826.804000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1115,1,1,'2019-08-21 15:09:58',827.603000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1116,1,1,'2019-08-21 15:09:58',827.982000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1117,1,1,'2019-08-21 15:09:58',828.618000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1118,1,1,'2019-08-21 15:09:58',829.032000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1119,1,1,'2019-08-21 15:09:58',829.384000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1120,1,1,'2019-08-21 15:09:58',830.217000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1121,1,1,'2019-08-21 15:09:58',830.777000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1122,1,1,'2019-08-21 15:09:58',831.099000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1123,1,1,'2019-08-21 15:09:58',831.865000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1124,1,1,'2019-08-21 15:09:58',832.730000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1125,1,1,'2019-08-21 15:09:58',833.513000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1126,1,1,'2019-08-21 15:09:58',834.296000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1127,1,1,'2019-08-21 15:09:58',834.693000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1128,1,1,'2019-08-21 15:09:58',835.194000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1129,1,1,'2019-08-21 15:09:58',836.094000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1130,1,1,'2019-08-21 15:09:58',837.076000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1131,1,1,'2019-08-21 15:09:58',837.875000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1132,1,1,'2019-08-21 15:09:58',838.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1133,1,1,'2019-08-21 15:09:58',838.641000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1134,1,1,'2019-08-21 15:09:58',839.507000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1135,1,1,'2019-08-21 15:09:58',840.472000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1136,1,1,'2019-08-21 15:09:58',841.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1137,1,1,'2019-08-21 15:09:58',841.466000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1138,1,1,'2019-08-21 15:09:58',842.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1139,1,1,'2019-08-21 15:09:58',842.986000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1140,1,1,'2019-08-21 15:09:58',843.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1141,1,1,'2019-08-21 15:09:58',844.120000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1142,1,1,'2019-08-21 15:09:58',844.801000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1143,1,1,'2019-08-21 15:09:58',845.750000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1144,1,1,'2019-08-21 15:09:58',846.632000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1145,1,1,'2019-08-21 15:09:58',847.414000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1146,1,1,'2019-08-21 15:09:58',848.197000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1147,1,1,'2019-08-21 15:09:58',849.046000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1148,1,1,'2019-08-21 15:09:58',849.529000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1149,1,1,'2019-08-21 15:09:58',849.812000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1150,1,1,'2019-08-21 15:09:58',850.307000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1151,1,1,'2019-08-21 15:09:58',850.744000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1152,1,1,'2019-08-21 15:09:58',851.710000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1153,1,1,'2019-08-21 15:09:58',852.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1154,1,1,'2019-08-21 15:09:58',852.575000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1155,1,1,'2019-08-21 15:09:58',853.012000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1156,1,1,'2019-08-21 15:09:58',853.558000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1157,1,1,'2019-08-21 15:09:58',854.557000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1158,1,1,'2019-08-21 15:09:58',855.423000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1159,1,1,'2019-08-21 15:09:58',856.321000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1160,1,1,'2019-08-21 15:09:58',857.237000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1161,1,1,'2019-08-21 15:09:58',857.705000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1162,1,1,'2019-08-21 15:09:58',858.170000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1163,1,1,'2019-08-21 15:09:58',859.151000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1164,1,1,'2019-08-21 15:09:58',859.562000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1165,1,1,'2019-08-21 15:09:58',860.084000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1166,1,1,'2019-08-21 15:09:58',861.066000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1167,1,1,'2019-08-21 15:09:58',861.965000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1168,1,1,'2019-08-21 15:09:58',862.748000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1169,1,1,'2019-08-21 15:09:58',863.714000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1170,1,1,'2019-08-21 15:09:58',864.164000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1171,1,1,'2019-08-21 15:09:58',864.629000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1172,1,1,'2019-08-21 15:09:58',865.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1173,1,1,'2019-08-21 15:09:58',866.544000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1174,1,1,'2019-08-21 15:09:58',866.909000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1175,1,1,'2019-08-21 15:09:58',867.442000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1176,1,1,'2019-08-21 15:09:58',868.325000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1177,1,1,'2019-08-21 15:09:58',869.174000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1178,1,1,'2019-08-21 15:09:58',869.594000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1179,1,1,'2019-08-21 15:09:58',870.140000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1180,1,1,'2019-08-21 15:09:58',870.513000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1181,1,1,'2019-08-21 15:09:58',871.105000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1182,1,1,'2019-08-21 15:09:58',872.038000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1183,1,1,'2019-08-21 15:09:58',872.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1184,1,1,'2019-08-21 15:09:58',873.228000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1185,1,1,'2019-08-21 15:09:58',873.770000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1186,1,1,'2019-08-21 15:09:58',874.734000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1187,1,1,'2019-08-21 15:09:58',875.650000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1188,1,1,'2019-08-21 15:09:58',876.550000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1189,1,1,'2019-08-21 15:09:58',877.448000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1190,1,1,'2019-08-21 15:09:58',877.980000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1191,1,1,'2019-08-21 15:09:58',878.414000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1192,1,1,'2019-08-21 15:09:58',879.330000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1193,1,1,'2019-08-21 15:09:58',880.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1194,1,1,'2019-08-21 15:09:58',880.797000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1195,1,1,'2019-08-21 15:09:58',881.228000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1196,1,1,'2019-08-21 15:09:58',882.127000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1197,1,1,'2019-08-21 15:09:58',883.025000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1198,1,1,'2019-08-21 15:09:58',883.431000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1199,1,1,'2019-08-21 15:09:58',898.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1200,1,1,'2019-08-21 15:09:58',915.034000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1201,1,1,'2019-08-21 15:09:58',916.033000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1202,1,1,'2019-08-21 15:09:58',916.815000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1203,1,1,'2019-08-21 15:09:58',917.664000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1204,1,1,'2019-08-21 15:09:58',918.563000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1205,1,1,'2019-08-21 15:09:58',919.346000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1206,1,1,'2019-08-21 15:09:58',919.368000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1207,1,1,'2019-08-21 15:09:58',920.262000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1208,1,1,'2019-08-21 15:09:58',920.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1209,1,1,'2019-08-21 15:09:58',921.110000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1210,1,1,'2019-08-21 15:09:58',921.960000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1211,1,1,'2019-08-21 15:09:58',922.446000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1212,1,1,'2019-08-21 15:09:58',922.775000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1213,1,1,'2019-08-21 15:09:58',923.608000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1214,1,1,'2019-08-21 15:09:58',924.507000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1215,1,1,'2019-08-21 15:09:58',925.456000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1216,1,1,'2019-08-21 15:09:58',926.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1217,1,1,'2019-08-21 15:09:58',927.071000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1218,1,1,'2019-08-21 15:09:58',927.970000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1219,1,1,'2019-08-21 15:09:58',928.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1220,1,1,'2019-08-21 15:09:58',929.269000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1221,1,1,'2019-08-21 15:09:58',929.818000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1222,1,1,'2019-08-21 15:09:58',930.167000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1223,1,1,'2019-08-21 15:09:58',930.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1224,1,1,'2019-08-21 15:09:58',931.105000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1225,1,1,'2019-08-21 15:09:58',931.366000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1226,1,1,'2019-08-21 15:09:58',932.215000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1227,1,1,'2019-08-21 15:09:58',933.031000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1228,1,1,'2019-08-21 15:09:58',933.963000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1229,1,1,'2019-08-21 15:09:58',934.829000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1230,1,1,'2019-08-21 15:09:58',935.213000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1231,1,1,'2019-08-21 15:09:58',935.712000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1232,1,1,'2019-08-21 15:09:58',936.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1233,1,1,'2019-08-21 15:09:58',936.627000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1234,1,1,'2019-08-21 15:09:58',937.393000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1235,1,1,'2019-08-21 15:09:58',938.275000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1236,1,1,'2019-08-21 15:09:58',939.041000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1237,1,1,'2019-08-21 15:09:58',939.472000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1238,1,1,'2019-08-21 15:09:58',939.856000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1239,1,1,'2019-08-21 15:09:58',940.772000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1240,1,1,'2019-08-21 15:09:58',941.571000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1241,1,1,'2019-08-21 15:09:58',942.454000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1242,1,1,'2019-08-21 15:09:58',942.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1243,1,1,'2019-08-21 15:09:58',943.387000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1244,1,1,'2019-08-21 15:09:58',944.186000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1245,1,1,'2019-08-21 15:09:58',944.968000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1246,1,1,'2019-08-21 15:09:58',945.376000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1247,1,1,'2019-08-21 15:09:58',945.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1248,1,1,'2019-08-21 15:09:58',946.264000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1249,1,1,'2019-08-21 15:09:58',946.800000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1250,1,1,'2019-08-21 15:09:58',947.698000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1251,1,1,'2019-08-21 15:09:58',948.647000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1252,1,1,'2019-08-21 15:09:58',949.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1253,1,1,'2019-08-21 15:09:58',950.445000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1254,1,1,'2019-08-21 15:09:58',950.927000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1255,1,1,'2019-08-21 15:09:58',951.411000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1256,1,1,'2019-08-21 15:09:58',952.344000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1257,1,1,'2019-08-21 15:09:58',953.325000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1258,1,1,'2019-08-21 15:09:58',954.324000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1259,1,1,'2019-08-21 15:09:58',955.307000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1260,1,1,'2019-08-21 15:09:58',955.721000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1261,1,1,'2019-08-21 15:09:58',956.122000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1262,1,1,'2019-08-21 15:09:58',956.559000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1263,1,1,'2019-08-21 15:09:58',956.988000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1264,1,1,'2019-08-21 15:09:58',957.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1265,1,1,'2019-08-21 15:09:58',958.687000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1266,1,1,'2019-08-21 15:09:58',959.636000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1267,1,1,'2019-08-21 15:09:58',959.949000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1268,1,1,'2019-08-21 15:09:58',960.634000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1269,1,1,'2019-08-21 15:09:58',961.434000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1270,1,1,'2019-08-21 15:09:58',961.867000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1271,1,1,'2019-08-21 15:09:58',962.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1272,1,1,'2019-08-21 15:09:58',963.048000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1273,1,1,'2019-08-21 15:09:58',963.864000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1274,1,1,'2019-08-21 15:09:58',964.763000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1275,1,1,'2019-08-21 15:09:58',965.579000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1276,1,1,'2019-08-21 15:09:58',965.935000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1277,1,1,'2019-08-21 15:09:58',966.562000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1278,1,1,'2019-08-21 15:09:58',966.894000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1279,1,1,'2019-08-21 15:09:58',967.394000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1280,1,1,'2019-08-21 15:09:58',968.293000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1281,1,1,'2019-08-21 15:09:58',968.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1282,1,1,'2019-08-21 15:09:58',969.291000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1283,1,1,'2019-08-21 15:09:58',970.174000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1284,1,1,'2019-08-21 15:09:58',970.738000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1285,1,1,'2019-08-21 15:09:58',971.057000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1286,1,1,'2019-08-21 15:09:58',971.889000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1287,1,1,'2019-08-21 15:09:58',972.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1288,1,1,'2019-08-21 15:09:58',973.039000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1289,1,1,'2019-08-21 15:09:58',973.637000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1290,1,1,'2019-08-21 15:09:58',974.586000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1291,1,1,'2019-08-21 15:09:58',975.484000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1292,1,1,'2019-08-21 15:09:58',975.865000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1293,1,1,'2019-08-21 15:09:58',976.334000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1294,1,1,'2019-08-21 15:09:58',977.266000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1295,1,1,'2019-08-21 15:09:58',978.099000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1296,1,1,'2019-08-21 15:09:58',978.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1297,1,1,'2019-08-21 15:09:58',979.098000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1298,1,1,'2019-08-21 15:09:58',979.930000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1299,1,1,'2019-08-21 15:09:58',980.316000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1300,1,1,'2019-08-21 15:09:58',980.879000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1301,1,1,'2019-08-21 15:09:58',981.728000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1302,1,1,'2019-08-21 15:09:58',982.511000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1303,1,1,'2019-08-21 15:09:58',983.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1304,1,1,'2019-08-21 15:09:58',983.697000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1305,1,1,'2019-08-21 15:09:58',984.292000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1306,1,1,'2019-08-21 15:09:58',985.291000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1307,1,1,'2019-08-21 15:09:58',986.290000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1308,1,1,'2019-08-21 15:09:58',987.105000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1309,1,1,'2019-08-21 15:09:58',987.441000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1310,1,1,'2019-08-21 15:09:58',987.987000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1311,1,1,'2019-08-21 15:09:58',988.903000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1312,1,1,'2019-08-21 15:09:58',989.803000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1313,1,1,'2019-08-21 15:09:58',990.247000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1314,1,1,'2019-08-21 15:09:58',990.701000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1315,1,1,'2019-08-21 15:09:58',991.634000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1316,1,1,'2019-08-21 15:09:58',992.023000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1317,1,1,'2019-08-21 15:09:58',992.583000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1318,1,1,'2019-08-21 15:09:58',993.365000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1319,1,1,'2019-08-21 15:09:58',994.281000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1320,1,1,'2019-08-21 15:09:58',995.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1321,1,1,'2019-08-21 15:09:58',996.262000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1322,1,1,'2019-08-21 15:09:58',997.078000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1323,1,1,'2019-08-21 15:09:58',997.453000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1324,1,1,'2019-08-21 15:09:58',997.844000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1325,1,1,'2019-08-21 15:09:58',998.810000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1326,1,1,'2019-08-21 15:09:58',999.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1327,1,1,'2019-08-21 15:09:58',999.741000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1328,1,1,'2019-08-21 15:09:58',1000.707000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1329,1,1,'2019-08-21 15:09:58',1001.590000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1330,1,1,'2019-08-21 15:09:58',1002.505000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1331,1,1,'2019-08-21 15:09:58',1002.894000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1332,1,1,'2019-08-21 15:09:58',1003.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1333,1,1,'2019-08-21 15:09:58',1004.037000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1334,1,1,'2019-08-21 15:09:58',1004.458000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1335,1,1,'2019-08-21 15:09:58',1004.803000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1336,1,1,'2019-08-21 15:09:58',1005.651000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1337,1,1,'2019-08-21 15:09:58',1006.103000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1338,1,1,'2019-08-21 15:09:58',1006.667000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1339,1,1,'2019-08-21 15:09:58',1007.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1340,1,1,'2019-08-21 15:09:58',1008.415000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1341,1,1,'2019-08-21 15:09:58',1009.182000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1342,1,1,'2019-08-21 15:09:58',1009.574000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1343,1,1,'2019-08-21 15:09:58',1010.030000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1344,1,1,'2019-08-21 15:09:58',1010.996000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1345,1,1,'2019-08-21 15:09:58',1011.462000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1346,1,1,'2019-08-21 15:09:58',1011.778000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1347,1,1,'2019-08-21 15:09:58',1012.645000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1348,1,1,'2019-08-21 15:09:58',1013.443000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1349,1,1,'2019-08-21 15:09:58',1013.884000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1350,1,1,'2019-08-21 15:09:58',1014.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1351,1,1,'2019-08-21 15:09:58',1015.308000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1352,1,1,'2019-08-21 15:09:58',1016.091000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1353,1,1,'2019-08-21 15:09:58',1016.856000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1354,1,1,'2019-08-21 15:09:58',1017.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1355,1,1,'2019-08-21 15:09:58',1018.704000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1356,1,1,'2019-08-21 15:09:58',1019.041000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1357,1,1,'2019-08-21 15:09:58',1019.503000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1358,1,1,'2019-08-21 15:09:58',1020.030000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1359,1,1,'2019-08-21 15:09:58',1020.485000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1360,1,1,'2019-08-21 15:09:58',1021.352000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1361,1,1,'2019-08-21 15:09:58',1022.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1362,1,1,'2019-08-21 15:09:58',1022.836000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1363,1,1,'2019-08-21 15:09:58',1023.166000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1364,1,1,'2019-08-21 15:09:58',1023.532000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1365,1,1,'2019-08-21 15:09:58',1024.065000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1366,1,1,'2019-08-21 15:09:58',1025.030000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1367,1,1,'2019-08-21 15:09:58',1025.946000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1368,1,1,'2019-08-21 15:09:58',1026.389000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1369,1,1,'2019-08-21 15:09:58',1026.929000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1370,1,1,'2019-08-21 15:09:58',1027.794000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1371,1,1,'2019-08-21 15:09:58',1028.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1372,1,1,'2019-08-21 15:09:58',1029.559000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1373,1,1,'2019-08-21 15:09:58',1030.475000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1374,1,1,'2019-08-21 15:09:58',1030.870000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1375,1,1,'2019-08-21 15:09:58',1031.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1376,1,1,'2019-08-21 15:09:58',1032.339000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1377,1,1,'2019-08-21 15:09:58',1033.354000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1378,1,1,'2019-08-21 15:09:58',1033.837000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1379,1,1,'2019-08-21 15:09:58',1034.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1380,1,1,'2019-08-21 15:09:58',1035.103000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1381,1,1,'2019-08-21 15:09:58',1036.068000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1382,1,1,'2019-08-21 15:09:58',1036.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1383,1,1,'2019-08-21 15:09:58',1036.951000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1384,1,1,'2019-08-21 15:09:58',1037.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1385,1,1,'2019-08-21 15:09:58',1038.815000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1386,1,1,'2019-08-21 15:09:58',1039.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1387,1,1,'2019-08-21 15:09:58',1039.631000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1388,1,1,'2019-08-21 15:09:58',1040.023000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1389,1,1,'2019-08-21 15:09:58',1040.497000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1390,1,1,'2019-08-21 15:09:58',1041.479000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1391,1,1,'2019-08-21 15:09:58',1042.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1392,1,1,'2019-08-21 15:09:58',1043.294000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1393,1,1,'2019-08-21 15:09:58',1044.227000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1394,1,1,'2019-08-21 15:09:58',1044.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1395,1,1,'2019-08-21 15:09:58',1045.125000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1396,1,1,'2019-08-21 15:09:58',1045.786000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1397,1,1,'2019-08-21 15:09:58',1046.008000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1398,1,1,'2019-08-21 15:09:58',1046.807000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1399,1,1,'2019-08-21 15:09:58',1047.806000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1400,1,1,'2019-08-21 15:09:58',1048.705000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1401,1,1,'2019-08-21 15:09:58',1049.570000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1402,1,1,'2019-08-21 15:09:58',1050.520000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1403,1,1,'2019-08-21 15:09:58',1051.469000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1404,1,1,'2019-08-21 15:09:58',1051.832000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1405,1,1,'2019-08-21 15:09:58',1052.301000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1406,1,1,'2019-08-21 15:09:58',1052.771000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1407,1,1,'2019-08-21 15:09:58',1053.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1408,1,1,'2019-08-21 15:09:58',1054.198000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1409,1,1,'2019-08-21 15:09:58',1055.064000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1410,1,1,'2019-08-21 15:09:58',1055.964000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1411,1,1,'2019-08-21 15:09:58',1056.354000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1412,1,1,'2019-08-21 15:09:58',1056.746000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1413,1,1,'2019-08-21 15:09:58',1057.130000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1414,1,1,'2019-08-21 15:09:58',1057.611000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1415,1,1,'2019-08-21 15:09:58',1058.494000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1416,1,1,'2019-08-21 15:09:58',1059.343000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1417,1,1,'2019-08-21 15:09:58',1060.342000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1418,1,1,'2019-08-21 15:09:58',1060.764000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1419,1,1,'2019-08-21 15:09:58',1061.175000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1420,1,1,'2019-08-21 15:09:58',1062.007000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1421,1,1,'2019-08-21 15:09:58',1062.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1422,1,1,'2019-08-21 15:09:58',1063.227000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1423,1,1,'2019-08-21 15:09:58',1063.605000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1424,1,1,'2019-08-21 15:09:58',1064.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1425,1,1,'2019-08-21 15:09:58',1065.270000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1426,1,1,'2019-08-21 15:09:58',1066.202000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1427,1,1,'2019-08-21 15:09:58',1066.748000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1428,1,1,'2019-08-21 15:09:58',1067.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1429,1,1,'2019-08-21 15:09:58',1067.967000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1430,1,1,'2019-08-21 15:09:58',1068.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1431,1,1,'2019-08-21 15:09:58',1068.966000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1432,1,1,'2019-08-21 15:09:58',1069.865000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1433,1,1,'2019-08-21 15:09:58',1070.697000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1434,1,1,'2019-08-21 15:09:58',1071.108000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1435,1,1,'2019-08-21 15:09:58',1071.463000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1436,1,1,'2019-08-21 15:09:58',1072.296000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1437,1,1,'2019-08-21 15:09:58',1073.278000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1438,1,1,'2019-08-21 15:09:58',1073.642000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1439,1,1,'2019-08-21 15:09:58',1074.044000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1440,1,1,'2019-08-21 15:09:58',1074.408000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1441,1,1,'2019-08-21 15:09:58',1074.826000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1442,1,1,'2019-08-21 15:09:58',1075.792000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1443,1,1,'2019-08-21 15:09:58',1076.690000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1444,1,1,'2019-08-21 15:09:58',1077.623000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1445,1,1,'2019-08-21 15:09:58',1078.031000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1446,1,1,'2019-08-21 15:09:58',1078.422000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1447,1,1,'2019-08-21 15:09:58',1079.321000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1448,1,1,'2019-08-21 15:09:58',1080.087000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1449,1,1,'2019-08-21 15:09:58',1081.020000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1450,1,1,'2019-08-21 15:09:58',1081.918000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1451,1,1,'2019-08-21 15:09:58',1082.271000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1452,1,1,'2019-08-21 15:09:58',1082.685000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1453,1,1,'2019-08-21 15:09:58',1083.467000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1454,1,1,'2019-08-21 15:09:58',1083.865000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1455,1,1,'2019-08-21 15:09:58',1084.383000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1456,1,1,'2019-08-21 15:09:58',1085.148000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1457,1,1,'2019-08-21 15:09:58',1085.561000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1458,1,1,'2019-08-21 15:09:58',1086.014000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1459,1,1,'2019-08-21 15:09:58',1086.863000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1460,1,1,'2019-08-21 15:09:58',1087.829000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1461,1,1,'2019-08-21 15:09:58',1088.794000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1462,1,1,'2019-08-21 15:09:58',1089.144000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1463,1,1,'2019-08-21 15:09:58',1089.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1464,1,1,'2019-08-21 15:09:58',1090.393000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1465,1,1,'2019-08-21 15:09:58',1091.342000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1466,1,1,'2019-08-21 15:09:58',1092.124000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1467,1,1,'2019-08-21 15:09:58',1092.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1468,1,1,'2019-08-21 15:09:58',1092.939000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1469,1,1,'2019-08-21 15:09:58',1093.905000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1470,1,1,'2019-08-21 15:09:58',1094.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1471,1,1,'2019-08-21 15:09:58',1094.871000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1472,1,1,'2019-08-21 15:09:58',1095.887000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1473,1,1,'2019-08-21 15:09:58',1096.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1474,1,1,'2019-08-21 15:09:58',1096.769000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1475,1,1,'2019-08-21 15:09:58',1097.618000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1476,1,1,'2019-08-21 15:09:58',1098.584000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1477,1,1,'2019-08-21 15:09:58',1099.449000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1478,1,1,'2019-08-21 15:09:58',1099.831000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1479,1,1,'2019-08-21 15:09:58',1100.382000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1480,1,1,'2019-08-21 15:09:58',1101.331000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1481,1,1,'2019-08-21 15:09:58',1102.130000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1482,1,1,'2019-08-21 15:09:58',1102.995000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1483,1,1,'2019-08-21 15:09:58',1103.465000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1484,1,1,'2019-08-21 15:09:58',1103.994000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1485,1,1,'2019-08-21 15:09:58',1104.827000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1486,1,1,'2019-08-21 15:09:58',1105.281000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1487,1,1,'2019-08-21 15:09:58',1105.676000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1488,1,1,'2019-08-21 15:09:58',1106.508000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1489,1,1,'2019-08-21 15:09:58',1107.291000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1490,1,1,'2019-08-21 15:09:58',1108.239000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1491,1,1,'2019-08-21 15:09:58',1108.692000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1492,1,1,'2019-08-21 15:09:58',1109.139000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1493,1,1,'2019-08-21 15:09:58',1109.971000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1494,1,1,'2019-08-21 15:09:58',1110.459000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1495,1,1,'2019-08-21 15:09:58',1110.820000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1496,1,1,'2019-08-21 15:09:58',1111.652000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1497,1,1,'2019-08-21 15:09:58',1112.063000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1498,1,1,'2019-08-21 15:09:58',1112.535000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1499,1,1,'2019-08-21 15:09:58',1112.992000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1500,1,1,'2019-08-21 15:09:58',1113.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1501,1,1,'2019-08-21 15:09:58',1113.789000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1502,1,1,'2019-08-21 15:09:58',1114.267000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1503,1,1,'2019-08-21 15:09:58',1115.182000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1504,1,1,'2019-08-21 15:09:58',1116.197000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1505,1,1,'2019-08-21 15:09:58',1116.636000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1506,1,1,'2019-08-21 15:09:58',1117.196000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1507,1,1,'2019-08-21 15:09:58',1118.179000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1508,1,1,'2019-08-21 15:09:58',1119.111000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1509,1,1,'2019-08-21 15:09:58',1119.877000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1510,1,1,'2019-08-21 15:09:58',1120.793000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1511,1,1,'2019-08-21 15:09:58',1121.156000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1512,1,1,'2019-08-21 15:09:58',1121.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1513,1,1,'2019-08-21 15:09:58',1122.674000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1514,1,1,'2019-08-21 15:09:58',1122.701000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1515,1,1,'2019-08-21 15:09:58',1123.489000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1516,1,1,'2019-08-21 15:09:58',1124.256000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1517,1,1,'2019-08-21 15:09:58',1125.188000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1518,1,1,'2019-08-21 15:09:58',1125.577000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1519,1,1,'2019-08-21 15:09:58',1126.037000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1520,1,1,'2019-08-21 15:09:58',1126.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1521,1,1,'2019-08-21 15:09:58',1127.202000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1522,1,1,'2019-08-21 15:09:58',1127.818000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1523,1,1,'2019-08-21 15:09:58',1128.801000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1524,1,1,'2019-08-21 15:09:58',1129.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1525,1,1,'2019-08-21 15:09:58',1130.698000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1526,1,1,'2019-08-21 15:09:58',1131.088000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1527,1,1,'2019-08-21 15:09:58',1131.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1528,1,1,'2019-08-21 15:09:58',1132.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1529,1,1,'2019-08-21 15:09:58',1132.834000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1530,1,1,'2019-08-21 15:09:58',1133.246000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1531,1,1,'2019-08-21 15:09:58',1134.012000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1532,1,1,'2019-08-21 15:09:58',1134.927000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1533,1,1,'2019-08-21 15:09:58',1135.266000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1534,1,1,'2019-08-21 15:09:58',1135.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1535,1,1,'2019-08-21 15:09:58',1136.692000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1536,1,1,'2019-08-21 15:09:58',1137.491000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1537,1,1,'2019-08-21 15:09:58',1138.457000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1538,1,1,'2019-08-21 15:09:58',1139.355000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1539,1,1,'2019-08-21 15:09:58',1140.321000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1540,1,1,'2019-08-21 15:09:58',1140.746000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1541,1,1,'2019-08-21 15:09:58',1141.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1542,1,1,'2019-08-21 15:09:58',1141.970000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1543,1,1,'2019-08-21 15:09:58',1142.411000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1544,1,1,'2019-08-21 15:09:58',1142.852000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1545,1,1,'2019-08-21 15:09:58',1143.718000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1546,1,1,'2019-08-21 15:09:58',1144.500000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1547,1,1,'2019-08-21 15:09:58',1145.333000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1548,1,1,'2019-08-21 15:09:58',1145.682000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1549,1,1,'2019-08-21 15:09:58',1146.265000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1550,1,1,'2019-08-21 15:09:58',1146.671000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1551,1,1,'2019-08-21 15:09:58',1147.081000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1552,1,1,'2019-08-21 15:09:58',1147.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1553,1,1,'2019-08-21 15:09:58',1148.862000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1554,1,1,'2019-08-21 15:09:58',1149.878000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1555,1,1,'2019-08-21 15:09:58',1150.877000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1556,1,1,'2019-08-21 15:09:58',1151.842000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1557,1,1,'2019-08-21 15:09:58',1152.514000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1558,1,1,'2019-08-21 15:09:58',1152.691000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1559,1,1,'2019-08-21 15:09:58',1153.039000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1560,1,1,'2019-08-21 15:09:58',1153.573000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1561,1,1,'2019-08-21 15:09:58',1154.340000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1562,1,1,'2019-08-21 15:09:58',1154.734000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1563,1,1,'2019-08-21 15:09:58',1155.222000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1564,1,1,'2019-08-21 15:09:58',1155.987000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1565,1,1,'2019-08-21 15:09:58',1156.986000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1566,1,1,'2019-08-21 15:09:58',1157.389000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1567,1,1,'2019-08-21 15:09:58',1157.886000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1568,1,1,'2019-08-21 15:09:58',1158.685000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1569,1,1,'2019-08-21 15:09:58',1159.114000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1570,1,1,'2019-08-21 15:09:58',1159.567000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1571,1,1,'2019-08-21 15:09:58',1160.499000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1572,1,1,'2019-08-21 15:09:58',1161.332000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1573,1,1,'2019-08-21 15:09:58',1162.314000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1574,1,1,'2019-08-21 15:09:58',1163.312000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1575,1,1,'2019-08-21 15:09:58',1163.746000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1576,1,1,'2019-08-21 15:09:58',1164.179000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1577,1,1,'2019-08-21 15:09:58',1164.625000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1578,1,1,'2019-08-21 15:09:58',1165.145000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1579,1,1,'2019-08-21 15:09:58',1165.492000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1580,1,1,'2019-08-21 15:09:58',1166.093000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1581,1,1,'2019-08-21 15:09:58',1166.942000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1582,1,1,'2019-08-21 15:09:58',1167.824000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1583,1,1,'2019-08-21 15:09:58',1168.823000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1584,1,1,'2019-08-21 15:09:58',1169.689000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1585,1,1,'2019-08-21 15:09:58',1170.114000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1586,1,1,'2019-08-21 15:09:58',1170.455000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1587,1,1,'2019-08-21 15:09:58',1171.388000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1588,1,1,'2019-08-21 15:09:58',1171.760000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1589,1,1,'2019-08-21 15:09:58',1172.303000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1590,1,1,'2019-08-21 15:09:58',1173.086000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1591,1,1,'2019-08-21 15:09:58',1173.852000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1592,1,1,'2019-08-21 15:09:58',1174.650000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1593,1,1,'2019-08-21 15:09:58',1175.060000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1594,1,1,'2019-08-21 15:09:58',1175.533000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1595,1,1,'2019-08-21 15:09:58',1176.382000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1596,1,1,'2019-08-21 15:09:58',1177.314000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1597,1,1,'2019-08-21 15:09:58',1178.196000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1598,1,1,'2019-08-21 15:09:58',1178.622000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1599,1,1,'2019-08-21 15:09:58',1179.062000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1600,2,2,'2019-08-21 15:10:07',0.895000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1601,2,2,'2019-08-21 15:10:07',31.054000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1602,2,2,'2019-08-21 15:10:07',31.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1603,2,2,'2019-08-21 15:10:07',32.289000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1604,2,2,'2019-08-21 15:10:07',33.138000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1605,2,2,'2019-08-21 15:10:07',33.971000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1606,2,2,'2019-08-21 15:10:07',34.274000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1607,2,2,'2019-08-21 15:10:07',34.853000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1608,2,2,'2019-08-21 15:10:07',35.702000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1609,2,2,'2019-08-21 15:10:07',36.052000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1610,2,2,'2019-08-21 15:10:07',36.701000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1611,2,2,'2019-08-21 15:10:07',37.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1612,2,2,'2019-08-21 15:10:07',37.583000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1613,2,2,'2019-08-21 15:10:07',38.466000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1614,2,2,'2019-08-21 15:10:07',39.481000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1615,2,2,'2019-08-21 15:10:07',40.480000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1616,2,2,'2019-08-21 15:10:07',41.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1617,2,2,'2019-08-21 15:10:07',41.787000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1618,2,2,'2019-08-21 15:10:07',42.411000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1619,2,2,'2019-08-21 15:10:07',43.427000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1620,2,2,'2019-08-21 15:10:07',44.259000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1621,2,2,'2019-08-21 15:10:07',45.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1622,2,2,'2019-08-21 15:10:07',45.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1623,2,2,'2019-08-21 15:10:07',46.091000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1624,2,2,'2019-08-21 15:10:07',46.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1625,2,2,'2019-08-21 15:10:07',47.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1626,2,2,'2019-08-21 15:10:07',47.756000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1627,2,2,'2019-08-21 15:10:07',48.158000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1628,2,2,'2019-08-21 15:10:07',48.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1629,2,2,'2019-08-21 15:10:07',49.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1630,2,2,'2019-08-21 15:10:07',50.485000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1631,2,2,'2019-08-21 15:10:07',51.335000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1632,2,2,'2019-08-21 15:10:07',52.167000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1633,2,2,'2019-08-21 15:10:07',53.116000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1634,2,2,'2019-08-21 15:10:07',53.520000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1635,2,2,'2019-08-21 15:10:07',53.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1636,2,2,'2019-08-21 15:10:07',54.206000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1637,2,2,'2019-08-21 15:10:07',54.781000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1638,2,2,'2019-08-21 15:10:07',55.764000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1639,2,2,'2019-08-21 15:10:07',56.829000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1640,2,2,'2019-08-21 15:10:07',57.661000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1641,2,2,'2019-08-21 15:10:07',58.460000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1642,2,2,'2019-08-21 15:10:07',59.442000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1643,2,2,'2019-08-21 15:10:07',59.800000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1644,2,2,'2019-08-21 15:10:07',60.259000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1645,2,2,'2019-08-21 15:10:07',60.658000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1646,2,2,'2019-08-21 15:10:07',61.190000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1647,2,2,'2019-08-21 15:10:07',62.090000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1648,2,2,'2019-08-21 15:10:07',62.855000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1649,2,2,'2019-08-21 15:10:07',63.253000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1650,2,2,'2019-08-21 15:10:07',63.722000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1651,2,2,'2019-08-21 15:10:07',63.990000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1652,2,2,'2019-08-21 15:10:07',64.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1653,2,2,'2019-08-21 15:10:07',65.553000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1654,2,2,'2019-08-21 15:10:07',66.485000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1655,2,2,'2019-08-21 15:10:07',67.317000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1656,2,2,'2019-08-21 15:10:07',68.267000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1657,2,2,'2019-08-21 15:10:07',69.065000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1658,2,2,'2019-08-21 15:10:07',69.412000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1659,2,2,'2019-08-21 15:10:07',69.981000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1660,2,2,'2019-08-21 15:10:07',70.250000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1661,2,2,'2019-08-21 15:10:07',70.964000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1662,2,2,'2019-08-21 15:10:07',71.912000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1663,2,2,'2019-08-21 15:10:07',72.944000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1664,2,2,'2019-08-21 15:10:07',73.811000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1665,2,2,'2019-08-21 15:10:07',74.709000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1666,2,2,'2019-08-21 15:10:07',75.675000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1667,2,2,'2019-08-21 15:10:07',76.508000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1668,2,2,'2019-08-21 15:10:07',77.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1669,2,2,'2019-08-21 15:10:07',77.833000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1670,2,2,'2019-08-21 15:10:07',78.472000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1671,2,2,'2019-08-21 15:10:07',78.731000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1672,2,2,'2019-08-21 15:10:07',79.305000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1673,2,2,'2019-08-21 15:10:07',79.751000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1674,2,2,'2019-08-21 15:10:07',80.253000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1675,2,2,'2019-08-21 15:10:07',81.186000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1676,2,2,'2019-08-21 15:10:07',82.102000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1677,2,2,'2019-08-21 15:10:07',83.017000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1678,2,2,'2019-08-21 15:10:07',83.446000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1679,2,2,'2019-08-21 15:10:07',83.883000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1680,2,2,'2019-08-21 15:10:07',84.072000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1681,2,2,'2019-08-21 15:10:07',84.798000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1682,2,2,'2019-08-21 15:10:07',85.780000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1683,2,2,'2019-08-21 15:10:07',86.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1684,2,2,'2019-08-21 15:10:07',86.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1685,2,2,'2019-08-21 15:10:07',87.662000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1686,2,2,'2019-08-21 15:10:07',88.594000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1687,2,2,'2019-08-21 15:10:07',88.909000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1688,2,2,'2019-08-21 15:10:07',89.593000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1689,2,2,'2019-08-21 15:10:07',90.376000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1690,2,2,'2019-08-21 15:10:07',91.324000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1691,2,2,'2019-08-21 15:10:07',92.307000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1692,2,2,'2019-08-21 15:10:07',92.706000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1693,2,2,'2019-08-21 15:10:07',93.289000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1694,2,2,'2019-08-21 15:10:07',93.685000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1695,2,2,'2019-08-21 15:10:07',94.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1696,2,2,'2019-08-21 15:10:07',95.087000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1697,2,2,'2019-08-21 15:10:07',95.937000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1698,2,2,'2019-08-21 15:10:07',96.719000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1699,2,2,'2019-08-21 15:10:07',97.169000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1700,2,2,'2019-08-21 15:10:07',97.601000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1701,2,2,'2019-08-21 15:10:07',98.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1702,2,2,'2019-08-21 15:10:07',99.366000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1703,2,2,'2019-08-21 15:10:07',99.783000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1704,2,2,'2019-08-21 15:10:07',100.132000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1705,2,2,'2019-08-21 15:10:07',101.114000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1706,2,2,'2019-08-21 15:10:07',101.963000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1707,2,2,'2019-08-21 15:10:07',102.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1708,2,2,'2019-08-21 15:10:07',102.745000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1709,2,2,'2019-08-21 15:10:07',103.694000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1710,2,2,'2019-08-21 15:10:07',104.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1711,2,2,'2019-08-21 15:10:07',104.610000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1712,2,2,'2019-08-21 15:10:07',105.459000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1713,2,2,'2019-08-21 15:10:07',106.458000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1714,2,2,'2019-08-21 15:10:07',107.224000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1715,2,2,'2019-08-21 15:10:07',108.223000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1716,2,2,'2019-08-21 15:10:07',108.538000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1717,2,2,'2019-08-21 15:10:07',109.188000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1718,2,2,'2019-08-21 15:10:07',110.204000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1719,2,2,'2019-08-21 15:10:07',110.658000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1720,2,2,'2019-08-21 15:10:07',111.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1721,2,2,'2019-08-21 15:10:07',112.118000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1722,2,2,'2019-08-21 15:10:07',113.101000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1723,2,2,'2019-08-21 15:10:07',113.934000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1724,2,2,'2019-08-21 15:10:07',114.323000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1725,2,2,'2019-08-21 15:10:07',114.766000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1726,2,2,'2019-08-21 15:10:07',115.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1727,2,2,'2019-08-21 15:10:07',115.598000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1728,2,2,'2019-08-21 15:10:07',116.547000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1729,2,2,'2019-08-21 15:10:07',117.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1730,2,2,'2019-08-21 15:10:07',117.797000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1731,2,2,'2019-08-21 15:10:07',118.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1732,2,2,'2019-08-21 15:10:07',119.311000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1733,2,2,'2019-08-21 15:10:07',120.227000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1734,2,2,'2019-08-21 15:10:07',121.175000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1735,2,2,'2019-08-21 15:10:07',122.058000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1736,2,2,'2019-08-21 15:10:07',122.522000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1737,2,2,'2019-08-21 15:10:07',122.873000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1738,2,2,'2019-08-21 15:10:07',123.640000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1739,2,2,'2019-08-21 15:10:07',124.107000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1740,2,2,'2019-08-21 15:10:07',124.571000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1741,2,2,'2019-08-21 15:10:07',125.587000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1742,2,2,'2019-08-21 15:10:07',126.503000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1743,2,2,'2019-08-21 15:10:07',127.385000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1744,2,2,'2019-08-21 15:10:07',127.752000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1745,2,2,'2019-08-21 15:10:07',128.284000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1746,2,2,'2019-08-21 15:10:07',129.083000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1747,2,2,'2019-08-21 15:10:07',129.540000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1748,2,2,'2019-08-21 15:10:07',129.982000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1749,2,2,'2019-08-21 15:10:07',130.781000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1750,2,2,'2019-08-21 15:10:07',131.730000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1751,2,2,'2019-08-21 15:10:07',132.646000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1752,2,2,'2019-08-21 15:10:07',132.963000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1753,2,2,'2019-08-21 15:10:07',133.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1754,2,2,'2019-08-21 15:10:07',134.344000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1755,2,2,'2019-08-21 15:10:07',134.780000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1756,2,2,'2019-08-21 15:10:07',135.177000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1757,2,2,'2019-08-21 15:10:07',136.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1758,2,2,'2019-08-21 15:10:07',136.466000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1759,2,2,'2019-08-21 15:10:07',136.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1760,2,2,'2019-08-21 15:10:07',137.740000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1761,2,2,'2019-08-21 15:10:07',138.673000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1762,2,2,'2019-08-21 15:10:07',139.111000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1763,2,2,'2019-08-21 15:10:07',139.639000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1764,2,2,'2019-08-21 15:10:07',140.487000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1765,2,2,'2019-08-21 15:10:07',141.387000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1766,2,2,'2019-08-21 15:10:07',142.202000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1767,2,2,'2019-08-21 15:10:07',142.555000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1768,2,2,'2019-08-21 15:10:07',143.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1769,2,2,'2019-08-21 15:10:07',143.917000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1770,2,2,'2019-08-21 15:10:07',144.850000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1771,2,2,'2019-08-21 15:10:07',145.220000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1772,2,2,'2019-08-21 15:10:07',145.682000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1773,2,2,'2019-08-21 15:10:07',146.129000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1774,2,2,'2019-08-21 15:10:07',146.564000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1775,2,2,'2019-08-21 15:10:07',147.347000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1776,2,2,'2019-08-21 15:10:07',148.346000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1777,2,2,'2019-08-21 15:10:07',149.211000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1778,2,2,'2019-08-21 15:10:07',149.582000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1779,2,2,'2019-08-21 15:10:07',149.994000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1780,2,2,'2019-08-21 15:10:07',150.909000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1781,2,2,'2019-08-21 15:10:07',151.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1782,2,2,'2019-08-21 15:10:07',152.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1783,2,2,'2019-08-21 15:10:07',153.323000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1784,2,2,'2019-08-21 15:10:07',153.742000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1785,2,2,'2019-08-21 15:10:07',154.206000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1786,2,2,'2019-08-21 15:10:07',154.570000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1787,2,2,'2019-08-21 15:10:07',154.972000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1788,2,2,'2019-08-21 15:10:07',155.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1789,2,2,'2019-08-21 15:10:07',155.987000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1790,2,2,'2019-08-21 15:10:07',156.853000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1791,2,2,'2019-08-21 15:10:07',157.636000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1792,2,2,'2019-08-21 15:10:07',158.468000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1793,2,2,'2019-08-21 15:10:07',159.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1794,2,2,'2019-08-21 15:10:07',160.482000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1795,2,2,'2019-08-21 15:10:07',160.851000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1796,2,2,'2019-08-21 15:10:07',161.348000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1797,2,2,'2019-08-21 15:10:07',162.164000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1798,2,2,'2019-08-21 15:10:07',162.627000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1799,2,2,'2019-08-21 15:10:07',163.062000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1800,2,2,'2019-08-21 15:10:07',164.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1801,2,2,'2019-08-21 15:10:07',165.027000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1802,2,2,'2019-08-21 15:10:07',165.414000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1803,2,2,'2019-08-21 15:10:07',165.910000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1804,2,2,'2019-08-21 15:10:07',166.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1805,2,2,'2019-08-21 15:10:07',167.725000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1806,2,2,'2019-08-21 15:10:07',168.590000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1807,2,2,'2019-08-21 15:10:07',169.356000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1808,2,2,'2019-08-21 15:10:07',169.766000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1809,2,2,'2019-08-21 15:10:07',170.288000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1810,2,2,'2019-08-21 15:10:07',171.188000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1811,2,2,'2019-08-21 15:10:07',171.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1812,2,2,'2019-08-21 15:10:07',172.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1813,2,2,'2019-08-21 15:10:07',172.919000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1814,2,2,'2019-08-21 15:10:07',173.391000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1815,2,2,'2019-08-21 15:10:07',173.685000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1816,2,2,'2019-08-21 15:10:07',174.684000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1817,2,2,'2019-08-21 15:10:07',175.633000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1818,2,2,'2019-08-21 15:10:07',176.448000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1819,2,2,'2019-08-21 15:10:07',177.331000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1820,2,2,'2019-08-21 15:10:07',178.263000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1821,2,2,'2019-08-21 15:10:07',178.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1822,2,2,'2019-08-21 15:10:07',179.212000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1823,2,2,'2019-08-21 15:10:07',180.178000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1824,2,2,'2019-08-21 15:10:07',180.549000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1825,2,2,'2019-08-21 15:10:07',180.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1826,2,2,'2019-08-21 15:10:07',181.742000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1827,2,2,'2019-08-21 15:10:07',182.691000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1828,2,2,'2019-08-21 15:10:07',183.641000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1829,2,2,'2019-08-21 15:10:07',184.406000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1830,2,2,'2019-08-21 15:10:07',184.790000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1831,2,2,'2019-08-21 15:10:07',185.289000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1832,2,2,'2019-08-21 15:10:07',186.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1833,2,2,'2019-08-21 15:10:07',187.187000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1834,2,2,'2019-08-21 15:10:07',188.152000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1835,2,2,'2019-08-21 15:10:07',188.968000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1836,2,2,'2019-08-21 15:10:07',189.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1837,2,2,'2019-08-21 15:10:07',190.343000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1838,2,2,'2019-08-21 15:10:07',190.799000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1839,2,2,'2019-08-21 15:10:07',191.171000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1840,2,2,'2019-08-21 15:10:07',191.748000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1841,2,2,'2019-08-21 15:10:07',192.141000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1842,2,2,'2019-08-21 15:10:07',192.730000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1843,2,2,'2019-08-21 15:10:07',193.140000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1844,2,2,'2019-08-21 15:10:07',193.630000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1845,2,2,'2019-08-21 15:10:07',194.611000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1846,2,2,'2019-08-21 15:10:07',195.577000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1847,2,2,'2019-08-21 15:10:07',196.526000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1848,2,2,'2019-08-21 15:10:07',197.459000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1849,2,2,'2019-08-21 15:10:07',198.357000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1850,2,2,'2019-08-21 15:10:07',199.174000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1851,2,2,'2019-08-21 15:10:07',200.122000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1852,2,2,'2019-08-21 15:10:07',201.021000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1853,2,2,'2019-08-21 15:10:07',201.349000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1854,2,2,'2019-08-21 15:10:07',201.837000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1855,2,2,'2019-08-21 15:10:07',202.247000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1856,2,2,'2019-08-21 15:10:07',202.819000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1857,2,2,'2019-08-21 15:10:07',203.635000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1858,2,2,'2019-08-21 15:10:07',204.451000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1859,2,2,'2019-08-21 15:10:07',204.862000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1860,2,2,'2019-08-21 15:10:07',205.434000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1861,2,2,'2019-08-21 15:10:07',206.433000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1862,2,2,'2019-08-21 15:10:07',206.902000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1863,2,2,'2019-08-21 15:10:07',207.381000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1864,2,2,'2019-08-21 15:10:07',208.330000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1865,2,2,'2019-08-21 15:10:07',209.112000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1866,2,2,'2019-08-21 15:10:07',210.078000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1867,2,2,'2019-08-21 15:10:07',210.426000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1868,2,2,'2019-08-21 15:10:07',210.928000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1869,2,2,'2019-08-21 15:10:07',211.203000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1870,2,2,'2019-08-21 15:10:07',211.926000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1871,2,2,'2019-08-21 15:10:07',212.842000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1872,2,2,'2019-08-21 15:10:07',213.824000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1873,2,2,'2019-08-21 15:10:07',214.807000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1874,2,2,'2019-08-21 15:10:07',215.589000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1875,2,2,'2019-08-21 15:10:07',216.505000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1876,2,2,'2019-08-21 15:10:07',216.878000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1877,2,2,'2019-08-21 15:10:07',217.403000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1878,2,2,'2019-08-21 15:10:07',217.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1879,2,2,'2019-08-21 15:10:07',218.319000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1880,2,2,'2019-08-21 15:10:07',219.269000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1881,2,2,'2019-08-21 15:10:07',220.051000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1882,2,2,'2019-08-21 15:10:07',220.613000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1883,2,2,'2019-08-21 15:10:07',220.916000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1884,2,2,'2019-08-21 15:10:07',221.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1885,2,2,'2019-08-21 15:10:07',221.882000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1886,2,2,'2019-08-21 15:10:07',222.748000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1887,2,2,'2019-08-21 15:10:07',223.696000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1888,2,2,'2019-08-21 15:10:07',224.546000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1889,2,2,'2019-08-21 15:10:07',224.925000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1890,2,2,'2019-08-21 15:10:07',225.545000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1891,2,2,'2019-08-21 15:10:07',226.327000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1892,2,2,'2019-08-21 15:10:07',227.260000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1893,2,2,'2019-08-21 15:10:07',228.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1894,2,2,'2019-08-21 15:10:07',228.520000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1895,2,2,'2019-08-21 15:10:07',228.824000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1896,2,2,'2019-08-21 15:10:07',229.606000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1897,2,2,'2019-08-21 15:10:07',230.055000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1898,2,2,'2019-08-21 15:10:07',230.506000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1899,2,2,'2019-08-21 15:10:07',230.832000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1900,2,2,'2019-08-21 15:10:07',231.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1901,2,2,'2019-08-21 15:10:07',232.237000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1902,2,2,'2019-08-21 15:10:07',233.069000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1903,2,2,'2019-08-21 15:10:07',233.886000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1904,2,2,'2019-08-21 15:10:07',234.801000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1905,2,2,'2019-08-21 15:10:07',235.567000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1906,2,2,'2019-08-21 15:10:07',236.583000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1907,2,2,'2019-08-21 15:10:07',237.052000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1908,2,2,'2019-08-21 15:10:07',237.349000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1909,2,2,'2019-08-21 15:10:07',238.247000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1910,2,2,'2019-08-21 15:10:07',239.080000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1911,2,2,'2019-08-21 15:10:07',239.495000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1912,2,2,'2019-08-21 15:10:07',239.995000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1913,2,2,'2019-08-21 15:10:07',240.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1914,2,2,'2019-08-21 15:10:07',241.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1915,2,2,'2019-08-21 15:10:07',242.322000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1916,2,2,'2019-08-21 15:10:07',242.742000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1917,2,2,'2019-08-21 15:10:07',243.200000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1918,2,2,'2019-08-21 15:10:07',243.542000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1919,2,2,'2019-08-21 15:10:07',244.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1920,2,2,'2019-08-21 15:10:07',245.240000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1921,2,2,'2019-08-21 15:10:07',245.694000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1922,2,2,'2019-08-21 15:10:07',246.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1923,2,2,'2019-08-21 15:10:07',247.088000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1924,2,2,'2019-08-21 15:10:07',248.087000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1925,2,2,'2019-08-21 15:10:07',249.086000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1926,2,2,'2019-08-21 15:10:07',249.420000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1927,2,2,'2019-08-21 15:10:07',249.935000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1928,2,2,'2019-08-21 15:10:07',250.817000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1929,2,2,'2019-08-21 15:10:07',251.298000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1930,2,2,'2019-08-21 15:10:07',251.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1931,2,2,'2019-08-21 15:10:07',252.516000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1932,2,2,'2019-08-21 15:10:07',253.381000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1933,2,2,'2019-08-21 15:10:07',253.832000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1934,2,2,'2019-08-21 15:10:07',254.230000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1935,2,2,'2019-08-21 15:10:07',255.013000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1936,2,2,'2019-08-21 15:10:07',256.012000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1937,2,2,'2019-08-21 15:10:07',256.943000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1938,2,2,'2019-08-21 15:10:07',257.225000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1939,2,2,'2019-08-21 15:10:07',257.926000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1940,2,2,'2019-08-21 15:10:07',258.306000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1941,2,2,'2019-08-21 15:10:07',258.792000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1942,2,2,'2019-08-21 15:10:07',259.740000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1943,2,2,'2019-08-21 15:10:07',260.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1944,2,2,'2019-08-21 15:10:07',261.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1945,2,2,'2019-08-21 15:10:07',262.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1946,2,2,'2019-08-21 15:10:07',262.869000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1947,2,2,'2019-08-21 15:10:07',263.320000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1948,2,2,'2019-08-21 15:10:07',264.103000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1949,2,2,'2019-08-21 15:10:07',264.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1950,2,2,'2019-08-21 15:10:07',265.019000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1951,2,2,'2019-08-21 15:10:07',265.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1952,2,2,'2019-08-21 15:10:07',266.683000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1953,2,2,'2019-08-21 15:10:07',267.466000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1954,2,2,'2019-08-21 15:10:07',267.857000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1955,2,2,'2019-08-21 15:10:07',268.248000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1956,2,2,'2019-08-21 15:10:07',269.080000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1957,2,2,'2019-08-21 15:10:07',270.062000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1958,2,2,'2019-08-21 15:10:07',271.078000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1959,2,2,'2019-08-21 15:10:07',271.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1960,2,2,'2019-08-21 15:10:07',272.027000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1961,2,2,'2019-08-21 15:10:07',272.826000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1962,2,2,'2019-08-21 15:10:07',273.229000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1963,2,2,'2019-08-21 15:10:07',273.625000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1964,2,2,'2019-08-21 15:10:07',274.491000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1965,2,2,'2019-08-21 15:10:07',274.915000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1966,2,2,'2019-08-21 15:10:07',275.356000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1967,2,2,'2019-08-21 15:10:07',276.140000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1968,2,2,'2019-08-21 15:10:07',277.021000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1969,2,2,'2019-08-21 15:10:07',277.805000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1970,2,2,'2019-08-21 15:10:07',278.720000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1971,2,2,'2019-08-21 15:10:07',279.636000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1972,2,2,'2019-08-21 15:10:07',280.501000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1973,2,2,'2019-08-21 15:10:07',280.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1974,2,2,'2019-08-21 15:10:07',281.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1975,2,2,'2019-08-21 15:10:07',281.608000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1976,2,2,'2019-08-21 15:10:07',282.100000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1977,2,2,'2019-08-21 15:10:07',283.032000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1978,2,2,'2019-08-21 15:10:07',283.897000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1979,2,2,'2019-08-21 15:10:07',284.335000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1980,2,2,'2019-08-21 15:10:07',284.880000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1981,2,2,'2019-08-21 15:10:07',285.193000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1982,2,2,'2019-08-21 15:10:07',285.846000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1983,2,2,'2019-08-21 15:10:07',286.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1984,2,2,'2019-08-21 15:10:07',287.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1985,2,2,'2019-08-21 15:10:07',288.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1986,2,2,'2019-08-21 15:10:07',289.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1987,2,2,'2019-08-21 15:10:07',290.357000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1988,2,2,'2019-08-21 15:10:07',290.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1989,2,2,'2019-08-21 15:10:07',291.223000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1990,2,2,'2019-08-21 15:10:07',292.188000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1991,2,2,'2019-08-21 15:10:07',292.523000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1992,2,2,'2019-08-21 15:10:07',293.038000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1993,2,2,'2019-08-21 15:10:07',293.986000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1994,2,2,'2019-08-21 15:10:07',294.320000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1995,2,2,'2019-08-21 15:10:07',294.919000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1996,2,2,'2019-08-21 15:10:07',295.802000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1997,2,2,'2019-08-21 15:10:07',296.700000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1998,2,2,'2019-08-21 15:10:07',297.128000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (1999,2,2,'2019-08-21 15:10:07',297.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2000,2,2,'2019-08-21 15:10:07',312.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2001,2,2,'2019-08-21 15:10:07',363.214000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2002,2,2,'2019-08-21 15:10:07',363.692000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2003,2,2,'2019-08-21 15:10:07',364.012000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2004,2,2,'2019-08-21 15:10:07',364.928000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2005,2,2,'2019-08-21 15:10:07',365.859000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2006,2,2,'2019-08-21 15:10:07',366.792000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2007,2,2,'2019-08-21 15:10:07',367.625000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2008,2,2,'2019-08-21 15:10:07',368.014000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2009,2,2,'2019-08-21 15:10:07',368.557000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2010,2,2,'2019-08-21 15:10:07',369.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2011,2,2,'2019-08-21 15:10:07',370.455000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2012,2,2,'2019-08-21 15:10:07',371.254000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2013,2,2,'2019-08-21 15:10:07',371.668000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2014,2,2,'2019-08-21 15:10:07',372.036000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2015,2,2,'2019-08-21 15:10:07',372.802000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2016,2,2,'2019-08-21 15:10:07',373.213000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2017,2,2,'2019-08-21 15:10:07',373.602000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2018,2,2,'2019-08-21 15:10:07',374.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2019,2,2,'2019-08-21 15:10:07',375.149000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2020,2,2,'2019-08-21 15:10:07',375.515000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2021,2,2,'2019-08-21 15:10:07',376.032000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2022,2,2,'2019-08-21 15:10:07',376.323000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2023,2,2,'2019-08-21 15:10:07',376.981000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2024,2,2,'2019-08-21 15:10:07',377.946000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2025,2,2,'2019-08-21 15:10:07',378.796000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2026,2,2,'2019-08-21 15:10:07',379.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2027,2,2,'2019-08-21 15:10:07',379.778000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2028,2,2,'2019-08-21 15:10:07',380.693000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2029,2,2,'2019-08-21 15:10:07',381.493000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2030,2,2,'2019-08-21 15:10:07',382.475000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2031,2,2,'2019-08-21 15:10:07',383.407000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2032,2,2,'2019-08-21 15:10:07',383.683000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2033,2,2,'2019-08-21 15:10:07',384.307000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2034,2,2,'2019-08-21 15:10:07',384.662000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2035,2,2,'2019-08-21 15:10:07',385.238000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2036,2,2,'2019-08-21 15:10:07',385.591000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2037,2,2,'2019-08-21 15:10:07',386.038000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2038,2,2,'2019-08-21 15:10:07',387.037000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2039,2,2,'2019-08-21 15:10:07',387.985000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2040,2,2,'2019-08-21 15:10:07',388.918000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2041,2,2,'2019-08-21 15:10:07',389.684000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2042,2,2,'2019-08-21 15:10:07',390.114000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2043,2,2,'2019-08-21 15:10:07',390.566000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2044,2,2,'2019-08-21 15:10:07',390.912000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2045,2,2,'2019-08-21 15:10:07',391.349000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2046,2,2,'2019-08-21 15:10:07',392.265000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2047,2,2,'2019-08-21 15:10:07',393.113000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2048,2,2,'2019-08-21 15:10:07',393.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2049,2,2,'2019-08-21 15:10:07',394.762000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2050,2,2,'2019-08-21 15:10:07',395.223000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2051,2,2,'2019-08-21 15:10:07',395.610000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2052,2,2,'2019-08-21 15:10:07',396.526000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2053,2,2,'2019-08-21 15:10:07',396.970000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2054,2,2,'2019-08-21 15:10:07',397.509000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2055,2,2,'2019-08-21 15:10:07',398.324000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2056,2,2,'2019-08-21 15:10:07',399.207000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2057,2,2,'2019-08-21 15:10:07',400.206000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2058,2,2,'2019-08-21 15:10:07',401.088000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2059,2,2,'2019-08-21 15:10:07',402.070000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2060,2,2,'2019-08-21 15:10:07',402.986000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2061,2,2,'2019-08-21 15:10:07',403.400000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2062,2,2,'2019-08-21 15:10:07',403.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2063,2,2,'2019-08-21 15:10:07',404.329000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2064,2,2,'2019-08-21 15:10:07',404.950000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2065,2,2,'2019-08-21 15:10:07',405.767000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2066,2,2,'2019-08-21 15:10:07',406.532000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2067,2,2,'2019-08-21 15:10:07',407.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2068,2,2,'2019-08-21 15:10:07',407.873000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2069,2,2,'2019-08-21 15:10:07',408.113000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2070,2,2,'2019-08-21 15:10:07',408.408000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2071,2,2,'2019-08-21 15:10:07',408.930000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2072,2,2,'2019-08-21 15:10:07',409.795000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2073,2,2,'2019-08-21 15:10:07',410.761000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2074,2,2,'2019-08-21 15:10:07',411.235000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2075,2,2,'2019-08-21 15:10:07',411.627000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2076,2,2,'2019-08-21 15:10:07',411.892000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2077,2,2,'2019-08-21 15:10:07',412.608000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2078,2,2,'2019-08-21 15:10:07',413.541000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2079,2,2,'2019-08-21 15:10:07',414.424000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2080,2,2,'2019-08-21 15:10:07',415.256000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2081,2,2,'2019-08-21 15:10:07',416.222000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2082,2,2,'2019-08-21 15:10:07',417.021000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2083,2,2,'2019-08-21 15:10:07',417.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2084,2,2,'2019-08-21 15:10:07',417.836000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2085,2,2,'2019-08-21 15:10:07',418.110000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2086,2,2,'2019-08-21 15:10:07',418.752000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2087,2,2,'2019-08-21 15:10:07',419.751000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2088,2,2,'2019-08-21 15:10:07',420.566000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2089,2,2,'2019-08-21 15:10:07',421.565000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2090,2,2,'2019-08-21 15:10:07',421.917000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2091,2,2,'2019-08-21 15:10:07',422.415000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2092,2,2,'2019-08-21 15:10:07',423.197000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2093,2,2,'2019-08-21 15:10:07',423.673000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2094,2,2,'2019-08-21 15:10:07',424.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2095,2,2,'2019-08-21 15:10:07',424.995000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2096,2,2,'2019-08-21 15:10:07',425.911000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2097,2,2,'2019-08-21 15:10:07',426.910000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2098,2,2,'2019-08-21 15:10:07',427.842000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2099,2,2,'2019-08-21 15:10:07',428.196000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2100,2,2,'2019-08-21 15:10:07',428.824000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2101,2,2,'2019-08-21 15:10:07',429.773000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2102,2,2,'2019-08-21 15:10:07',430.539000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2103,2,2,'2019-08-21 15:10:07',431.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2104,2,2,'2019-08-21 15:10:07',431.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2105,2,2,'2019-08-21 15:10:07',432.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2106,2,2,'2019-08-21 15:10:07',432.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2107,2,2,'2019-08-21 15:10:07',433.153000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2108,2,2,'2019-08-21 15:10:07',433.437000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2109,2,2,'2019-08-21 15:10:07',434.152000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2110,2,2,'2019-08-21 15:10:07',435.018000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2111,2,2,'2019-08-21 15:10:07',435.833000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2112,2,2,'2019-08-21 15:10:07',436.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2113,2,2,'2019-08-21 15:10:07',437.432000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2114,2,2,'2019-08-21 15:10:07',437.817000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2115,2,2,'2019-08-21 15:10:07',438.431000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2116,2,2,'2019-08-21 15:10:07',439.396000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2117,2,2,'2019-08-21 15:10:07',440.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2118,2,2,'2019-08-21 15:10:07',440.745000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2119,2,2,'2019-08-21 15:10:07',441.145000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2120,2,2,'2019-08-21 15:10:07',442.026000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2121,2,2,'2019-08-21 15:10:07',442.893000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2122,2,2,'2019-08-21 15:10:07',443.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2123,2,2,'2019-08-21 15:10:07',444.168000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2124,2,2,'2019-08-21 15:10:07',444.574000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2125,2,2,'2019-08-21 15:10:07',444.828000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2126,2,2,'2019-08-21 15:10:07',445.439000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2127,2,2,'2019-08-21 15:10:07',446.222000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2128,2,2,'2019-08-21 15:10:07',447.088000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2129,2,2,'2019-08-21 15:10:07',448.054000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2130,2,2,'2019-08-21 15:10:07',448.408000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2131,2,2,'2019-08-21 15:10:07',448.919000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2132,2,2,'2019-08-21 15:10:07',449.115000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2133,2,2,'2019-08-21 15:10:07',449.802000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2134,2,2,'2019-08-21 15:10:07',450.667000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2135,2,2,'2019-08-21 15:10:07',451.500000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2136,2,2,'2019-08-21 15:10:07',451.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2137,2,2,'2019-08-21 15:10:07',452.398000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2138,2,2,'2019-08-21 15:10:07',453.164000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2139,2,2,'2019-08-21 15:10:07',453.964000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2140,2,2,'2019-08-21 15:10:07',454.912000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2141,2,2,'2019-08-21 15:10:07',455.294000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2142,2,2,'2019-08-21 15:10:07',455.679000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2143,2,2,'2019-08-21 15:10:07',456.011000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2144,2,2,'2019-08-21 15:10:07',456.627000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2145,2,2,'2019-08-21 15:10:07',457.510000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2146,2,2,'2019-08-21 15:10:07',458.325000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2147,2,2,'2019-08-21 15:10:07',458.757000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2148,2,2,'2019-08-21 15:10:07',459.208000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2149,2,2,'2019-08-21 15:10:07',460.190000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2150,2,2,'2019-08-21 15:10:07',461.122000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2151,2,2,'2019-08-21 15:10:07',462.121000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2152,2,2,'2019-08-21 15:10:07',463.054000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2153,2,2,'2019-08-21 15:10:07',463.411000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2154,2,2,'2019-08-21 15:10:07',463.819000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2155,2,2,'2019-08-21 15:10:07',464.769000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2156,2,2,'2019-08-21 15:10:07',465.634000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2157,2,2,'2019-08-21 15:10:07',466.550000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2158,2,2,'2019-08-21 15:10:07',467.005000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2159,2,2,'2019-08-21 15:10:07',467.349000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2160,2,2,'2019-08-21 15:10:07',467.701000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2161,2,2,'2019-08-21 15:10:07',468.231000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2162,2,2,'2019-08-21 15:10:07',469.113000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2163,2,2,'2019-08-21 15:10:07',469.609000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2164,2,2,'2019-08-21 15:10:07',470.096000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2165,2,2,'2019-08-21 15:10:07',470.929000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2166,2,2,'2019-08-21 15:10:07',471.794000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2167,2,2,'2019-08-21 15:10:07',472.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2168,2,2,'2019-08-21 15:10:07',472.727000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2169,2,2,'2019-08-21 15:10:07',473.726000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2170,2,2,'2019-08-21 15:10:07',474.708000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2171,2,2,'2019-08-21 15:10:07',475.082000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2172,2,2,'2019-08-21 15:10:07',475.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2173,2,2,'2019-08-21 15:10:07',476.473000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2174,2,2,'2019-08-21 15:10:07',477.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2175,2,2,'2019-08-21 15:10:07',478.387000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2176,2,2,'2019-08-21 15:10:07',478.777000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2177,2,2,'2019-08-21 15:10:07',479.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2178,2,2,'2019-08-21 15:10:07',480.168000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2179,2,2,'2019-08-21 15:10:07',480.685000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2180,2,2,'2019-08-21 15:10:07',480.951000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2181,2,2,'2019-08-21 15:10:07',481.866000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2182,2,2,'2019-08-21 15:10:07',482.482000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2183,2,2,'2019-08-21 15:10:07',482.799000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2184,2,2,'2019-08-21 15:10:07',483.581000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2185,2,2,'2019-08-21 15:10:07',484.414000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2186,2,2,'2019-08-21 15:10:07',485.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2187,2,2,'2019-08-21 15:10:07',485.673000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2188,2,2,'2019-08-21 15:10:07',486.012000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2189,2,2,'2019-08-21 15:10:07',486.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2190,2,2,'2019-08-21 15:10:07',487.760000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2191,2,2,'2019-08-21 15:10:07',488.136000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2192,2,2,'2019-08-21 15:10:07',488.742000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2193,2,2,'2019-08-21 15:10:07',489.558000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2194,2,2,'2019-08-21 15:10:07',490.374000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2195,2,2,'2019-08-21 15:10:07',491.173000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2196,2,2,'2019-08-21 15:10:07',492.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2197,2,2,'2019-08-21 15:10:07',492.507000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2198,2,2,'2019-08-21 15:10:07',492.871000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2199,2,2,'2019-08-21 15:10:07',493.687000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2200,2,2,'2019-08-21 15:10:07',494.163000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2201,2,2,'2019-08-21 15:10:07',494.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2202,2,2,'2019-08-21 15:10:07',495.302000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2203,2,2,'2019-08-21 15:10:07',496.084000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2204,2,2,'2019-08-21 15:10:07',496.983000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2205,2,2,'2019-08-21 15:10:07',497.312000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2206,2,2,'2019-08-21 15:10:07',497.982000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2207,2,2,'2019-08-21 15:10:07',498.848000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2208,2,2,'2019-08-21 15:10:07',499.160000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2209,2,2,'2019-08-21 15:10:07',499.730000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2210,2,2,'2019-08-21 15:10:07',500.579000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2211,2,2,'2019-08-21 15:10:07',501.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2212,2,2,'2019-08-21 15:10:07',501.886000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2213,2,2,'2019-08-21 15:10:07',502.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2214,2,2,'2019-08-21 15:10:07',503.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2215,2,2,'2019-08-21 15:10:07',504.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2216,2,2,'2019-08-21 15:10:07',504.410000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2217,2,2,'2019-08-21 15:10:07',505.024000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2218,2,2,'2019-08-21 15:10:07',506.023000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2219,2,2,'2019-08-21 15:10:07',506.923000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2220,2,2,'2019-08-21 15:10:07',507.257000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2221,2,2,'2019-08-21 15:10:07',507.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2222,2,2,'2019-08-21 15:10:07',508.937000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2223,2,2,'2019-08-21 15:10:07',509.753000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2224,2,2,'2019-08-21 15:10:07',510.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2225,2,2,'2019-08-21 15:10:07',510.982000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2226,2,2,'2019-08-21 15:10:07',511.484000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2227,2,2,'2019-08-21 15:10:07',512.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2228,2,2,'2019-08-21 15:10:07',512.881000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2229,2,2,'2019-08-21 15:10:07',513.398000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2230,2,2,'2019-08-21 15:10:07',513.810000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2231,2,2,'2019-08-21 15:10:07',514.381000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2232,2,2,'2019-08-21 15:10:07',515.380000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2233,2,2,'2019-08-21 15:10:07',516.179000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2234,2,2,'2019-08-21 15:10:07',517.062000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2235,2,2,'2019-08-21 15:10:07',517.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2236,2,2,'2019-08-21 15:10:07',518.027000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2237,2,2,'2019-08-21 15:10:07',518.859000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2238,2,2,'2019-08-21 15:10:07',519.842000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2239,2,2,'2019-08-21 15:10:07',520.220000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2240,2,2,'2019-08-21 15:10:07',520.607000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2241,2,2,'2019-08-21 15:10:07',521.423000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2242,2,2,'2019-08-21 15:10:07',522.405000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2243,2,2,'2019-08-21 15:10:07',522.765000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2244,2,2,'2019-08-21 15:10:07',523.321000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2245,2,2,'2019-08-21 15:10:07',524.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2246,2,2,'2019-08-21 15:10:07',525.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2247,2,2,'2019-08-21 15:10:07',525.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2248,2,2,'2019-08-21 15:10:07',526.187000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2249,2,2,'2019-08-21 15:10:07',526.817000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2250,2,2,'2019-08-21 15:10:07',527.800000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2251,2,2,'2019-08-21 15:10:07',528.665000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2252,2,2,'2019-08-21 15:10:07',529.465000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2253,2,2,'2019-08-21 15:10:07',529.892000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2254,2,2,'2019-08-21 15:10:07',530.380000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2255,2,2,'2019-08-21 15:10:07',531.246000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2256,2,2,'2019-08-21 15:10:07',531.689000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2257,2,2,'2019-08-21 15:10:07',532.195000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2258,2,2,'2019-08-21 15:10:07',533.094000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2259,2,2,'2019-08-21 15:10:07',534.060000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2260,2,2,'2019-08-21 15:10:07',534.526000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2261,2,2,'2019-08-21 15:10:07',534.908000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2262,2,2,'2019-08-21 15:10:07',535.857000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2263,2,2,'2019-08-21 15:10:07',536.191000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2264,2,2,'2019-08-21 15:10:07',536.807000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2265,2,2,'2019-08-21 15:10:07',537.739000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2266,2,2,'2019-08-21 15:10:07',538.571000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2267,2,2,'2019-08-21 15:10:07',539.504000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2268,2,2,'2019-08-21 15:10:07',540.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2269,2,2,'2019-08-21 15:10:07',541.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2270,2,2,'2019-08-21 15:10:07',541.946000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2271,2,2,'2019-08-21 15:10:07',542.334000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2272,2,2,'2019-08-21 15:10:07',543.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2273,2,2,'2019-08-21 15:10:07',543.582000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2274,2,2,'2019-08-21 15:10:07',543.882000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2275,2,2,'2019-08-21 15:10:07',544.731000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2276,2,2,'2019-08-21 15:10:07',545.714000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2277,2,2,'2019-08-21 15:10:07',546.662000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2278,2,2,'2019-08-21 15:10:07',547.578000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2279,2,2,'2019-08-21 15:10:07',547.984000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2280,2,2,'2019-08-21 15:10:07',548.494000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2281,2,2,'2019-08-21 15:10:07',548.893000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2282,2,2,'2019-08-21 15:10:07',549.442000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2283,2,2,'2019-08-21 15:10:07',550.259000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2284,2,2,'2019-08-21 15:10:07',551.190000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2285,2,2,'2019-08-21 15:10:07',552.156000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2286,2,2,'2019-08-21 15:10:07',552.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2287,2,2,'2019-08-21 15:10:07',553.365000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2288,2,2,'2019-08-21 15:10:07',553.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2289,2,2,'2019-08-21 15:10:07',554.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2290,2,2,'2019-08-21 15:10:07',554.570000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2291,2,2,'2019-08-21 15:10:07',555.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2292,2,2,'2019-08-21 15:10:07',556.352000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2293,2,2,'2019-08-21 15:10:07',557.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2294,2,2,'2019-08-21 15:10:07',557.848000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2295,2,2,'2019-08-21 15:10:07',558.184000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2296,2,2,'2019-08-21 15:10:07',558.555000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2297,2,2,'2019-08-21 15:10:07',559.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2298,2,2,'2019-08-21 15:10:07',560.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2299,2,2,'2019-08-21 15:10:07',561.130000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2300,2,2,'2019-08-21 15:10:07',561.929000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2301,2,2,'2019-08-21 15:10:07',562.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2302,2,2,'2019-08-21 15:10:07',562.712000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2303,2,2,'2019-08-21 15:10:07',562.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2304,2,2,'2019-08-21 15:10:07',563.693000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2305,2,2,'2019-08-21 15:10:07',564.692000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2306,2,2,'2019-08-21 15:10:07',565.459000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2307,2,2,'2019-08-21 15:10:07',565.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2308,2,2,'2019-08-21 15:10:07',566.440000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2309,2,2,'2019-08-21 15:10:07',566.731000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2310,2,2,'2019-08-21 15:10:07',567.406000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2311,2,2,'2019-08-21 15:10:07',568.239000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2312,2,2,'2019-08-21 15:10:07',569.204000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2313,2,2,'2019-08-21 15:10:07',570.004000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2314,2,2,'2019-08-21 15:10:07',570.770000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2315,2,2,'2019-08-21 15:10:07',571.552000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2316,2,2,'2019-08-21 15:10:07',572.401000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2317,2,2,'2019-08-21 15:10:07',573.283000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2318,2,2,'2019-08-21 15:10:07',573.759000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2319,2,2,'2019-08-21 15:10:07',574.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2320,2,2,'2019-08-21 15:10:07',574.516000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2321,2,2,'2019-08-21 15:10:07',575.182000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2322,2,2,'2019-08-21 15:10:07',576.030000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2323,2,2,'2019-08-21 15:10:07',576.996000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2324,2,2,'2019-08-21 15:10:07',577.929000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2325,2,2,'2019-08-21 15:10:07',578.321000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2326,2,2,'2019-08-21 15:10:07',578.711000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2327,2,2,'2019-08-21 15:10:07',579.008000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2328,2,2,'2019-08-21 15:10:07',579.477000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2329,2,2,'2019-08-21 15:10:07',580.309000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2330,2,2,'2019-08-21 15:10:07',581.274000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2331,2,2,'2019-08-21 15:10:07',581.613000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2332,2,2,'2019-08-21 15:10:07',582.124000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2333,2,2,'2019-08-21 15:10:07',583.123000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2334,2,2,'2019-08-21 15:10:07',584.071000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2335,2,2,'2019-08-21 15:10:07',585.070000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2336,2,2,'2019-08-21 15:10:07',585.601000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2337,2,2,'2019-08-21 15:10:07',585.920000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2338,2,2,'2019-08-21 15:10:07',586.735000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2339,2,2,'2019-08-21 15:10:07',587.501000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2340,2,2,'2019-08-21 15:10:07',588.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2341,2,2,'2019-08-21 15:10:07',588.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2342,2,2,'2019-08-21 15:10:07',589.199000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2343,2,2,'2019-08-21 15:10:07',590.031000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2344,2,2,'2019-08-21 15:10:07',590.914000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2345,2,2,'2019-08-21 15:10:07',591.274000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2346,2,2,'2019-08-21 15:10:07',591.680000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2347,2,2,'2019-08-21 15:10:07',592.462000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2348,2,2,'2019-08-21 15:10:07',593.361000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2349,2,2,'2019-08-21 15:10:07',594.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2350,2,2,'2019-08-21 15:10:07',594.949000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2351,2,2,'2019-08-21 15:10:07',595.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2352,2,2,'2019-08-21 15:10:07',595.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2353,2,2,'2019-08-21 15:10:07',596.108000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2354,2,2,'2019-08-21 15:10:07',596.874000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2355,2,2,'2019-08-21 15:10:07',597.372000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2356,2,2,'2019-08-21 15:10:07',597.890000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2357,2,2,'2019-08-21 15:10:07',598.889000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2358,2,2,'2019-08-21 15:10:07',599.771000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2359,2,2,'2019-08-21 15:10:07',600.653000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2360,2,2,'2019-08-21 15:10:07',601.310000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2361,2,2,'2019-08-21 15:10:07',601.452000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2362,2,2,'2019-08-21 15:10:07',602.368000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2363,2,2,'2019-08-21 15:10:07',603.234000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2364,2,2,'2019-08-21 15:10:07',604.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2365,2,2,'2019-08-21 15:10:07',605.182000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2366,2,2,'2019-08-21 15:10:07',605.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2367,2,2,'2019-08-21 15:10:07',606.448000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2368,2,2,'2019-08-21 15:10:07',606.813000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2369,2,2,'2019-08-21 15:10:07',607.175000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2370,2,2,'2019-08-21 15:10:07',607.796000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2371,2,2,'2019-08-21 15:10:07',608.611000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2372,2,2,'2019-08-21 15:10:07',609.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2373,2,2,'2019-08-21 15:10:07',609.527000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2374,2,2,'2019-08-21 15:10:07',610.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2375,2,2,'2019-08-21 15:10:07',610.739000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2376,2,2,'2019-08-21 15:10:07',611.209000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2377,2,2,'2019-08-21 15:10:07',612.041000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2378,2,2,'2019-08-21 15:10:07',612.906000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2379,2,2,'2019-08-21 15:10:07',613.689000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2380,2,2,'2019-08-21 15:10:07',614.638000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2381,2,2,'2019-08-21 15:10:07',615.620000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2382,2,2,'2019-08-21 15:10:07',616.049000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2383,2,2,'2019-08-21 15:10:07',616.619000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2384,2,2,'2019-08-21 15:10:07',617.079000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2385,2,2,'2019-08-21 15:10:07',617.635000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2386,2,2,'2019-08-21 15:10:07',618.617000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2387,2,2,'2019-08-21 15:10:07',619.007000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2388,2,2,'2019-08-21 15:10:07',619.566000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2389,2,2,'2019-08-21 15:10:07',620.382000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2390,2,2,'2019-08-21 15:10:07',620.845000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2391,2,2,'2019-08-21 15:10:07',621.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2392,2,2,'2019-08-21 15:10:07',622.063000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2393,2,2,'2019-08-21 15:10:07',622.829000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2394,2,2,'2019-08-21 15:10:07',623.679000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2395,2,2,'2019-08-21 15:10:07',624.627000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2396,2,2,'2019-08-21 15:10:07',625.055000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2397,2,2,'2019-08-21 15:10:07',625.427000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2398,2,2,'2019-08-21 15:10:07',626.325000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2399,2,2,'2019-08-21 15:10:07',627.258000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2400,2,2,'2019-08-21 15:10:07',627.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2401,2,2,'2019-08-21 15:10:07',628.240000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2402,2,2,'2019-08-21 15:10:07',641.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2403,2,2,'2019-08-21 15:10:07',664.416000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2404,2,2,'2019-08-21 15:10:07',664.910000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2405,2,2,'2019-08-21 15:10:07',665.182000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2406,2,2,'2019-08-21 15:10:07',666.063000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2407,2,2,'2019-08-21 15:10:07',667.013000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2408,2,2,'2019-08-21 15:10:07',667.846000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2409,2,2,'2019-08-21 15:10:07',668.182000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2410,2,2,'2019-08-21 15:10:07',668.711000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2411,2,2,'2019-08-21 15:10:07',669.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2412,2,2,'2019-08-21 15:10:07',670.742000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2413,2,2,'2019-08-21 15:10:07',671.675000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2414,2,2,'2019-08-21 15:10:07',672.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2415,2,2,'2019-08-21 15:10:07',673.539000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2416,2,2,'2019-08-21 15:10:07',673.825000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2417,2,2,'2019-08-21 15:10:07',674.455000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2418,2,2,'2019-08-21 15:10:07',674.784000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2419,2,2,'2019-08-21 15:10:07',675.320000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2420,2,2,'2019-08-21 15:10:07',676.220000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2421,2,2,'2019-08-21 15:10:07',677.035000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2422,2,2,'2019-08-21 15:10:07',678.034000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2423,2,2,'2019-08-21 15:10:07',678.397000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2424,2,2,'2019-08-21 15:10:07',679.017000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2425,2,2,'2019-08-21 15:10:07',679.307000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2426,2,2,'2019-08-21 15:10:07',679.915000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2427,2,2,'2019-08-21 15:10:07',680.848000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2428,2,2,'2019-08-21 15:10:07',681.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2429,2,2,'2019-08-21 15:10:07',681.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2430,2,2,'2019-08-21 15:10:07',682.812000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2431,2,2,'2019-08-21 15:10:07',683.628000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2432,2,2,'2019-08-21 15:10:07',684.410000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2433,2,2,'2019-08-21 15:10:07',684.778000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2434,2,2,'2019-08-21 15:10:07',685.210000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2435,2,2,'2019-08-21 15:10:07',686.108000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2436,2,2,'2019-08-21 15:10:07',687.008000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2437,2,2,'2019-08-21 15:10:07',687.790000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2438,2,2,'2019-08-21 15:10:07',688.150000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2439,2,2,'2019-08-21 15:10:07',688.689000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2440,2,2,'2019-08-21 15:10:07',689.019000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2441,2,2,'2019-08-21 15:10:07',689.505000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2442,2,2,'2019-08-21 15:10:07',690.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2443,2,2,'2019-08-21 15:10:07',691.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2444,2,2,'2019-08-21 15:10:07',691.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2445,2,2,'2019-08-21 15:10:07',692.086000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2446,2,2,'2019-08-21 15:10:07',692.984000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2447,2,2,'2019-08-21 15:10:07',693.867000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2448,2,2,'2019-08-21 15:10:07',694.850000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2449,2,2,'2019-08-21 15:10:07',695.632000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2450,2,2,'2019-08-21 15:10:07',696.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2451,2,2,'2019-08-21 15:10:07',696.480000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2452,2,2,'2019-08-21 15:10:07',697.396000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2453,2,2,'2019-08-21 15:10:07',698.362000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2454,2,2,'2019-08-21 15:10:07',698.710000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2455,2,2,'2019-08-21 15:10:07',699.211000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2456,2,2,'2019-08-21 15:10:07',700.210000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2457,2,2,'2019-08-21 15:10:07',700.557000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2458,2,2,'2019-08-21 15:10:07',701.076000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2459,2,2,'2019-08-21 15:10:07',701.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2460,2,2,'2019-08-21 15:10:07',702.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2461,2,2,'2019-08-21 15:10:07',703.706000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2462,2,2,'2019-08-21 15:10:07',704.080000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2463,2,2,'2019-08-21 15:10:07',704.622000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2464,2,2,'2019-08-21 15:10:07',705.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2465,2,2,'2019-08-21 15:10:07',706.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2466,2,2,'2019-08-21 15:10:07',706.520000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2467,2,2,'2019-08-21 15:10:07',707.502000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2468,2,2,'2019-08-21 15:10:07',708.269000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2469,2,2,'2019-08-21 15:10:07',709.167000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2470,2,2,'2019-08-21 15:10:07',709.471000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2471,2,2,'2019-08-21 15:10:07',709.949000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2472,2,2,'2019-08-21 15:10:07',710.815000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2473,2,2,'2019-08-21 15:10:07',711.581000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2474,2,2,'2019-08-21 15:10:07',711.884000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2475,2,2,'2019-08-21 15:10:07',712.514000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2476,2,2,'2019-08-21 15:10:07',712.944000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2477,2,2,'2019-08-21 15:10:07',713.412000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2478,2,2,'2019-08-21 15:10:07',713.722000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2479,2,2,'2019-08-21 15:10:07',714.278000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2480,2,2,'2019-08-21 15:10:07',715.144000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2481,2,2,'2019-08-21 15:10:07',715.909000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2482,2,2,'2019-08-21 15:10:07',716.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2483,2,2,'2019-08-21 15:10:07',717.558000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2484,2,2,'2019-08-21 15:10:07',717.991000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2485,2,2,'2019-08-21 15:10:07',718.340000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2486,2,2,'2019-08-21 15:10:07',719.140000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2487,2,2,'2019-08-21 15:10:07',719.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2488,2,2,'2019-08-21 15:10:07',720.737000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2489,2,2,'2019-08-21 15:10:07',721.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2490,2,2,'2019-08-21 15:10:07',721.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2491,2,2,'2019-08-21 15:10:07',722.519000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2492,2,2,'2019-08-21 15:10:07',722.868000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2493,2,2,'2019-08-21 15:10:07',723.418000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2494,2,2,'2019-08-21 15:10:07',724.250000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2495,2,2,'2019-08-21 15:10:07',724.624000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2496,2,2,'2019-08-21 15:10:07',725.033000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2497,2,2,'2019-08-21 15:10:07',726.032000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2498,2,2,'2019-08-21 15:10:07',726.997000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2499,2,2,'2019-08-21 15:10:07',727.896000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2500,2,2,'2019-08-21 15:10:07',728.289000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2501,2,2,'2019-08-21 15:10:07',728.796000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2502,2,2,'2019-08-21 15:10:07',729.661000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2503,2,2,'2019-08-21 15:10:07',730.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2504,2,2,'2019-08-21 15:10:07',731.326000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2505,2,2,'2019-08-21 15:10:07',732.275000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2506,2,2,'2019-08-21 15:10:07',732.579000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2507,2,2,'2019-08-21 15:10:07',733.058000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2508,2,2,'2019-08-21 15:10:07',733.923000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2509,2,2,'2019-08-21 15:10:07',734.889000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2510,2,2,'2019-08-21 15:10:07',735.295000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2511,2,2,'2019-08-21 15:10:07',735.788000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2512,2,2,'2019-08-21 15:10:07',736.204000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2513,2,2,'2019-08-21 15:10:07',736.787000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2514,2,2,'2019-08-21 15:10:07',737.586000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2515,2,2,'2019-08-21 15:10:07',738.385000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2516,2,2,'2019-08-21 15:10:07',739.284000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2517,2,2,'2019-08-21 15:10:07',740.133000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2518,2,2,'2019-08-21 15:10:07',740.898000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2519,2,2,'2019-08-21 15:10:07',741.281000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2520,2,2,'2019-08-21 15:10:07',741.715000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2521,2,2,'2019-08-21 15:10:07',742.714000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2522,2,2,'2019-08-21 15:10:07',743.361000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2523,2,2,'2019-08-21 15:10:07',743.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2524,2,2,'2019-08-21 15:10:07',743.836000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2525,2,2,'2019-08-21 15:10:07',744.328000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2526,2,2,'2019-08-21 15:10:07',745.111000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2527,2,2,'2019-08-21 15:10:07',745.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2528,2,2,'2019-08-21 15:10:07',745.993000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2529,2,2,'2019-08-21 15:10:07',746.909000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2530,2,2,'2019-08-21 15:10:07',747.808000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2531,2,2,'2019-08-21 15:10:07',748.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2532,2,2,'2019-08-21 15:10:07',749.156000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2533,2,2,'2019-08-21 15:10:07',749.673000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2534,2,2,'2019-08-21 15:10:07',750.521000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2535,2,2,'2019-08-21 15:10:07',751.521000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2536,2,2,'2019-08-21 15:10:07',752.486000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2537,2,2,'2019-08-21 15:10:07',752.841000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2538,2,2,'2019-08-21 15:10:07',753.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2539,2,2,'2019-08-21 15:10:07',754.351000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2540,2,2,'2019-08-21 15:10:07',754.880000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2541,2,2,'2019-08-21 15:10:07',755.184000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2542,2,2,'2019-08-21 15:10:07',756.132000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2543,2,2,'2019-08-21 15:10:07',757.131000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2544,2,2,'2019-08-21 15:10:07',757.535000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2545,2,2,'2019-08-21 15:10:07',757.947000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2546,2,2,'2019-08-21 15:10:07',758.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2547,2,2,'2019-08-21 15:10:07',759.662000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2548,2,2,'2019-08-21 15:10:07',760.461000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2549,2,2,'2019-08-21 15:10:07',760.806000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2550,2,2,'2019-08-21 15:10:07',761.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2551,2,2,'2019-08-21 15:10:07',762.009000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2552,2,2,'2019-08-21 15:10:07',763.008000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2553,2,2,'2019-08-21 15:10:07',763.990000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2554,2,2,'2019-08-21 15:10:07',764.410000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2555,2,2,'2019-08-21 15:10:07',764.989000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2556,2,2,'2019-08-21 15:10:07',765.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2557,2,2,'2019-08-21 15:10:07',766.721000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2558,2,2,'2019-08-21 15:10:07',767.653000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2559,2,2,'2019-08-21 15:10:07',768.552000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2560,2,2,'2019-08-21 15:10:07',768.893000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2561,2,2,'2019-08-21 15:10:07',769.352000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2562,2,2,'2019-08-21 15:10:07',769.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2563,2,2,'2019-08-21 15:10:07',770.316000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2564,2,2,'2019-08-21 15:10:07',770.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2565,2,2,'2019-08-21 15:10:07',771.299000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2566,2,2,'2019-08-21 15:10:07',772.265000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2567,2,2,'2019-08-21 15:10:07',773.063000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2568,2,2,'2019-08-21 15:10:07',774.062000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2569,2,2,'2019-08-21 15:10:07',774.414000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2570,2,2,'2019-08-21 15:10:07',774.979000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2571,2,2,'2019-08-21 15:10:07',775.894000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2572,2,2,'2019-08-21 15:10:07',776.876000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2573,2,2,'2019-08-21 15:10:07',777.271000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2574,2,2,'2019-08-21 15:10:07',777.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2575,2,2,'2019-08-21 15:10:07',778.491000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2576,2,2,'2019-08-21 15:10:07',778.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2577,2,2,'2019-08-21 15:10:07',779.424000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2578,2,2,'2019-08-21 15:10:07',780.289000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2579,2,2,'2019-08-21 15:10:07',781.122000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2580,2,2,'2019-08-21 15:10:07',781.461000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2581,2,2,'2019-08-21 15:10:07',782.070000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2582,2,2,'2019-08-21 15:10:07',782.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2583,2,2,'2019-08-21 15:10:07',783.868000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2584,2,2,'2019-08-21 15:10:07',784.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2585,2,2,'2019-08-21 15:10:07',785.338000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2586,2,2,'2019-08-21 15:10:07',785.684000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2587,2,2,'2019-08-21 15:10:07',786.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2588,2,2,'2019-08-21 15:10:07',787.398000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2589,2,2,'2019-08-21 15:10:07',788.280000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2590,2,2,'2019-08-21 15:10:07',788.750000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2591,2,2,'2019-08-21 15:10:07',789.097000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2592,2,2,'2019-08-21 15:10:07',790.028000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2593,2,2,'2019-08-21 15:10:07',790.466000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2594,2,2,'2019-08-21 15:10:07',790.878000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2595,2,2,'2019-08-21 15:10:07',791.743000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2596,2,2,'2019-08-21 15:10:07',792.726000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2597,2,2,'2019-08-21 15:10:07',793.232000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2598,2,2,'2019-08-21 15:10:07',793.525000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2599,2,2,'2019-08-21 15:10:07',794.475000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2600,2,2,'2019-08-21 15:10:07',795.256000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2601,2,2,'2019-08-21 15:10:07',795.686000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2602,2,2,'2019-08-21 15:10:07',796.255000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2603,2,2,'2019-08-21 15:10:07',797.138000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2604,2,2,'2019-08-21 15:10:07',797.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2605,2,2,'2019-08-21 15:10:07',797.953000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2606,2,2,'2019-08-21 15:10:07',798.952000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2607,2,2,'2019-08-21 15:10:07',799.918000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2608,2,2,'2019-08-21 15:10:07',800.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2609,2,2,'2019-08-21 15:10:07',800.850000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2610,2,2,'2019-08-21 15:10:07',801.832000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2611,2,2,'2019-08-21 15:10:07',802.781000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2612,2,2,'2019-08-21 15:10:07',803.730000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2613,2,2,'2019-08-21 15:10:07',804.286000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2614,2,2,'2019-08-21 15:10:07',804.579000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2615,2,2,'2019-08-21 15:10:07',805.445000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2616,2,2,'2019-08-21 15:10:07',806.411000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2617,2,2,'2019-08-21 15:10:07',807.376000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2618,2,2,'2019-08-21 15:10:07',807.631000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2619,2,2,'2019-08-21 15:10:07',808.309000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2620,2,2,'2019-08-21 15:10:07',808.617000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2621,2,2,'2019-08-21 15:10:07',809.225000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2622,2,2,'2019-08-21 15:10:07',809.506000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2623,2,2,'2019-08-21 15:10:07',810.090000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2624,2,2,'2019-08-21 15:10:07',810.889000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2625,2,2,'2019-08-21 15:10:07',811.854000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2626,2,2,'2019-08-21 15:10:07',812.688000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2627,2,2,'2019-08-21 15:10:07',813.636000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2628,2,2,'2019-08-21 15:10:07',814.028000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2629,2,2,'2019-08-21 15:10:07',814.469000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2630,2,2,'2019-08-21 15:10:07',814.756000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2631,2,2,'2019-08-21 15:10:07',815.334000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2632,2,2,'2019-08-21 15:10:07',816.233000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2633,2,2,'2019-08-21 15:10:07',817.183000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2634,2,2,'2019-08-21 15:10:07',818.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2635,2,2,'2019-08-21 15:10:07',819.113000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2636,2,2,'2019-08-21 15:10:07',819.896000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2637,2,2,'2019-08-21 15:10:07',820.745000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2638,2,2,'2019-08-21 15:10:07',821.105000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2639,2,2,'2019-08-21 15:10:07',821.577000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2640,2,2,'2019-08-21 15:10:07',822.560000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2641,2,2,'2019-08-21 15:10:07',823.476000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2642,2,2,'2019-08-21 15:10:07',823.831000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2643,2,2,'2019-08-21 15:10:07',824.258000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2644,2,2,'2019-08-21 15:10:07',825.157000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2645,2,2,'2019-08-21 15:10:07',826.122000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2646,2,2,'2019-08-21 15:10:07',826.988000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2647,2,2,'2019-08-21 15:10:07',827.954000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2648,2,2,'2019-08-21 15:10:07',828.283000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2649,2,2,'2019-08-21 15:10:07',828.902000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2650,2,2,'2019-08-21 15:10:07',829.263000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2651,2,2,'2019-08-21 15:10:07',829.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2652,2,2,'2019-08-21 15:10:07',830.584000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2653,2,2,'2019-08-21 15:10:07',831.367000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2654,2,2,'2019-08-21 15:10:07',831.847000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2655,2,2,'2019-08-21 15:10:07',832.315000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2656,2,2,'2019-08-21 15:10:07',833.082000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2657,2,2,'2019-08-21 15:10:07',834.030000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2658,2,2,'2019-08-21 15:10:07',834.351000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2659,2,2,'2019-08-21 15:10:07',834.946000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2660,2,2,'2019-08-21 15:10:07',835.862000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2661,2,2,'2019-08-21 15:10:07',836.827000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2662,2,2,'2019-08-21 15:10:07',837.278000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2663,2,2,'2019-08-21 15:10:07',837.644000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2664,2,2,'2019-08-21 15:10:07',837.965000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2665,2,2,'2019-08-21 15:10:07',838.459000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2666,2,2,'2019-08-21 15:10:07',839.342000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2667,2,2,'2019-08-21 15:10:07',840.141000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2668,2,2,'2019-08-21 15:10:07',841.039000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2669,2,2,'2019-08-21 15:10:07',841.387000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2670,2,2,'2019-08-21 15:10:07',841.938000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2671,2,2,'2019-08-21 15:10:07',842.754000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2672,2,2,'2019-08-21 15:10:07',843.144000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2673,2,2,'2019-08-21 15:10:07',843.620000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2674,2,2,'2019-08-21 15:10:07',844.436000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2675,2,2,'2019-08-21 15:10:07',845.385000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2676,2,2,'2019-08-21 15:10:07',845.708000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2677,2,2,'2019-08-21 15:10:07',846.251000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2678,2,2,'2019-08-21 15:10:07',847.017000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2679,2,2,'2019-08-21 15:10:07',847.915000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2680,2,2,'2019-08-21 15:10:07',848.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2681,2,2,'2019-08-21 15:10:07',849.221000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2682,2,2,'2019-08-21 15:10:07',849.780000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2683,2,2,'2019-08-21 15:10:07',850.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2684,2,2,'2019-08-21 15:10:07',851.545000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2685,2,2,'2019-08-21 15:10:07',852.460000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2686,2,2,'2019-08-21 15:10:07',852.875000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2687,2,2,'2019-08-21 15:10:07',853.476000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2688,2,2,'2019-08-21 15:10:07',854.392000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2689,2,2,'2019-08-21 15:10:07',854.824000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2690,2,2,'2019-08-21 15:10:07',855.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2691,2,2,'2019-08-21 15:10:07',856.090000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2692,2,2,'2019-08-21 15:10:07',856.989000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2693,2,2,'2019-08-21 15:10:07',857.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2694,2,2,'2019-08-21 15:10:07',857.838000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2695,2,2,'2019-08-21 15:10:07',858.837000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2696,2,2,'2019-08-21 15:10:07',859.836000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2697,2,2,'2019-08-21 15:10:07',860.818000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2698,2,2,'2019-08-21 15:10:07',861.174000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2699,2,2,'2019-08-21 15:10:07',861.816000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2700,2,2,'2019-08-21 15:10:07',862.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2701,2,2,'2019-08-21 15:10:07',862.683000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2702,2,2,'2019-08-21 15:10:07',863.615000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2703,2,2,'2019-08-21 15:10:07',864.530000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2704,2,2,'2019-08-21 15:10:07',865.380000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2705,2,2,'2019-08-21 15:10:07',865.687000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2706,2,2,'2019-08-21 15:10:07',866.312000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2707,2,2,'2019-08-21 15:10:07',867.161000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2708,2,2,'2019-08-21 15:10:07',867.584000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2709,2,2,'2019-08-21 15:10:07',868.010000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2710,2,2,'2019-08-21 15:10:07',868.843000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2711,2,2,'2019-08-21 15:10:07',869.250000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2712,2,2,'2019-08-21 15:10:07',869.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2713,2,2,'2019-08-21 15:10:07',870.591000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2714,2,2,'2019-08-21 15:10:07',871.557000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2715,2,2,'2019-08-21 15:10:07',872.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2716,2,2,'2019-08-21 15:10:07',872.995000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2717,2,2,'2019-08-21 15:10:07',873.338000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2718,2,2,'2019-08-21 15:10:07',874.120000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2719,2,2,'2019-08-21 15:10:07',875.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2720,2,2,'2019-08-21 15:10:07',875.337000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2721,2,2,'2019-08-21 15:10:07',875.852000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2722,2,2,'2019-08-21 15:10:07',876.817000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2723,2,2,'2019-08-21 15:10:07',877.666000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2724,2,2,'2019-08-21 15:10:07',878.648000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2725,2,2,'2019-08-21 15:10:07',879.083000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2726,2,2,'2019-08-21 15:10:07',879.497000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2727,2,2,'2019-08-21 15:10:07',880.396000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2728,2,2,'2019-08-21 15:10:07',881.346000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2729,2,2,'2019-08-21 15:10:07',881.899000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2730,2,2,'2019-08-21 15:10:07',882.261000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2731,2,2,'2019-08-21 15:10:07',883.094000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2732,2,2,'2019-08-21 15:10:07',883.859000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2733,2,2,'2019-08-21 15:10:07',884.642000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2734,2,2,'2019-08-21 15:10:07',885.019000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2735,2,2,'2019-08-21 15:10:07',885.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2736,2,2,'2019-08-21 15:10:07',886.457000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2737,2,2,'2019-08-21 15:10:07',887.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2738,2,2,'2019-08-21 15:10:07',887.693000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2739,2,2,'2019-08-21 15:10:07',888.121000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2740,2,2,'2019-08-21 15:10:07',889.021000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2741,2,2,'2019-08-21 15:10:07',889.970000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2742,2,2,'2019-08-21 15:10:07',890.769000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2743,2,2,'2019-08-21 15:10:07',891.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2744,2,2,'2019-08-21 15:10:07',891.734000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2745,2,2,'2019-08-21 15:10:07',892.115000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2746,2,2,'2019-08-21 15:10:07',892.717000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2747,2,2,'2019-08-21 15:10:07',893.615000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2748,2,2,'2019-08-21 15:10:07',894.581000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2749,2,2,'2019-08-21 15:10:07',895.464000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2750,2,2,'2019-08-21 15:10:07',896.246000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2751,2,2,'2019-08-21 15:10:07',897.128000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2752,2,2,'2019-08-21 15:10:07',897.607000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2753,2,2,'2019-08-21 15:10:07',897.928000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2754,2,2,'2019-08-21 15:10:07',898.364000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2755,2,2,'2019-08-21 15:10:07',898.927000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2756,2,2,'2019-08-21 15:10:07',899.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2757,2,2,'2019-08-21 15:10:07',899.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2758,2,2,'2019-08-21 15:10:07',900.658000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2759,2,2,'2019-08-21 15:10:07',901.640000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2760,2,2,'2019-08-21 15:10:07',902.556000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2761,2,2,'2019-08-21 15:10:07',903.404000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2762,2,2,'2019-08-21 15:10:07',903.876000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2763,2,2,'2019-08-21 15:10:07',904.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2764,2,2,'2019-08-21 15:10:07',905.103000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2765,2,2,'2019-08-21 15:10:07',905.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2766,2,2,'2019-08-21 15:10:07',906.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2767,2,2,'2019-08-21 15:10:07',906.784000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2768,2,2,'2019-08-21 15:10:07',907.566000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2769,2,2,'2019-08-21 15:10:07',908.549000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2770,2,2,'2019-08-21 15:10:07',908.975000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2771,2,2,'2019-08-21 15:10:07',909.415000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2772,2,2,'2019-08-21 15:10:07',910.214000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2773,2,2,'2019-08-21 15:10:07',910.681000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2774,2,2,'2019-08-21 15:10:07',910.996000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2775,2,2,'2019-08-21 15:10:07',911.879000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2776,2,2,'2019-08-21 15:10:07',912.845000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2777,2,2,'2019-08-21 15:10:07',913.234000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2778,2,2,'2019-08-21 15:10:07',913.727000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2779,2,2,'2019-08-21 15:10:07',914.492000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2780,2,2,'2019-08-21 15:10:07',915.458000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2781,2,2,'2019-08-21 15:10:07',916.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2782,2,2,'2019-08-21 15:10:07',917.189000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2783,2,2,'2019-08-21 15:10:07',918.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2784,2,2,'2019-08-21 15:10:07',918.544000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2785,2,2,'2019-08-21 15:10:07',919.071000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2786,2,2,'2019-08-21 15:10:07',919.564000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2787,2,2,'2019-08-21 15:10:07',920.020000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2788,2,2,'2019-08-21 15:10:07',920.919000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2789,2,2,'2019-08-21 15:10:07',921.818000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2790,2,2,'2019-08-21 15:10:07',922.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2791,2,2,'2019-08-21 15:10:07',922.817000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2792,2,2,'2019-08-21 15:10:07',923.666000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2793,2,2,'2019-08-21 15:10:07',924.117000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2794,2,2,'2019-08-21 15:10:07',924.665000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2795,2,2,'2019-08-21 15:10:07',925.447000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2796,2,2,'2019-08-21 15:10:07',926.207000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2797,2,2,'2019-08-21 15:10:07',926.430000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2798,2,2,'2019-08-21 15:10:07',927.295000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2799,2,2,'2019-08-21 15:10:07',928.261000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2800,2,2,'2019-08-21 15:10:07',929.260000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2801,2,2,'2019-08-21 15:10:07',930.176000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2802,2,2,'2019-08-21 15:10:07',930.548000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2803,2,2,'2019-08-21 15:10:07',947.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2804,2,2,'2019-08-21 15:10:07',968.392000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2805,2,2,'2019-08-21 15:10:07',969.257000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2806,2,2,'2019-08-21 15:10:07',969.590000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2807,2,2,'2019-08-21 15:10:07',970.188000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2808,2,2,'2019-08-21 15:10:07',971.171000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2809,2,2,'2019-08-21 15:10:07',971.508000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2810,2,2,'2019-08-21 15:10:07',972.170000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2811,2,2,'2019-08-21 15:10:07',972.969000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2812,2,2,'2019-08-21 15:10:07',973.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2813,2,2,'2019-08-21 15:10:07',974.133000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2814,2,2,'2019-08-21 15:10:07',974.667000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2815,2,2,'2019-08-21 15:10:07',975.001000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2816,2,2,'2019-08-21 15:10:07',975.666000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2817,2,2,'2019-08-21 15:10:07',976.482000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2818,2,2,'2019-08-21 15:10:07',977.381000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2819,2,2,'2019-08-21 15:10:07',978.380000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2820,2,2,'2019-08-21 15:10:07',979.379000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2821,2,2,'2019-08-21 15:10:07',979.695000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2822,2,2,'2019-08-21 15:10:07',980.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2823,2,2,'2019-08-21 15:10:07',981.061000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2824,2,2,'2019-08-21 15:10:07',981.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2825,2,2,'2019-08-21 15:10:07',982.775000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2826,2,2,'2019-08-21 15:10:07',983.127000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2827,2,2,'2019-08-21 15:10:07',983.624000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2828,2,2,'2019-08-21 15:10:07',984.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2829,2,2,'2019-08-21 15:10:07',985.289000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2830,2,2,'2019-08-21 15:10:07',986.271000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2831,2,2,'2019-08-21 15:10:07',986.792000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2832,2,2,'2019-08-21 15:10:07',987.153000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2833,2,2,'2019-08-21 15:10:07',987.498000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2834,2,2,'2019-08-21 15:10:07',988.119000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2835,2,2,'2019-08-21 15:10:07',989.085000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2836,2,2,'2019-08-21 15:10:07',990.018000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2837,2,2,'2019-08-21 15:10:07',990.899000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2838,2,2,'2019-08-21 15:10:07',991.214000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2839,2,2,'2019-08-21 15:10:07',991.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2840,2,2,'2019-08-21 15:10:07',992.697000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2841,2,2,'2019-08-21 15:10:07',993.696000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2842,2,2,'2019-08-21 15:10:07',994.629000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2843,2,2,'2019-08-21 15:10:07',995.060000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2844,2,2,'2019-08-21 15:10:07',995.478000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2845,2,2,'2019-08-21 15:10:07',996.427000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2846,2,2,'2019-08-21 15:10:07',997.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2847,2,2,'2019-08-21 15:10:07',998.291000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2848,2,2,'2019-08-21 15:10:07',999.074000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2849,2,2,'2019-08-21 15:10:07',999.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2850,2,2,'2019-08-21 15:10:07',999.956000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2851,2,2,'2019-08-21 15:10:07',1000.340000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2852,2,2,'2019-08-21 15:10:07',1000.839000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2853,2,2,'2019-08-21 15:10:07',1001.218000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2854,2,2,'2019-08-21 15:10:07',1001.688000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2855,2,2,'2019-08-21 15:10:07',1002.604000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2856,2,2,'2019-08-21 15:10:07',1002.994000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2857,2,2,'2019-08-21 15:10:07',1003.485000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2858,2,2,'2019-08-21 15:10:07',1004.269000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2859,2,2,'2019-08-21 15:10:07',1005.117000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2860,2,2,'2019-08-21 15:10:07',1006.083000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2861,2,2,'2019-08-21 15:10:07',1007.032000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2862,2,2,'2019-08-21 15:10:07',1007.416000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2863,2,2,'2019-08-21 15:10:07',1007.947000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2864,2,2,'2019-08-21 15:10:07',1008.863000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2865,2,2,'2019-08-21 15:10:07',1009.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2866,2,2,'2019-08-21 15:10:07',1010.243000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2867,2,2,'2019-08-21 15:10:07',1010.778000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2868,2,2,'2019-08-21 15:10:07',1011.610000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2869,2,2,'2019-08-21 15:10:07',1012.426000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2870,2,2,'2019-08-21 15:10:07',1012.958000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2871,2,2,'2019-08-21 15:10:07',1013.309000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2872,2,2,'2019-08-21 15:10:07',1014.157000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2873,2,2,'2019-08-21 15:10:07',1014.543000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2874,2,2,'2019-08-21 15:10:07',1014.940000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2875,2,2,'2019-08-21 15:10:07',1015.938000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2876,2,2,'2019-08-21 15:10:07',1016.738000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2877,2,2,'2019-08-21 15:10:07',1017.179000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2878,2,2,'2019-08-21 15:10:07',1017.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2879,2,2,'2019-08-21 15:10:07',1018.520000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2880,2,2,'2019-08-21 15:10:07',1019.519000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2881,2,2,'2019-08-21 15:10:07',1020.518000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2882,2,2,'2019-08-21 15:10:07',1021.482000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2883,2,2,'2019-08-21 15:10:07',1021.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2884,2,2,'2019-08-21 15:10:07',1022.432000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2885,2,2,'2019-08-21 15:10:07',1023.348000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2886,2,2,'2019-08-21 15:10:07',1024.213000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2887,2,2,'2019-08-21 15:10:07',1024.669000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2888,2,2,'2019-08-21 15:10:07',1024.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2889,2,2,'2019-08-21 15:10:07',1026.011000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2890,2,2,'2019-08-21 15:10:07',1026.607000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2891,2,2,'2019-08-21 15:10:07',1026.877000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2892,2,2,'2019-08-21 15:10:07',1027.859000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2893,2,2,'2019-08-21 15:10:07',1028.825000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2894,2,2,'2019-08-21 15:10:07',1029.454000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2895,2,2,'2019-08-21 15:10:07',1029.641000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2896,2,2,'2019-08-21 15:10:07',1030.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2897,2,2,'2019-08-21 15:10:07',1031.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2898,2,2,'2019-08-21 15:10:07',1031.897000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2899,2,2,'2019-08-21 15:10:07',1032.371000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2900,2,2,'2019-08-21 15:10:07',1033.236000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2901,2,2,'2019-08-21 15:10:07',1034.103000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2902,2,2,'2019-08-21 15:10:07',1035.018000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2903,2,2,'2019-08-21 15:10:07',1035.917000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2904,2,2,'2019-08-21 15:10:07',1036.329000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2905,2,2,'2019-08-21 15:10:07',1036.916000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2906,2,2,'2019-08-21 15:10:07',1037.390000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2907,2,2,'2019-08-21 15:10:07',1037.731000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2908,2,2,'2019-08-21 15:10:07',1038.714000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2909,2,2,'2019-08-21 15:10:07',1039.680000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2910,2,2,'2019-08-21 15:10:07',1040.512000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2911,2,2,'2019-08-21 15:10:07',1041.063000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2912,2,2,'2019-08-21 15:10:07',1041.461000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2913,2,2,'2019-08-21 15:10:07',1041.801000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2914,2,2,'2019-08-21 15:10:07',1042.427000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2915,2,2,'2019-08-21 15:10:07',1043.259000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2916,2,2,'2019-08-21 15:10:07',1044.158000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2917,2,2,'2019-08-21 15:10:07',1044.708000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2918,2,2,'2019-08-21 15:10:07',1045.091000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2919,2,2,'2019-08-21 15:10:07',1045.939000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2920,2,2,'2019-08-21 15:10:07',1046.855000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2921,2,2,'2019-08-21 15:10:07',1047.191000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2922,2,2,'2019-08-21 15:10:07',1047.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2923,2,2,'2019-08-21 15:10:07',1048.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2924,2,2,'2019-08-21 15:10:07',1049.752000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2925,2,2,'2019-08-21 15:10:07',1050.685000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2926,2,2,'2019-08-21 15:10:07',1051.500000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2927,2,2,'2019-08-21 15:10:07',1052.350000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2928,2,2,'2019-08-21 15:10:07',1052.835000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2929,2,2,'2019-08-21 15:10:07',1053.314000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2930,2,2,'2019-08-21 15:10:07',1053.764000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2931,2,2,'2019-08-21 15:10:07',1054.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2932,2,2,'2019-08-21 15:10:07',1055.096000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2933,2,2,'2019-08-21 15:10:07',1055.611000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2934,2,2,'2019-08-21 15:10:07',1056.012000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2935,2,2,'2019-08-21 15:10:07',1056.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2936,2,2,'2019-08-21 15:10:07',1056.861000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2937,2,2,'2019-08-21 15:10:07',1057.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2938,2,2,'2019-08-21 15:10:07',1058.692000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2939,2,2,'2019-08-21 15:10:07',1059.708000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2940,2,2,'2019-08-21 15:10:07',1060.523000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2941,2,2,'2019-08-21 15:10:07',1061.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2942,2,2,'2019-08-21 15:10:07',1062.405000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2943,2,2,'2019-08-21 15:10:07',1062.819000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2944,2,2,'2019-08-21 15:10:07',1063.387000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2945,2,2,'2019-08-21 15:10:07',1064.170000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2946,2,2,'2019-08-21 15:10:07',1064.605000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2947,2,2,'2019-08-21 15:10:07',1064.969000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2948,2,2,'2019-08-21 15:10:07',1065.918000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2949,2,2,'2019-08-21 15:10:07',1066.767000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2950,2,2,'2019-08-21 15:10:07',1067.716000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2951,2,2,'2019-08-21 15:10:07',1068.564000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2952,2,2,'2019-08-21 15:10:07',1069.027000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2953,2,2,'2019-08-21 15:10:07',1069.381000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2954,2,2,'2019-08-21 15:10:07',1070.229000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2955,2,2,'2019-08-21 15:10:07',1070.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2956,2,2,'2019-08-21 15:10:07',1071.045000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2957,2,2,'2019-08-21 15:10:07',1071.961000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2958,2,2,'2019-08-21 15:10:07',1072.827000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2959,2,2,'2019-08-21 15:10:07',1073.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2960,2,2,'2019-08-21 15:10:07',1073.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2961,2,2,'2019-08-21 15:10:07',1074.625000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2962,2,2,'2019-08-21 15:10:07',1075.474000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2963,2,2,'2019-08-21 15:10:07',1075.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2964,2,2,'2019-08-21 15:10:07',1076.290000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2965,2,2,'2019-08-21 15:10:07',1077.105000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2966,2,2,'2019-08-21 15:10:07',1077.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2967,2,2,'2019-08-21 15:10:07',1078.771000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2968,2,2,'2019-08-21 15:10:07',1079.012000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2969,2,2,'2019-08-21 15:10:07',1079.636000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2970,2,2,'2019-08-21 15:10:07',1080.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2971,2,2,'2019-08-21 15:10:07',1080.890000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2972,2,2,'2019-08-21 15:10:07',1081.484000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2973,2,2,'2019-08-21 15:10:07',1081.839000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2974,2,2,'2019-08-21 15:10:07',1082.350000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2975,2,2,'2019-08-21 15:10:07',1082.696000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2976,2,2,'2019-08-21 15:10:07',1083.266000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2977,2,2,'2019-08-21 15:10:07',1084.181000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2978,2,2,'2019-08-21 15:10:07',1085.014000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2979,2,2,'2019-08-21 15:10:07',1085.812000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2980,2,2,'2019-08-21 15:10:07',1086.762000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2981,2,2,'2019-08-21 15:10:07',1087.179000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2982,2,2,'2019-08-21 15:10:07',1087.544000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2983,2,2,'2019-08-21 15:10:07',1088.443000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2984,2,2,'2019-08-21 15:10:07',1088.875000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2985,2,2,'2019-08-21 15:10:07',1089.408000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2986,2,2,'2019-08-21 15:10:07',1090.407000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2987,2,2,'2019-08-21 15:10:07',1091.390000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2988,2,2,'2019-08-21 15:10:07',1092.172000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2989,2,2,'2019-08-21 15:10:07',1093.154000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2990,2,2,'2019-08-21 15:10:07',1093.519000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2991,2,2,'2019-08-21 15:10:07',1094.137000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2992,2,2,'2019-08-21 15:10:07',1094.936000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2993,2,2,'2019-08-21 15:10:07',1095.868000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2994,2,2,'2019-08-21 15:10:07',1096.684000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2995,2,2,'2019-08-21 15:10:07',1097.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2996,2,2,'2019-08-21 15:10:07',1097.666000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2997,2,2,'2019-08-21 15:10:07',1098.599000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2998,2,2,'2019-08-21 15:10:07',1099.030000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (2999,2,2,'2019-08-21 15:10:07',1099.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3000,2,2,'2019-08-21 15:10:07',1099.849000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3001,2,2,'2019-08-21 15:10:07',1100.463000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3002,2,2,'2019-08-21 15:10:07',1101.296000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3003,2,2,'2019-08-21 15:10:07',1102.262000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3004,2,2,'2019-08-21 15:10:07',1103.193000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3005,2,2,'2019-08-21 15:10:07',1103.492000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3006,2,2,'2019-08-21 15:10:07',1103.959000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3007,2,2,'2019-08-21 15:10:07',1104.858000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3008,2,2,'2019-08-21 15:10:07',1105.168000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3009,2,2,'2019-08-21 15:10:07',1105.791000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3010,2,2,'2019-08-21 15:10:07',1106.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3011,2,2,'2019-08-21 15:10:07',1107.489000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3012,2,2,'2019-08-21 15:10:07',1108.404000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3013,2,2,'2019-08-21 15:10:07',1109.237000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3014,2,2,'2019-08-21 15:10:07',1110.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3015,2,2,'2019-08-21 15:10:07',1110.448000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3016,2,2,'2019-08-21 15:10:07',1110.852000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3017,2,2,'2019-08-21 15:10:07',1111.618000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3018,2,2,'2019-08-21 15:10:07',1112.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3019,2,2,'2019-08-21 15:10:07',1112.500000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3020,2,2,'2019-08-21 15:10:07',1113.266000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3021,2,2,'2019-08-21 15:10:07',1113.810000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3022,2,2,'2019-08-21 15:10:07',1114.049000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3023,2,2,'2019-08-21 15:10:07',1114.486000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3024,2,2,'2019-08-21 15:10:07',1114.864000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3025,2,2,'2019-08-21 15:10:07',1115.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3026,2,2,'2019-08-21 15:10:07',1116.546000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3027,2,2,'2019-08-21 15:10:07',1117.361000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3028,2,2,'2019-08-21 15:10:07',1118.177000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3029,2,2,'2019-08-21 15:10:07',1118.515000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3030,2,2,'2019-08-21 15:10:07',1119.043000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3031,2,2,'2019-08-21 15:10:07',1119.825000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3032,2,2,'2019-08-21 15:10:07',1120.691000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3033,2,2,'2019-08-21 15:10:07',1121.623000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3034,2,2,'2019-08-21 15:10:07',1121.957000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3035,2,2,'2019-08-21 15:10:07',1122.605000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3036,2,2,'2019-08-21 15:10:07',1123.389000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3037,2,2,'2019-08-21 15:10:07',1124.304000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3038,2,2,'2019-08-21 15:10:07',1125.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3039,2,2,'2019-08-21 15:10:07',1125.591000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3040,2,2,'2019-08-21 15:10:07',1126.186000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3041,2,2,'2019-08-21 15:10:07',1126.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3042,2,2,'2019-08-21 15:10:07',1127.276000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3043,2,2,'2019-08-21 15:10:07',1127.767000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3044,2,2,'2019-08-21 15:10:07',1128.600000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3045,2,2,'2019-08-21 15:10:07',1129.564000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3046,2,2,'2019-08-21 15:10:07',1129.962000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3047,2,2,'2019-08-21 15:10:07',1130.464000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3048,2,2,'2019-08-21 15:10:07',1131.413000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3049,2,2,'2019-08-21 15:10:07',1132.429000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3050,2,2,'2019-08-21 15:10:07',1133.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3051,2,2,'2019-08-21 15:10:07',1133.646000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3052,2,2,'2019-08-21 15:10:07',1134.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3053,2,2,'2019-08-21 15:10:07',1135.142000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3054,2,2,'2019-08-21 15:10:07',1136.024000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3055,2,2,'2019-08-21 15:10:07',1136.423000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3056,2,2,'2019-08-21 15:10:07',1136.907000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3057,2,2,'2019-08-21 15:10:07',1137.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3058,2,2,'2019-08-21 15:10:07',1138.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3059,2,2,'2019-08-21 15:10:07',1139.058000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3060,2,2,'2019-08-21 15:10:07',1139.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3061,2,2,'2019-08-21 15:10:07',1140.603000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3062,2,2,'2019-08-21 15:10:07',1141.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3063,2,2,'2019-08-21 15:10:07',1142.384000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3064,2,2,'2019-08-21 15:10:07',1142.975000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3065,2,2,'2019-08-21 15:10:07',1143.200000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3066,2,2,'2019-08-21 15:10:07',1143.611000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3067,2,2,'2019-08-21 15:10:07',1144.082000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3068,2,2,'2019-08-21 15:10:07',1145.065000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3069,2,2,'2019-08-21 15:10:07',1145.830000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3070,2,2,'2019-08-21 15:10:07',1146.267000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3071,2,2,'2019-08-21 15:10:07',1146.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3072,2,2,'2019-08-21 15:10:07',1147.104000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3073,2,2,'2019-08-21 15:10:07',1147.679000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3074,2,2,'2019-08-21 15:10:07',1148.627000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3075,2,2,'2019-08-21 15:10:07',1149.394000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3076,2,2,'2019-08-21 15:10:07',1150.358000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3077,2,2,'2019-08-21 15:10:07',1150.839000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3078,2,2,'2019-08-21 15:10:07',1151.341000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3079,2,2,'2019-08-21 15:10:07',1152.174000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3080,2,2,'2019-08-21 15:10:07',1152.565000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3081,2,2,'2019-08-21 15:10:07',1153.039000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3082,2,2,'2019-08-21 15:10:07',1153.854000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3083,2,2,'2019-08-21 15:10:07',1154.854000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3084,2,2,'2019-08-21 15:10:07',1155.703000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3085,2,2,'2019-08-21 15:10:07',1156.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3086,2,2,'2019-08-21 15:10:07',1156.618000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3087,2,2,'2019-08-21 15:10:07',1156.906000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3088,2,2,'2019-08-21 15:10:07',1157.501000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3089,2,2,'2019-08-21 15:10:07',1158.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3090,2,2,'2019-08-21 15:10:07',1159.166000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3091,2,2,'2019-08-21 15:10:07',1159.965000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3092,2,2,'2019-08-21 15:10:07',1160.730000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3093,2,2,'2019-08-21 15:10:07',1161.547000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3094,2,2,'2019-08-21 15:10:07',1161.984000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3095,2,2,'2019-08-21 15:10:07',1162.362000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3096,2,2,'2019-08-21 15:10:07',1163.178000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3097,2,2,'2019-08-21 15:10:07',1164.077000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3098,2,2,'2019-08-21 15:10:07',1164.960000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3099,2,2,'2019-08-21 15:10:07',1165.336000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3100,2,2,'2019-08-21 15:10:07',1165.858000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3101,2,2,'2019-08-21 15:10:07',1166.215000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3102,2,2,'2019-08-21 15:10:07',1166.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3103,2,2,'2019-08-21 15:10:07',1167.474000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3104,2,2,'2019-08-21 15:10:07',1167.900000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3105,2,2,'2019-08-21 15:10:07',1168.355000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3106,2,2,'2019-08-21 15:10:07',1169.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3107,2,2,'2019-08-21 15:10:07',1170.021000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3108,2,2,'2019-08-21 15:10:07',1170.803000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3109,2,2,'2019-08-21 15:10:07',1171.669000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3110,2,2,'2019-08-21 15:10:07',1172.451000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3111,2,2,'2019-08-21 15:10:07',1173.417000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3112,2,2,'2019-08-21 15:10:07',1173.947000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3113,2,2,'2019-08-21 15:10:07',1174.366000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3114,2,2,'2019-08-21 15:10:07',1175.198000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3115,2,2,'2019-08-21 15:10:07',1175.896000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3116,2,2,'2019-08-21 15:10:07',1176.131000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3117,2,2,'2019-08-21 15:10:07',1176.963000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3118,2,2,'2019-08-21 15:10:07',1177.410000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3119,2,2,'2019-08-21 15:10:07',1177.796000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3120,2,2,'2019-08-21 15:10:07',1178.744000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3121,2,2,'2019-08-21 15:10:07',1179.710000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3122,2,2,'2019-08-21 15:10:07',1180.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3123,2,2,'2019-08-21 15:10:07',1180.560000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3124,2,2,'2019-08-21 15:10:07',1181.574000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3125,2,2,'2019-08-21 15:10:07',1181.934000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3126,2,2,'2019-08-21 15:10:07',1182.573000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3127,2,2,'2019-08-21 15:10:07',1183.406000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3128,2,2,'2019-08-21 15:10:07',1184.372000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3129,2,2,'2019-08-21 15:10:07',1184.710000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3130,2,2,'2019-08-21 15:10:07',1185.171000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3131,2,2,'2019-08-21 15:10:07',1186.053000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3132,2,2,'2019-08-21 15:10:07',1186.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3133,2,2,'2019-08-21 15:10:07',1187.701000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3134,2,2,'2019-08-21 15:10:07',1188.700000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3135,2,2,'2019-08-21 15:10:07',1189.202000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3136,2,2,'2019-08-21 15:10:07',1189.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3137,2,2,'2019-08-21 15:10:07',1190.564000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3138,2,2,'2019-08-21 15:10:07',1191.447000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3139,2,2,'2019-08-21 15:10:07',1191.786000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3140,2,2,'2019-08-21 15:10:07',1192.347000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3141,2,2,'2019-08-21 15:10:07',1193.146000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3142,2,2,'2019-08-21 15:10:07',1194.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3143,2,2,'2019-08-21 15:10:07',1194.844000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3144,2,2,'2019-08-21 15:10:07',1195.209000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3145,2,2,'2019-08-21 15:10:07',1195.609000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3146,2,2,'2019-08-21 15:10:07',1196.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3147,2,2,'2019-08-21 15:10:07',1196.813000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3148,2,2,'2019-08-21 15:10:07',1197.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3149,2,2,'2019-08-21 15:10:07',1198.323000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3150,2,2,'2019-08-21 15:10:07',1199.188000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3151,2,2,'2019-08-21 15:10:07',1199.449000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3152,2,2,'2019-08-21 15:10:07',1200.071000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3153,2,2,'2019-08-21 15:10:07',1200.438000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3154,2,2,'2019-08-21 15:10:07',1201.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3155,2,2,'2019-08-21 15:10:07',1201.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3156,2,2,'2019-08-21 15:10:07',1202.785000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3157,2,2,'2019-08-21 15:10:07',1203.733000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3158,2,2,'2019-08-21 15:10:07',1204.699000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3159,2,2,'2019-08-21 15:10:07',1205.632000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3160,2,2,'2019-08-21 15:10:07',1206.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3161,2,2,'2019-08-21 15:10:07',1206.548000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3162,2,2,'2019-08-21 15:10:07',1206.919000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3163,2,2,'2019-08-21 15:10:07',1207.330000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3164,2,2,'2019-08-21 15:10:07',1208.195000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3165,2,2,'2019-08-21 15:10:07',1209.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3166,2,2,'2019-08-21 15:10:07',1209.604000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3167,2,2,'2019-08-21 15:10:07',1210.094000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3168,2,2,'2019-08-21 15:10:07',1210.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3169,2,2,'2019-08-21 15:10:07',1211.792000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3170,2,2,'2019-08-21 15:10:07',1212.774000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3171,2,2,'2019-08-21 15:10:07',1213.128000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3172,2,2,'2019-08-21 15:10:07',1213.739000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3173,2,2,'2019-08-21 15:10:07',1214.057000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3174,2,2,'2019-08-21 15:10:07',1214.556000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3175,2,2,'2019-08-21 15:10:07',1215.555000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3176,2,2,'2019-08-21 15:10:07',1216.006000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3177,2,2,'2019-08-21 15:10:07',1216.470000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3178,2,2,'2019-08-21 15:10:07',1217.369000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3179,2,2,'2019-08-21 15:10:07',1218.352000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3180,2,2,'2019-08-21 15:10:07',1219.316000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3181,2,2,'2019-08-21 15:10:07',1219.630000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3182,2,2,'2019-08-21 15:10:07',1220.199000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3183,2,2,'2019-08-21 15:10:07',1221.148000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3184,2,2,'2019-08-21 15:10:07',1221.527000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3185,2,2,'2019-08-21 15:10:07',1222.147000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3186,2,2,'2019-08-21 15:10:07',1222.577000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3187,2,2,'2019-08-21 15:10:07',1223.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3188,2,2,'2019-08-21 15:10:07',1224.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3189,2,2,'2019-08-21 15:10:07',1224.827000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3190,2,2,'2019-08-21 15:10:07',1225.242000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3191,2,2,'2019-08-21 15:10:07',1225.793000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3192,2,2,'2019-08-21 15:10:07',1226.726000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3193,2,2,'2019-08-21 15:10:07',1227.110000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3194,2,2,'2019-08-21 15:10:07',1227.725000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3195,2,2,'2019-08-21 15:10:07',1228.640000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3196,2,2,'2019-08-21 15:10:07',1229.506000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3197,2,2,'2019-08-21 15:10:07',1230.371000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3198,2,2,'2019-08-21 15:10:07',1230.795000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3199,2,2,'2019-08-21 15:10:07',1231.337000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3200,2,2,'2019-08-21 15:10:07',1232.220000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3201,2,2,'2019-08-21 15:10:07',1233.168000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3202,2,2,'2019-08-21 15:10:07',1234.101000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3203,2,2,'2019-08-21 15:10:07',1235.083000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3204,2,2,'2019-08-21 15:10:07',1235.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3205,3,3,'2019-08-21 15:10:14',31.931000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3206,3,3,'2019-08-21 15:10:14',32.829000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3207,3,3,'2019-08-21 15:10:14',33.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3208,3,3,'2019-08-21 15:10:14',33.978000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3209,3,3,'2019-08-21 15:10:14',34.827000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3210,3,3,'2019-08-21 15:10:14',35.843000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3211,3,3,'2019-08-21 15:10:14',36.708000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3212,3,3,'2019-08-21 15:10:14',37.030000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3213,3,3,'2019-08-21 15:10:14',37.707000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3214,3,3,'2019-08-21 15:10:14',38.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3215,3,3,'2019-08-21 15:10:14',38.623000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3216,3,3,'2019-08-21 15:10:14',39.588000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3217,3,3,'2019-08-21 15:10:14',39.872000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3218,3,3,'2019-08-21 15:10:14',40.554000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3219,3,3,'2019-08-21 15:10:14',41.520000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3220,3,3,'2019-08-21 15:10:14',42.386000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3221,3,3,'2019-08-21 15:10:14',43.251000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3222,3,3,'2019-08-21 15:10:14',44.033000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3223,3,3,'2019-08-21 15:10:14',44.966000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3224,3,3,'2019-08-21 15:10:14',45.304000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3225,3,3,'2019-08-21 15:10:14',45.831000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3226,3,3,'2019-08-21 15:10:14',46.730000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3227,3,3,'2019-08-21 15:10:14',47.529000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3228,3,3,'2019-08-21 15:10:14',47.914000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3229,3,3,'2019-08-21 15:10:14',48.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3230,3,3,'2019-08-21 15:10:14',49.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3231,3,3,'2019-08-21 15:10:14',50.210000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3232,3,3,'2019-08-21 15:10:14',51.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3233,3,3,'2019-08-21 15:10:14',51.431000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3234,3,3,'2019-08-21 15:10:14',51.892000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3235,3,3,'2019-08-21 15:10:14',52.657000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3236,3,3,'2019-08-21 15:10:14',52.993000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3237,3,3,'2019-08-21 15:10:14',53.606000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3238,3,3,'2019-08-21 15:10:14',54.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3239,3,3,'2019-08-21 15:10:14',55.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3240,3,3,'2019-08-21 15:10:14',55.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3241,3,3,'2019-08-21 15:10:14',56.437000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3242,3,3,'2019-08-21 15:10:14',57.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3243,3,3,'2019-08-21 15:10:14',58.168000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3244,3,3,'2019-08-21 15:10:14',58.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3245,3,3,'2019-08-21 15:10:14',59.167000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3246,3,3,'2019-08-21 15:10:14',60.183000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3247,3,3,'2019-08-21 15:10:14',60.521000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3248,3,3,'2019-08-21 15:10:14',61.115000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3249,3,3,'2019-08-21 15:10:14',61.964000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3250,3,3,'2019-08-21 15:10:14',62.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3251,3,3,'2019-08-21 15:10:14',63.862000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3252,3,3,'2019-08-21 15:10:14',64.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3253,3,3,'2019-08-21 15:10:14',64.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3254,3,3,'2019-08-21 15:10:14',65.594000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3255,3,3,'2019-08-21 15:10:14',66.376000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3256,3,3,'2019-08-21 15:10:14',66.698000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3257,3,3,'2019-08-21 15:10:14',67.258000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3258,3,3,'2019-08-21 15:10:14',68.091000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3259,3,3,'2019-08-21 15:10:14',69.006000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3260,3,3,'2019-08-21 15:10:14',69.308000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3261,3,3,'2019-08-21 15:10:14',69.955000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3262,3,3,'2019-08-21 15:10:14',70.346000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3263,3,3,'2019-08-21 15:10:14',70.938000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3264,3,3,'2019-08-21 15:10:14',71.903000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3265,3,3,'2019-08-21 15:10:14',72.835000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3266,3,3,'2019-08-21 15:10:14',73.918000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3267,3,3,'2019-08-21 15:10:14',74.883000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3268,3,3,'2019-08-21 15:10:14',75.163000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3269,3,3,'2019-08-21 15:10:14',75.815000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3270,3,3,'2019-08-21 15:10:14',76.698000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3271,3,3,'2019-08-21 15:10:14',77.048000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3272,3,3,'2019-08-21 15:10:14',77.713000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3273,3,3,'2019-08-21 15:10:14',78.065000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3274,3,3,'2019-08-21 15:10:14',78.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3275,3,3,'2019-08-21 15:10:14',79.361000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3276,3,3,'2019-08-21 15:10:14',80.127000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3277,3,3,'2019-08-21 15:10:14',81.143000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3278,3,3,'2019-08-21 15:10:14',82.108000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3279,3,3,'2019-08-21 15:10:14',83.074000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3280,3,3,'2019-08-21 15:10:14',83.376000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3281,3,3,'2019-08-21 15:10:14',83.923000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3282,3,3,'2019-08-21 15:10:14',84.756000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3283,3,3,'2019-08-21 15:10:14',85.722000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3284,3,3,'2019-08-21 15:10:14',85.996000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3285,3,3,'2019-08-21 15:10:14',86.537000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3286,3,3,'2019-08-21 15:10:14',86.963000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3287,3,3,'2019-08-21 15:10:14',87.437000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3288,3,3,'2019-08-21 15:10:14',88.418000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3289,3,3,'2019-08-21 15:10:14',89.284000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3290,3,3,'2019-08-21 15:10:14',89.604000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3291,3,3,'2019-08-21 15:10:14',90.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3292,3,3,'2019-08-21 15:10:14',91.082000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3293,3,3,'2019-08-21 15:10:14',91.897000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3294,3,3,'2019-08-21 15:10:14',92.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3295,3,3,'2019-08-21 15:10:14',93.596000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3296,3,3,'2019-08-21 15:10:14',94.362000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3297,3,3,'2019-08-21 15:10:14',95.128000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3298,3,3,'2019-08-21 15:10:14',95.448000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3299,3,3,'2019-08-21 15:10:14',95.943000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3300,3,3,'2019-08-21 15:10:14',96.255000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3301,3,3,'2019-08-21 15:10:14',96.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3302,3,3,'2019-08-21 15:10:14',97.559000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3303,3,3,'2019-08-21 15:10:14',97.887000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3304,3,3,'2019-08-21 15:10:14',98.524000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3305,3,3,'2019-08-21 15:10:14',99.522000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3306,3,3,'2019-08-21 15:10:14',100.355000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3307,3,3,'2019-08-21 15:10:14',100.698000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3308,3,3,'2019-08-21 15:10:14',101.321000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3309,3,3,'2019-08-21 15:10:14',102.270000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3310,3,3,'2019-08-21 15:10:14',102.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3311,3,3,'2019-08-21 15:10:14',103.186000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3312,3,3,'2019-08-21 15:10:14',103.984000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3313,3,3,'2019-08-21 15:10:14',104.934000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3314,3,3,'2019-08-21 15:10:14',105.916000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3315,3,3,'2019-08-21 15:10:14',106.748000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3316,3,3,'2019-08-21 15:10:14',107.027000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3317,3,3,'2019-08-21 15:10:14',107.681000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3318,3,3,'2019-08-21 15:10:14',108.065000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3319,3,3,'2019-08-21 15:10:14',108.630000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3320,3,3,'2019-08-21 15:10:14',109.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3321,3,3,'2019-08-21 15:10:14',110.161000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3322,3,3,'2019-08-21 15:10:14',110.434000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3323,3,3,'2019-08-21 15:10:14',110.978000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3324,3,3,'2019-08-21 15:10:14',111.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3325,3,3,'2019-08-21 15:10:14',112.908000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3326,3,3,'2019-08-21 15:10:14',113.791000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3327,3,3,'2019-08-21 15:10:14',114.673000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3328,3,3,'2019-08-21 15:10:14',115.622000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3329,3,3,'2019-08-21 15:10:14',115.925000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3330,3,3,'2019-08-21 15:10:14',116.487000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3331,3,3,'2019-08-21 15:10:14',116.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3332,3,3,'2019-08-21 15:10:14',117.254000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3333,3,3,'2019-08-21 15:10:14',118.219000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3334,3,3,'2019-08-21 15:10:14',118.545000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3335,3,3,'2019-08-21 15:10:14',119.102000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3336,3,3,'2019-08-21 15:10:14',119.867000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3337,3,3,'2019-08-21 15:10:14',120.767000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3338,3,3,'2019-08-21 15:10:14',121.749000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3339,3,3,'2019-08-21 15:10:14',122.714000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3340,3,3,'2019-08-21 15:10:14',123.029000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3341,3,3,'2019-08-21 15:10:14',123.680000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3342,3,3,'2019-08-21 15:10:14',123.987000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3343,3,3,'2019-08-21 15:10:14',124.445000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3344,3,3,'2019-08-21 15:10:14',125.295000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3345,3,3,'2019-08-21 15:10:14',126.094000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3346,3,3,'2019-08-21 15:10:14',126.893000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3347,3,3,'2019-08-21 15:10:14',127.191000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3348,3,3,'2019-08-21 15:10:14',127.659000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3349,3,3,'2019-08-21 15:10:14',128.524000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3350,3,3,'2019-08-21 15:10:14',128.773000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3351,3,3,'2019-08-21 15:10:14',129.357000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3352,3,3,'2019-08-21 15:10:14',129.690000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3353,3,3,'2019-08-21 15:10:14',130.272000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3354,3,3,'2019-08-21 15:10:14',131.105000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3355,3,3,'2019-08-21 15:10:14',132.070000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3356,3,3,'2019-08-21 15:10:14',132.887000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3357,3,3,'2019-08-21 15:10:14',133.802000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3358,3,3,'2019-08-21 15:10:14',134.618000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3359,3,3,'2019-08-21 15:10:14',135.634000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3360,3,3,'2019-08-21 15:10:14',135.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3361,3,3,'2019-08-21 15:10:14',136.582000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3362,3,3,'2019-08-21 15:10:14',137.365000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3363,3,3,'2019-08-21 15:10:14',138.147000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3364,3,3,'2019-08-21 15:10:14',138.458000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3365,3,3,'2019-08-21 15:10:14',139.213000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3366,3,3,'2019-08-21 15:10:14',140.112000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3367,3,3,'2019-08-21 15:10:14',140.978000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3368,3,3,'2019-08-21 15:10:14',141.250000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3369,3,3,'2019-08-21 15:10:14',141.860000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3370,3,3,'2019-08-21 15:10:14',142.167000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3371,3,3,'2019-08-21 15:10:14',142.759000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3372,3,3,'2019-08-21 15:10:14',143.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3373,3,3,'2019-08-21 15:10:14',144.591000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3374,3,3,'2019-08-21 15:10:14',145.539000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3375,3,3,'2019-08-21 15:10:14',146.538000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3376,3,3,'2019-08-21 15:10:14',147.388000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3377,3,3,'2019-08-21 15:10:14',147.699000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3378,3,3,'2019-08-21 15:10:14',148.270000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3379,3,3,'2019-08-21 15:10:14',148.596000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3380,3,3,'2019-08-21 15:10:14',149.068000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3381,3,3,'2019-08-21 15:10:14',149.901000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3382,3,3,'2019-08-21 15:10:14',150.684000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3383,3,3,'2019-08-21 15:10:14',151.499000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3384,3,3,'2019-08-21 15:10:14',151.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3385,3,3,'2019-08-21 15:10:14',152.365000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3386,3,3,'2019-08-21 15:10:14',152.677000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3387,3,3,'2019-08-21 15:10:14',153.298000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3388,3,3,'2019-08-21 15:10:14',154.180000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3389,3,3,'2019-08-21 15:10:14',155.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3390,3,3,'2019-08-21 15:10:14',155.458000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3391,3,3,'2019-08-21 15:10:14',155.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3392,3,3,'2019-08-21 15:10:14',156.894000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3393,3,3,'2019-08-21 15:10:14',157.826000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3394,3,3,'2019-08-21 15:10:14',158.642000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3395,3,3,'2019-08-21 15:10:14',158.935000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3396,3,3,'2019-08-21 15:10:14',159.407000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3397,3,3,'2019-08-21 15:10:14',160.257000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3398,3,3,'2019-08-21 15:10:14',161.089000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3399,3,3,'2019-08-21 15:10:14',162.055000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3400,3,3,'2019-08-21 15:10:14',162.987000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3401,3,3,'2019-08-21 15:10:14',163.349000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3402,3,3,'2019-08-21 15:10:14',163.969000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3403,3,3,'2019-08-21 15:10:14',164.306000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3404,3,3,'2019-08-21 15:10:14',164.769000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3405,3,3,'2019-08-21 15:10:14',165.667000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3406,3,3,'2019-08-21 15:10:14',166.500000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3407,3,3,'2019-08-21 15:10:14',166.846000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3408,3,3,'2019-08-21 15:10:14',167.266000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3409,3,3,'2019-08-21 15:10:14',168.148000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3410,3,3,'2019-08-21 15:10:14',169.130000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3411,3,3,'2019-08-21 15:10:14',169.405000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3412,3,3,'2019-08-21 15:10:14',170.029000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3413,3,3,'2019-08-21 15:10:14',170.845000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3414,3,3,'2019-08-21 15:10:14',171.711000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3415,3,3,'2019-08-21 15:10:14',172.493000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3416,3,3,'2019-08-21 15:10:14',172.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3417,3,3,'2019-08-21 15:10:14',173.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3418,3,3,'2019-08-21 15:10:14',173.718000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3419,3,3,'2019-08-21 15:10:14',174.258000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3420,3,3,'2019-08-21 15:10:14',175.091000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3421,3,3,'2019-08-21 15:10:14',175.989000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3422,3,3,'2019-08-21 15:10:14',176.806000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3423,3,3,'2019-08-21 15:10:14',177.571000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3424,3,3,'2019-08-21 15:10:14',177.850000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3425,3,3,'2019-08-21 15:10:14',178.370000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3426,3,3,'2019-08-21 15:10:14',179.186000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3427,3,3,'2019-08-21 15:10:14',179.452000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3428,3,3,'2019-08-21 15:10:14',179.969000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3429,3,3,'2019-08-21 15:10:14',180.900000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3430,3,3,'2019-08-21 15:10:14',181.276000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3431,3,3,'2019-08-21 15:10:14',181.899000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3432,3,3,'2019-08-21 15:10:14',182.203000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3433,3,3,'2019-08-21 15:10:14',182.832000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3434,3,3,'2019-08-21 15:10:14',183.814000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3435,3,3,'2019-08-21 15:10:14',184.663000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3436,3,3,'2019-08-21 15:10:14',185.429000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3437,3,3,'2019-08-21 15:10:14',186.278000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3438,3,3,'2019-08-21 15:10:14',187.160000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3439,3,3,'2019-08-21 15:10:14',187.993000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3440,3,3,'2019-08-21 15:10:14',188.792000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3441,3,3,'2019-08-21 15:10:14',189.126000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3442,3,3,'2019-08-21 15:10:14',189.774000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3443,3,3,'2019-08-21 15:10:14',190.043000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3444,3,3,'2019-08-21 15:10:14',190.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3445,3,3,'2019-08-21 15:10:14',191.439000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3446,3,3,'2019-08-21 15:10:14',192.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3447,3,3,'2019-08-21 15:10:14',193.254000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3448,3,3,'2019-08-21 15:10:14',194.236000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3449,3,3,'2019-08-21 15:10:14',195.085000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3450,3,3,'2019-08-21 15:10:14',195.444000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3451,3,3,'2019-08-21 15:10:14',195.851000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3452,3,3,'2019-08-21 15:10:14',196.160000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3453,3,3,'2019-08-21 15:10:14',196.783000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3454,3,3,'2019-08-21 15:10:14',197.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3455,3,3,'2019-08-21 15:10:14',198.581000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3456,3,3,'2019-08-21 15:10:14',199.530000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3457,3,3,'2019-08-21 15:10:14',200.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3458,3,3,'2019-08-21 15:10:14',200.725000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3459,3,3,'2019-08-21 15:10:14',201.262000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3460,3,3,'2019-08-21 15:10:14',201.552000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3461,3,3,'2019-08-21 15:10:14',202.244000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3462,3,3,'2019-08-21 15:10:14',203.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3463,3,3,'2019-08-21 15:10:14',203.496000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3464,3,3,'2019-08-21 15:10:14',203.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3465,3,3,'2019-08-21 15:10:14',204.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3466,3,3,'2019-08-21 15:10:14',205.229000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3467,3,3,'2019-08-21 15:10:14',205.990000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3468,3,3,'2019-08-21 15:10:14',206.938000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3469,3,3,'2019-08-21 15:10:14',207.755000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3470,3,3,'2019-08-21 15:10:14',208.062000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3471,3,3,'2019-08-21 15:10:14',208.670000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3472,3,3,'2019-08-21 15:10:14',208.958000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3473,3,3,'2019-08-21 15:10:14',209.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3474,3,3,'2019-08-21 15:10:14',210.502000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3475,3,3,'2019-08-21 15:10:14',211.351000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3476,3,3,'2019-08-21 15:10:14',212.167000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3477,3,3,'2019-08-21 15:10:14',213.165000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3478,3,3,'2019-08-21 15:10:14',213.433000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3479,3,3,'2019-08-21 15:10:14',213.948000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3480,3,3,'2019-08-21 15:10:14',214.730000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3481,3,3,'2019-08-21 15:10:14',215.630000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3482,3,3,'2019-08-21 15:10:14',216.445000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3483,3,3,'2019-08-21 15:10:14',216.737000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3484,3,3,'2019-08-21 15:10:14',217.444000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3485,3,3,'2019-08-21 15:10:14',218.443000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3486,3,3,'2019-08-21 15:10:14',219.259000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3487,3,3,'2019-08-21 15:10:14',220.258000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3488,3,3,'2019-08-21 15:10:14',221.073000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3489,3,3,'2019-08-21 15:10:14',221.363000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3490,3,3,'2019-08-21 15:10:14',221.989000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3491,3,3,'2019-08-21 15:10:14',222.341000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3492,3,3,'2019-08-21 15:10:14',222.922000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3493,3,3,'2019-08-21 15:10:14',223.837000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3494,3,3,'2019-08-21 15:10:14',224.603000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3495,3,3,'2019-08-21 15:10:14',225.419000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3496,3,3,'2019-08-21 15:10:14',226.385000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3497,3,3,'2019-08-21 15:10:14',226.684000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3498,3,3,'2019-08-21 15:10:14',227.167000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3499,3,3,'2019-08-21 15:10:14',227.500000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3500,3,3,'2019-08-21 15:10:14',228.032000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3501,3,3,'2019-08-21 15:10:14',228.932000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3502,3,3,'2019-08-21 15:10:14',229.254000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3503,3,3,'2019-08-21 15:10:14',229.848000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3504,3,3,'2019-08-21 15:10:14',230.729000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3505,3,3,'2019-08-21 15:10:14',231.712000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3506,3,3,'2019-08-21 15:10:14',231.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3507,3,3,'2019-08-21 15:10:14',232.711000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3508,3,3,'2019-08-21 15:10:14',233.576000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3509,3,3,'2019-08-21 15:10:14',234.459000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3510,3,3,'2019-08-21 15:10:14',234.745000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3511,3,3,'2019-08-21 15:10:14',235.258000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3512,3,3,'2019-08-21 15:10:14',235.572000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3513,3,3,'2019-08-21 15:10:14',236.023000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3514,3,3,'2019-08-21 15:10:14',236.840000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3515,3,3,'2019-08-21 15:10:14',237.672000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3516,3,3,'2019-08-21 15:10:14',238.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3517,3,3,'2019-08-21 15:10:14',239.204000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3518,3,3,'2019-08-21 15:10:14',239.542000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3519,3,3,'2019-08-21 15:10:14',240.003000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3520,3,3,'2019-08-21 15:10:14',240.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3521,3,3,'2019-08-21 15:10:14',241.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3522,3,3,'2019-08-21 15:10:14',241.734000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3523,3,3,'2019-08-21 15:10:14',242.583000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3524,3,3,'2019-08-21 15:10:14',243.416000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3525,3,3,'2019-08-21 15:10:14',244.215000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3526,3,3,'2019-08-21 15:10:14',245.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3527,3,3,'2019-08-21 15:10:14',245.996000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3528,3,3,'2019-08-21 15:10:14',246.314000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3529,3,3,'2019-08-21 15:10:14',246.812000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3530,3,3,'2019-08-21 15:10:14',247.645000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3531,3,3,'2019-08-21 15:10:14',248.510000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3532,3,3,'2019-08-21 15:10:14',248.765000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3533,3,3,'2019-08-21 15:10:14',249.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3534,3,3,'2019-08-21 15:10:14',250.225000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3535,3,3,'2019-08-21 15:10:14',251.107000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3536,3,3,'2019-08-21 15:10:14',252.073000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3537,3,3,'2019-08-21 15:10:14',252.330000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3538,3,3,'2019-08-21 15:10:14',253.022000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3539,3,3,'2019-08-21 15:10:14',253.378000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3540,3,3,'2019-08-21 15:10:14',253.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3541,3,3,'2019-08-21 15:10:14',254.720000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3542,3,3,'2019-08-21 15:10:14',255.569000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3543,3,3,'2019-08-21 15:10:14',255.877000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3544,3,3,'2019-08-21 15:10:14',256.368000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3545,3,3,'2019-08-21 15:10:14',256.714000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3546,3,3,'2019-08-21 15:10:14',257.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3547,3,3,'2019-08-21 15:10:14',258.350000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3548,3,3,'2019-08-21 15:10:14',259.299000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3549,3,3,'2019-08-21 15:10:14',260.064000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3550,3,3,'2019-08-21 15:10:14',260.896000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3551,3,3,'2019-08-21 15:10:14',261.158000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3552,3,3,'2019-08-21 15:10:14',261.812000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3553,3,3,'2019-08-21 15:10:14',262.729000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3554,3,3,'2019-08-21 15:10:14',263.644000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3555,3,3,'2019-08-21 15:10:14',263.898000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3556,3,3,'2019-08-21 15:10:14',264.409000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3557,3,3,'2019-08-21 15:10:14',265.192000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3558,3,3,'2019-08-21 15:10:14',266.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3559,3,3,'2019-08-21 15:10:14',266.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3560,3,3,'2019-08-21 15:10:14',267.274000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3561,3,3,'2019-08-21 15:10:14',267.822000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3562,3,3,'2019-08-21 15:10:14',268.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3563,3,3,'2019-08-21 15:10:14',269.089000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3564,3,3,'2019-08-21 15:10:14',269.654000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3565,3,3,'2019-08-21 15:10:14',270.437000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3566,3,3,'2019-08-21 15:10:14',271.285000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3567,3,3,'2019-08-21 15:10:14',271.618000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3568,3,3,'2019-08-21 15:10:14',272.051000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3569,3,3,'2019-08-21 15:10:14',272.884000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3570,3,3,'2019-08-21 15:10:14',273.766000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3571,3,3,'2019-08-21 15:10:14',274.047000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3572,3,3,'2019-08-21 15:10:14',274.715000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3573,3,3,'2019-08-21 15:10:14',275.697000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3574,3,3,'2019-08-21 15:10:14',276.021000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3575,3,3,'2019-08-21 15:10:14',276.680000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3576,3,3,'2019-08-21 15:10:14',277.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3577,3,3,'2019-08-21 15:10:14',278.527000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3578,3,3,'2019-08-21 15:10:14',279.343000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3579,3,3,'2019-08-21 15:10:14',279.619000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3580,3,3,'2019-08-21 15:10:14',280.275000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3581,3,3,'2019-08-21 15:10:14',281.225000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3582,3,3,'2019-08-21 15:10:14',282.057000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3583,3,3,'2019-08-21 15:10:14',282.923000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3584,3,3,'2019-08-21 15:10:14',283.838000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3585,3,3,'2019-08-21 15:10:14',284.174000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3586,3,3,'2019-08-21 15:10:14',284.621000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3587,3,3,'2019-08-21 15:10:14',285.620000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3588,3,3,'2019-08-21 15:10:14',285.928000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3589,3,3,'2019-08-21 15:10:14',286.386000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3590,3,3,'2019-08-21 15:10:14',286.784000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3591,3,3,'2019-08-21 15:10:14',287.284000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3592,3,3,'2019-08-21 15:10:14',288.084000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3593,3,3,'2019-08-21 15:10:14',288.949000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3594,3,3,'2019-08-21 15:10:14',289.915000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3595,3,3,'2019-08-21 15:10:14',290.730000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3596,3,3,'2019-08-21 15:10:14',291.057000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3597,3,3,'2019-08-21 15:10:14',291.646000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3598,3,3,'2019-08-21 15:10:14',292.596000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3599,3,3,'2019-08-21 15:10:14',292.871000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3600,3,3,'2019-08-21 15:10:14',293.544000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3601,3,3,'2019-08-21 15:10:14',294.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3602,3,3,'2019-08-21 15:10:14',294.705000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3603,3,3,'2019-08-21 15:10:14',295.159000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3604,3,3,'2019-08-21 15:10:14',295.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3605,3,3,'2019-08-21 15:10:14',313.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3606,3,3,'2019-08-21 15:10:14',346.082000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3607,3,3,'2019-08-21 15:10:14',346.384000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3608,3,3,'2019-08-21 15:10:14',346.881000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3609,3,3,'2019-08-21 15:10:14',347.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3610,3,3,'2019-08-21 15:10:14',348.612000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3611,3,3,'2019-08-21 15:10:14',349.628000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3612,3,3,'2019-08-21 15:10:14',349.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3613,3,3,'2019-08-21 15:10:14',350.511000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3614,3,3,'2019-08-21 15:10:14',351.293000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3615,3,3,'2019-08-21 15:10:14',352.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3616,3,3,'2019-08-21 15:10:14',352.841000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3617,3,3,'2019-08-21 15:10:14',353.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3618,3,3,'2019-08-21 15:10:14',353.790000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3619,3,3,'2019-08-21 15:10:14',354.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3620,3,3,'2019-08-21 15:10:14',354.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3621,3,3,'2019-08-21 15:10:14',355.621000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3622,3,3,'2019-08-21 15:10:14',356.554000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3623,3,3,'2019-08-21 15:10:14',357.536000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3624,3,3,'2019-08-21 15:10:14',357.832000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3625,3,3,'2019-08-21 15:10:14',358.519000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3626,3,3,'2019-08-21 15:10:14',359.518000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3627,3,3,'2019-08-21 15:10:14',359.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3628,3,3,'2019-08-21 15:10:14',360.300000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3629,3,3,'2019-08-21 15:10:14',361.198000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3630,3,3,'2019-08-21 15:10:14',361.998000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3631,3,3,'2019-08-21 15:10:14',362.980000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3632,3,3,'2019-08-21 15:10:14',363.746000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3633,3,3,'2019-08-21 15:10:14',364.695000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3634,3,3,'2019-08-21 15:10:14',365.561000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3635,3,3,'2019-08-21 15:10:14',365.873000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3636,3,3,'2019-08-21 15:10:14',366.409000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3637,3,3,'2019-08-21 15:10:14',366.790000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3638,3,3,'2019-08-21 15:10:14',367.259000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3639,3,3,'2019-08-21 15:10:14',368.158000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3640,3,3,'2019-08-21 15:10:14',368.534000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3641,3,3,'2019-08-21 15:10:14',368.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3642,3,3,'2019-08-21 15:10:14',369.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3643,3,3,'2019-08-21 15:10:14',370.755000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3644,3,3,'2019-08-21 15:10:14',371.033000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3645,3,3,'2019-08-21 15:10:14',371.537000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3646,3,3,'2019-08-21 15:10:14',372.320000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3647,3,3,'2019-08-21 15:10:14',373.302000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3648,3,3,'2019-08-21 15:10:14',373.562000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3649,3,3,'2019-08-21 15:10:14',374.268000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3650,3,3,'2019-08-21 15:10:14',374.590000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3651,3,3,'2019-08-21 15:10:14',375.033000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3652,3,3,'2019-08-21 15:10:14',375.999000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3653,3,3,'2019-08-21 15:10:14',376.898000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3654,3,3,'2019-08-21 15:10:14',377.830000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3655,3,3,'2019-08-21 15:10:14',378.178000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3656,3,3,'2019-08-21 15:10:14',378.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3657,3,3,'2019-08-21 15:10:14',379.578000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3658,3,3,'2019-08-21 15:10:14',380.411000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3659,3,3,'2019-08-21 15:10:14',380.707000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3660,3,3,'2019-08-21 15:10:14',381.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3661,3,3,'2019-08-21 15:10:14',382.242000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3662,3,3,'2019-08-21 15:10:14',383.158000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3663,3,3,'2019-08-21 15:10:14',384.007000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3664,3,3,'2019-08-21 15:10:14',384.325000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3665,3,3,'2019-08-21 15:10:14',384.873000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3666,3,3,'2019-08-21 15:10:14',385.805000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3667,3,3,'2019-08-21 15:10:14',386.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3668,3,3,'2019-08-21 15:10:14',387.554000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3669,3,3,'2019-08-21 15:10:14',387.802000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3670,3,3,'2019-08-21 15:10:14',388.568000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3671,3,3,'2019-08-21 15:10:14',389.534000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3672,3,3,'2019-08-21 15:10:14',390.300000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3673,3,3,'2019-08-21 15:10:14',390.644000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3674,3,3,'2019-08-21 15:10:14',391.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3675,3,3,'2019-08-21 15:10:14',391.530000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3676,3,3,'2019-08-21 15:10:14',392.148000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3677,3,3,'2019-08-21 15:10:14',393.047000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3678,3,3,'2019-08-21 15:10:14',393.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3679,3,3,'2019-08-21 15:10:14',394.795000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3680,3,3,'2019-08-21 15:10:14',395.058000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3681,3,3,'2019-08-21 15:10:14',395.578000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3682,3,3,'2019-08-21 15:10:14',395.903000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3683,3,3,'2019-08-21 15:10:14',396.477000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3684,3,3,'2019-08-21 15:10:14',397.293000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3685,3,3,'2019-08-21 15:10:14',398.125000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3686,3,3,'2019-08-21 15:10:14',399.124000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3687,3,3,'2019-08-21 15:10:14',399.370000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3688,3,3,'2019-08-21 15:10:14',399.906000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3689,3,3,'2019-08-21 15:10:14',400.739000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3690,3,3,'2019-08-21 15:10:14',401.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3691,3,3,'2019-08-21 15:10:14',401.880000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3692,3,3,'2019-08-21 15:10:14',402.604000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3693,3,3,'2019-08-21 15:10:14',403.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3694,3,3,'2019-08-21 15:10:14',404.335000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3695,3,3,'2019-08-21 15:10:14',404.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3696,3,3,'2019-08-21 15:10:14',405.301000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3697,3,3,'2019-08-21 15:10:14',405.618000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3698,3,3,'2019-08-21 15:10:14',406.232000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3699,3,3,'2019-08-21 15:10:14',407.182000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3700,3,3,'2019-08-21 15:10:14',407.964000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3701,3,3,'2019-08-21 15:10:14',408.797000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3702,3,3,'2019-08-21 15:10:14',409.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3703,3,3,'2019-08-21 15:10:14',410.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3704,3,3,'2019-08-21 15:10:14',410.737000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3705,3,3,'2019-08-21 15:10:14',411.427000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3706,3,3,'2019-08-21 15:10:14',411.735000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3707,3,3,'2019-08-21 15:10:14',412.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3708,3,3,'2019-08-21 15:10:14',413.275000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3709,3,3,'2019-08-21 15:10:14',414.258000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3710,3,3,'2019-08-21 15:10:14',415.239000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3711,3,3,'2019-08-21 15:10:14',415.515000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3712,3,3,'2019-08-21 15:10:14',416.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3713,3,3,'2019-08-21 15:10:14',417.154000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3714,3,3,'2019-08-21 15:10:14',418.054000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3715,3,3,'2019-08-21 15:10:14',418.836000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3716,3,3,'2019-08-21 15:10:14',419.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3717,3,3,'2019-08-21 15:10:14',419.602000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3718,3,3,'2019-08-21 15:10:14',420.367000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3719,3,3,'2019-08-21 15:10:14',421.333000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3720,3,3,'2019-08-21 15:10:14',422.182000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3721,3,3,'2019-08-21 15:10:14',422.488000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3722,3,3,'2019-08-21 15:10:14',422.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3723,3,3,'2019-08-21 15:10:14',423.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3724,3,3,'2019-08-21 15:10:14',423.780000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3725,3,3,'2019-08-21 15:10:14',424.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3726,3,3,'2019-08-21 15:10:14',425.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3727,3,3,'2019-08-21 15:10:14',426.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3728,3,3,'2019-08-21 15:10:14',426.821000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3729,3,3,'2019-08-21 15:10:14',427.260000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3730,3,3,'2019-08-21 15:10:14',428.093000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3731,3,3,'2019-08-21 15:10:14',428.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3732,3,3,'2019-08-21 15:10:14',429.271000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3733,3,3,'2019-08-21 15:10:14',429.974000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3734,3,3,'2019-08-21 15:10:14',430.923000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3735,3,3,'2019-08-21 15:10:14',431.888000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3736,3,3,'2019-08-21 15:10:14',432.887000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3737,3,3,'2019-08-21 15:10:14',433.770000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3738,3,3,'2019-08-21 15:10:14',434.719000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3739,3,3,'2019-08-21 15:10:14',435.014000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3740,3,3,'2019-08-21 15:10:14',435.551000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3741,3,3,'2019-08-21 15:10:14',435.932000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3742,3,3,'2019-08-21 15:10:14',436.450000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3743,3,3,'2019-08-21 15:10:14',437.282000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3744,3,3,'2019-08-21 15:10:14',438.281000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3745,3,3,'2019-08-21 15:10:14',438.552000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3746,3,3,'2019-08-21 15:10:14',439.230000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3747,3,3,'2019-08-21 15:10:14',440.013000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3748,3,3,'2019-08-21 15:10:14',440.325000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3749,3,3,'2019-08-21 15:10:14',440.778000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3750,3,3,'2019-08-21 15:10:14',441.661000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3751,3,3,'2019-08-21 15:10:14',441.978000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3752,3,3,'2019-08-21 15:10:14',442.593000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3753,3,3,'2019-08-21 15:10:14',442.895000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3754,3,3,'2019-08-21 15:10:14',443.426000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3755,3,3,'2019-08-21 15:10:14',444.291000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3756,3,3,'2019-08-21 15:10:14',445.107000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3757,3,3,'2019-08-21 15:10:14',446.022000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3758,3,3,'2019-08-21 15:10:14',446.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3759,3,3,'2019-08-21 15:10:14',447.117000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3760,3,3,'2019-08-21 15:10:14',447.654000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3761,3,3,'2019-08-21 15:10:14',448.470000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3762,3,3,'2019-08-21 15:10:14',448.770000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3763,3,3,'2019-08-21 15:10:14',449.253000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3764,3,3,'2019-08-21 15:10:14',450.251000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3765,3,3,'2019-08-21 15:10:14',451.150000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3766,3,3,'2019-08-21 15:10:14',452.033000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3767,3,3,'2019-08-21 15:10:14',452.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3768,3,3,'2019-08-21 15:10:14',452.849000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3769,3,3,'2019-08-21 15:10:14',453.631000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3770,3,3,'2019-08-21 15:10:14',453.960000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3771,3,3,'2019-08-21 15:10:14',454.514000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3772,3,3,'2019-08-21 15:10:14',455.279000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3773,3,3,'2019-08-21 15:10:14',456.045000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3774,3,3,'2019-08-21 15:10:14',456.827000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3775,3,3,'2019-08-21 15:10:14',457.124000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3776,3,3,'2019-08-21 15:10:14',457.826000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3777,3,3,'2019-08-21 15:10:14',458.092000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3778,3,3,'2019-08-21 15:10:14',458.759000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3779,3,3,'2019-08-21 15:10:14',459.642000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3780,3,3,'2019-08-21 15:10:14',460.540000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3781,3,3,'2019-08-21 15:10:14',461.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3782,3,3,'2019-08-21 15:10:14',462.338000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3783,3,3,'2019-08-21 15:10:14',463.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3784,3,3,'2019-08-21 15:10:14',463.573000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3785,3,3,'2019-08-21 15:10:14',464.053000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3786,3,3,'2019-08-21 15:10:14',464.836000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3787,3,3,'2019-08-21 15:10:14',465.851000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3788,3,3,'2019-08-21 15:10:14',466.816000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3789,3,3,'2019-08-21 15:10:14',467.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3790,3,3,'2019-08-21 15:10:14',467.749000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3791,3,3,'2019-08-21 15:10:14',468.715000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3792,3,3,'2019-08-21 15:10:14',469.547000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3793,3,3,'2019-08-21 15:10:14',470.430000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3794,3,3,'2019-08-21 15:10:14',470.738000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3795,3,3,'2019-08-21 15:10:14',471.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3796,3,3,'2019-08-21 15:10:14',471.515000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3797,3,3,'2019-08-21 15:10:14',471.994000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3798,3,3,'2019-08-21 15:10:14',472.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3799,3,3,'2019-08-21 15:10:14',473.759000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3800,3,3,'2019-08-21 15:10:14',474.741000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3801,3,3,'2019-08-21 15:10:14',475.641000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3802,3,3,'2019-08-21 15:10:14',475.959000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3803,3,3,'2019-08-21 15:10:14',476.623000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3804,3,3,'2019-08-21 15:10:14',477.472000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3805,3,3,'2019-08-21 15:10:14',477.782000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3806,3,3,'2019-08-21 15:10:14',478.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3807,3,3,'2019-08-21 15:10:14',479.170000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3808,3,3,'2019-08-21 15:10:14',479.455000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3809,3,3,'2019-08-21 15:10:14',480.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3810,3,3,'2019-08-21 15:10:14',481.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3811,3,3,'2019-08-21 15:10:14',481.370000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3812,3,3,'2019-08-21 15:10:14',482.000000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3813,3,3,'2019-08-21 15:10:14',482.999000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3814,3,3,'2019-08-21 15:10:14',483.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3815,3,3,'2019-08-21 15:10:14',484.172000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3816,3,3,'2019-08-21 15:10:14',484.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3817,3,3,'2019-08-21 15:10:14',485.829000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3818,3,3,'2019-08-21 15:10:14',486.097000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3819,3,3,'2019-08-21 15:10:14',486.812000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3820,3,3,'2019-08-21 15:10:14',487.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3821,3,3,'2019-08-21 15:10:14',488.377000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3822,3,3,'2019-08-21 15:10:14',489.159000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3823,3,3,'2019-08-21 15:10:14',490.058000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3824,3,3,'2019-08-21 15:10:14',491.007000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3825,3,3,'2019-08-21 15:10:14',491.806000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3826,3,3,'2019-08-21 15:10:14',492.133000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3827,3,3,'2019-08-21 15:10:14',492.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3828,3,3,'2019-08-21 15:10:14',493.161000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3829,3,3,'2019-08-21 15:10:14',493.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3830,3,3,'2019-08-21 15:10:14',494.486000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3831,3,3,'2019-08-21 15:10:14',495.402000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3832,3,3,'2019-08-21 15:10:14',496.385000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3833,3,3,'2019-08-21 15:10:14',497.217000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3834,3,3,'2019-08-21 15:10:14',497.524000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3835,3,3,'2019-08-21 15:10:14',498.100000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3836,3,3,'2019-08-21 15:10:14',499.015000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3837,3,3,'2019-08-21 15:10:14',499.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3838,3,3,'2019-08-21 15:10:14',499.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3839,3,3,'2019-08-21 15:10:14',500.746000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3840,3,3,'2019-08-21 15:10:14',501.679000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3841,3,3,'2019-08-21 15:10:14',501.908000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3842,3,3,'2019-08-21 15:10:14',502.494000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3843,3,3,'2019-08-21 15:10:14',503.327000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3844,3,3,'2019-08-21 15:10:14',503.611000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3845,3,3,'2019-08-21 15:10:14',504.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3846,3,3,'2019-08-21 15:10:14',505.059000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3847,3,3,'2019-08-21 15:10:14',505.957000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3848,3,3,'2019-08-21 15:10:14',506.262000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3849,3,3,'2019-08-21 15:10:14',506.757000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3850,3,3,'2019-08-21 15:10:14',507.539000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3851,3,3,'2019-08-21 15:10:14',508.454000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3852,3,3,'2019-08-21 15:10:14',508.660000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3853,3,3,'2019-08-21 15:10:14',509.221000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3854,3,3,'2019-08-21 15:10:14',510.169000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3855,3,3,'2019-08-21 15:10:14',510.534000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3856,3,3,'2019-08-21 15:10:14',510.985000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3857,3,3,'2019-08-21 15:10:14',511.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3858,3,3,'2019-08-21 15:10:14',512.288000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3859,3,3,'2019-08-21 15:10:14',512.899000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3860,3,3,'2019-08-21 15:10:14',513.865000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3861,3,3,'2019-08-21 15:10:14',514.798000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3862,3,3,'2019-08-21 15:10:14',515.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3863,3,3,'2019-08-21 15:10:14',515.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3864,3,3,'2019-08-21 15:10:14',516.546000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3865,3,3,'2019-08-21 15:10:14',517.411000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3866,3,3,'2019-08-21 15:10:14',518.277000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3867,3,3,'2019-08-21 15:10:14',519.227000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3868,3,3,'2019-08-21 15:10:14',519.463000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3869,3,3,'2019-08-21 15:10:14',520.208000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3870,3,3,'2019-08-21 15:10:14',521.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3871,3,3,'2019-08-21 15:10:14',521.890000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3872,3,3,'2019-08-21 15:10:14',522.153000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3873,3,3,'2019-08-21 15:10:14',522.756000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3874,3,3,'2019-08-21 15:10:14',523.688000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3875,3,3,'2019-08-21 15:10:14',524.487000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3876,3,3,'2019-08-21 15:10:14',525.336000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3877,3,3,'2019-08-21 15:10:14',525.569000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3878,3,3,'2019-08-21 15:10:14',526.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3879,3,3,'2019-08-21 15:10:14',527.001000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3880,3,3,'2019-08-21 15:10:14',527.313000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3881,3,3,'2019-08-21 15:10:14',527.816000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3882,3,3,'2019-08-21 15:10:14',528.180000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3883,3,3,'2019-08-21 15:10:14',528.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3884,3,3,'2019-08-21 15:10:14',529.415000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3885,3,3,'2019-08-21 15:10:14',530.314000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3886,3,3,'2019-08-21 15:10:14',531.163000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3887,3,3,'2019-08-21 15:10:14',531.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3888,3,3,'2019-08-21 15:10:14',532.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3889,3,3,'2019-08-21 15:10:14',532.961000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3890,3,3,'2019-08-21 15:10:14',533.760000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3891,3,3,'2019-08-21 15:10:14',534.075000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3892,3,3,'2019-08-21 15:10:14',534.543000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3893,3,3,'2019-08-21 15:10:14',535.542000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3894,3,3,'2019-08-21 15:10:14',536.407000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3895,3,3,'2019-08-21 15:10:14',536.735000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3896,3,3,'2019-08-21 15:10:14',537.390000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3897,3,3,'2019-08-21 15:10:14',538.255000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3898,3,3,'2019-08-21 15:10:14',539.104000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3899,3,3,'2019-08-21 15:10:14',540.087000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3900,3,3,'2019-08-21 15:10:14',540.424000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3901,3,3,'2019-08-21 15:10:14',541.053000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3902,3,3,'2019-08-21 15:10:14',541.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3903,3,3,'2019-08-21 15:10:14',542.349000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3904,3,3,'2019-08-21 15:10:14',542.884000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3905,3,3,'2019-08-21 15:10:14',543.766000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3906,3,3,'2019-08-21 15:10:14',544.082000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3907,3,3,'2019-08-21 15:10:14',544.532000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3908,3,3,'2019-08-21 15:10:14',545.464000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3909,3,3,'2019-08-21 15:10:14',546.297000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3910,3,3,'2019-08-21 15:10:14',547.112000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3911,3,3,'2019-08-21 15:10:14',548.078000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3912,3,3,'2019-08-21 15:10:14',549.027000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3913,3,3,'2019-08-21 15:10:14',549.942000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3914,3,3,'2019-08-21 15:10:14',550.708000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3915,3,3,'2019-08-21 15:10:14',551.076000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3916,3,3,'2019-08-21 15:10:14',551.674000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3917,3,3,'2019-08-21 15:10:14',552.043000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3918,3,3,'2019-08-21 15:10:14',552.507000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3919,3,3,'2019-08-21 15:10:14',552.920000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3920,3,3,'2019-08-21 15:10:14',553.422000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3921,3,3,'2019-08-21 15:10:14',554.421000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3922,3,3,'2019-08-21 15:10:14',555.387000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3923,3,3,'2019-08-21 15:10:14',556.252000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3924,3,3,'2019-08-21 15:10:14',556.608000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3925,3,3,'2019-08-21 15:10:14',557.135000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3926,3,3,'2019-08-21 15:10:14',558.134000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3927,3,3,'2019-08-21 15:10:14',558.473000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3928,3,3,'2019-08-21 15:10:14',559.049000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3929,3,3,'2019-08-21 15:10:14',560.015000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3930,3,3,'2019-08-21 15:10:14',560.947000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3931,3,3,'2019-08-21 15:10:14',561.214000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3932,3,3,'2019-08-21 15:10:14',561.796000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3933,3,3,'2019-08-21 15:10:14',562.662000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3934,3,3,'2019-08-21 15:10:14',563.428000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3935,3,3,'2019-08-21 15:10:14',564.294000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3936,3,3,'2019-08-21 15:10:14',565.192000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3937,3,3,'2019-08-21 15:10:14',566.142000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3938,3,3,'2019-08-21 15:10:14',566.424000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3939,3,3,'2019-08-21 15:10:14',566.957000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3940,3,3,'2019-08-21 15:10:14',567.320000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3941,3,3,'2019-08-21 15:10:14',567.757000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3942,3,3,'2019-08-21 15:10:14',568.655000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3943,3,3,'2019-08-21 15:10:14',569.472000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3944,3,3,'2019-08-21 15:10:14',570.237000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3945,3,3,'2019-08-21 15:10:14',571.136000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3946,3,3,'2019-08-21 15:10:14',571.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3947,3,3,'2019-08-21 15:10:14',572.052000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3948,3,3,'2019-08-21 15:10:14',572.399000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3949,3,3,'2019-08-21 15:10:14',572.935000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3950,3,3,'2019-08-21 15:10:14',573.767000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3951,3,3,'2019-08-21 15:10:14',574.716000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3952,3,3,'2019-08-21 15:10:14',574.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3953,3,3,'2019-08-21 15:10:14',575.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3954,3,3,'2019-08-21 15:10:14',576.431000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3955,3,3,'2019-08-21 15:10:14',577.396000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3956,3,3,'2019-08-21 15:10:14',577.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3957,3,3,'2019-08-21 15:10:14',578.179000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3958,3,3,'2019-08-21 15:10:14',578.978000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3959,3,3,'2019-08-21 15:10:14',579.333000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3960,3,3,'2019-08-21 15:10:14',579.927000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3961,3,3,'2019-08-21 15:10:14',580.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3962,3,3,'2019-08-21 15:10:14',581.808000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3963,3,3,'2019-08-21 15:10:14',582.790000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3964,3,3,'2019-08-21 15:10:14',583.051000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3965,3,3,'2019-08-21 15:10:14',583.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3966,3,3,'2019-08-21 15:10:14',584.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3967,3,3,'2019-08-21 15:10:14',584.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3968,3,3,'2019-08-21 15:10:14',585.504000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3969,3,3,'2019-08-21 15:10:14',585.843000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3970,3,3,'2019-08-21 15:10:14',586.369000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3971,3,3,'2019-08-21 15:10:14',587.269000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3972,3,3,'2019-08-21 15:10:14',588.051000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3973,3,3,'2019-08-21 15:10:14',588.967000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3974,3,3,'2019-08-21 15:10:14',589.933000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3975,3,3,'2019-08-21 15:10:14',590.731000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3976,3,3,'2019-08-21 15:10:14',591.613000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3977,3,3,'2019-08-21 15:10:14',591.899000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3978,3,3,'2019-08-21 15:10:14',592.596000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3979,3,3,'2019-08-21 15:10:14',593.462000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3980,3,3,'2019-08-21 15:10:14',594.444000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3981,3,3,'2019-08-21 15:10:14',594.700000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3982,3,3,'2019-08-21 15:10:14',595.343000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3983,3,3,'2019-08-21 15:10:14',596.159000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3984,3,3,'2019-08-21 15:10:14',596.925000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3985,3,3,'2019-08-21 15:10:14',597.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3986,3,3,'2019-08-21 15:10:14',597.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3987,3,3,'2019-08-21 15:10:14',598.839000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3988,3,3,'2019-08-21 15:10:14',599.605000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3989,3,3,'2019-08-21 15:10:14',599.891000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3990,3,3,'2019-08-21 15:10:14',600.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3991,3,3,'2019-08-21 15:10:14',601.170000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3992,3,3,'2019-08-21 15:10:14',602.103000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3993,3,3,'2019-08-21 15:10:14',602.430000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3994,3,3,'2019-08-21 15:10:14',602.918000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3995,3,3,'2019-08-21 15:10:14',603.917000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3996,3,3,'2019-08-21 15:10:14',604.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3997,3,3,'2019-08-21 15:10:14',605.241000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3998,3,3,'2019-08-21 15:10:14',605.781000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (3999,3,3,'2019-08-21 15:10:14',606.631000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4000,3,3,'2019-08-21 15:10:14',606.955000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4001,3,3,'2019-08-21 15:10:14',607.597000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4002,3,3,'2019-08-21 15:10:14',607.962000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4003,3,3,'2019-08-21 15:10:14',608.362000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4004,3,3,'2019-08-21 15:10:14',609.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4005,3,3,'2019-08-21 15:10:14',610.110000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4006,3,3,'2019-08-21 15:10:14',628.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4007,3,3,'2019-08-21 15:10:14',663.707000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4008,3,3,'2019-08-21 15:10:14',664.062000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4009,3,3,'2019-08-21 15:10:14',664.589000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4010,3,3,'2019-08-21 15:10:14',665.554000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4011,3,3,'2019-08-21 15:10:14',666.337000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4012,3,3,'2019-08-21 15:10:14',667.219000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4013,3,3,'2019-08-21 15:10:14',668.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4014,3,3,'2019-08-21 15:10:14',668.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4015,3,3,'2019-08-21 15:10:14',669.033000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4016,3,3,'2019-08-21 15:10:14',669.966000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4017,3,3,'2019-08-21 15:10:14',670.320000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4018,3,3,'2019-08-21 15:10:14',670.765000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4019,3,3,'2019-08-21 15:10:14',671.106000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4020,3,3,'2019-08-21 15:10:14',671.730000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4021,3,3,'2019-08-21 15:10:14',672.613000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4022,3,3,'2019-08-21 15:10:14',673.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4023,3,3,'2019-08-21 15:10:14',674.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4024,3,3,'2019-08-21 15:10:14',675.193000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4025,3,3,'2019-08-21 15:10:14',675.992000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4026,3,3,'2019-08-21 15:10:14',676.286000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4027,3,3,'2019-08-21 15:10:14',676.809000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4028,3,3,'2019-08-21 15:10:14',677.607000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4029,3,3,'2019-08-21 15:10:14',677.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4030,3,3,'2019-08-21 15:10:14',678.390000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4031,3,3,'2019-08-21 15:10:14',679.306000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4032,3,3,'2019-08-21 15:10:14',680.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4033,3,3,'2019-08-21 15:10:14',681.120000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4034,3,3,'2019-08-21 15:10:14',681.476000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4035,3,3,'2019-08-21 15:10:14',681.953000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4036,3,3,'2019-08-21 15:10:14',682.262000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4037,3,3,'2019-08-21 15:10:14',682.719000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4038,3,3,'2019-08-21 15:10:14',683.501000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4039,3,3,'2019-08-21 15:10:14',684.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4040,3,3,'2019-08-21 15:10:14',685.332000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4041,3,3,'2019-08-21 15:10:14',686.265000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4042,3,3,'2019-08-21 15:10:14',686.605000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4043,3,3,'2019-08-21 15:10:14',687.063000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4044,3,3,'2019-08-21 15:10:14',687.913000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4045,3,3,'2019-08-21 15:10:14',688.729000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4046,3,3,'2019-08-21 15:10:14',689.044000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4047,3,3,'2019-08-21 15:10:14',689.578000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4048,3,3,'2019-08-21 15:10:14',690.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4049,3,3,'2019-08-21 15:10:14',691.276000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4050,3,3,'2019-08-21 15:10:14',692.092000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4051,3,3,'2019-08-21 15:10:14',692.431000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4052,3,3,'2019-08-21 15:10:14',692.940000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4053,3,3,'2019-08-21 15:10:14',693.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4054,3,3,'2019-08-21 15:10:14',694.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4055,3,3,'2019-08-21 15:10:14',694.723000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4056,3,3,'2019-08-21 15:10:14',695.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4057,3,3,'2019-08-21 15:10:14',696.048000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4058,3,3,'2019-08-21 15:10:14',696.454000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4059,3,3,'2019-08-21 15:10:14',697.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4060,3,3,'2019-08-21 15:10:14',698.318000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4061,3,3,'2019-08-21 15:10:14',698.598000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4062,3,3,'2019-08-21 15:10:14',699.117000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4063,3,3,'2019-08-21 15:10:14',700.083000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4064,3,3,'2019-08-21 15:10:14',700.982000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4065,3,3,'2019-08-21 15:10:14',701.248000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4066,3,3,'2019-08-21 15:10:14',701.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4067,3,3,'2019-08-21 15:10:14',702.663000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4068,3,3,'2019-08-21 15:10:14',703.446000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4069,3,3,'2019-08-21 15:10:14',704.262000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4070,3,3,'2019-08-21 15:10:14',704.563000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4071,3,3,'2019-08-21 15:10:14',705.161000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4072,3,3,'2019-08-21 15:10:14',706.177000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4073,3,3,'2019-08-21 15:10:14',707.142000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4074,3,3,'2019-08-21 15:10:14',707.375000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4075,3,3,'2019-08-21 15:10:14',708.141000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4076,3,3,'2019-08-21 15:10:14',709.057000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4077,3,3,'2019-08-21 15:10:14',709.381000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4078,3,3,'2019-08-21 15:10:14',709.872000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4079,3,3,'2019-08-21 15:10:14',710.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4080,3,3,'2019-08-21 15:10:14',711.620000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4081,3,3,'2019-08-21 15:10:14',712.520000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4082,3,3,'2019-08-21 15:10:14',712.827000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4083,3,3,'2019-08-21 15:10:14',713.285000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4084,3,3,'2019-08-21 15:10:14',714.151000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4085,3,3,'2019-08-21 15:10:14',715.133000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4086,3,3,'2019-08-21 15:10:14',715.396000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4087,3,3,'2019-08-21 15:10:14',716.065000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4088,3,3,'2019-08-21 15:10:14',716.435000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4089,3,3,'2019-08-21 15:10:14',716.932000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4090,3,3,'2019-08-21 15:10:14',717.747000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4091,3,3,'2019-08-21 15:10:14',718.546000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4092,3,3,'2019-08-21 15:10:14',719.429000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4093,3,3,'2019-08-21 15:10:14',719.750000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4094,3,3,'2019-08-21 15:10:14',720.344000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4095,3,3,'2019-08-21 15:10:14',721.144000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4096,3,3,'2019-08-21 15:10:14',721.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4097,3,3,'2019-08-21 15:10:14',722.875000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4098,3,3,'2019-08-21 15:10:14',723.116000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4099,3,3,'2019-08-21 15:10:14',723.790000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4100,3,3,'2019-08-21 15:10:14',724.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4101,3,3,'2019-08-21 15:10:14',724.739000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4102,3,3,'2019-08-21 15:10:14',725.622000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4103,3,3,'2019-08-21 15:10:14',726.454000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4104,3,3,'2019-08-21 15:10:14',727.337000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4105,3,3,'2019-08-21 15:10:14',727.601000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4106,3,3,'2019-08-21 15:10:14',728.136000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4107,3,3,'2019-08-21 15:10:14',728.951000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4108,3,3,'2019-08-21 15:10:14',729.273000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4109,3,3,'2019-08-21 15:10:14',729.950000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4110,3,3,'2019-08-21 15:10:14',730.716000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4111,3,3,'2019-08-21 15:10:14',731.565000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4112,3,3,'2019-08-21 15:10:14',732.531000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4113,3,3,'2019-08-21 15:10:14',733.297000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4114,3,3,'2019-08-21 15:10:14',734.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4115,3,3,'2019-08-21 15:10:14',735.028000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4116,3,3,'2019-08-21 15:10:14',735.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4117,3,3,'2019-08-21 15:10:14',735.910000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4118,3,3,'2019-08-21 15:10:14',736.258000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4119,3,3,'2019-08-21 15:10:14',736.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4120,3,3,'2019-08-21 15:10:14',737.542000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4121,3,3,'2019-08-21 15:10:14',738.524000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4122,3,3,'2019-08-21 15:10:14',739.373000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4123,3,3,'2019-08-21 15:10:14',739.663000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4124,3,3,'2019-08-21 15:10:14',740.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4125,3,3,'2019-08-21 15:10:14',740.551000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4126,3,3,'2019-08-21 15:10:14',741.238000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4127,3,3,'2019-08-21 15:10:14',742.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4128,3,3,'2019-08-21 15:10:14',742.556000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4129,3,3,'2019-08-21 15:10:14',743.103000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4130,3,3,'2019-08-21 15:10:14',744.052000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4131,3,3,'2019-08-21 15:10:14',744.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4132,3,3,'2019-08-21 15:10:14',745.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4133,3,3,'2019-08-21 15:10:14',746.516000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4134,3,3,'2019-08-21 15:10:14',746.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4135,3,3,'2019-08-21 15:10:14',747.432000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4136,3,3,'2019-08-21 15:10:14',748.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4137,3,3,'2019-08-21 15:10:14',748.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4138,3,3,'2019-08-21 15:10:14',749.079000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4139,3,3,'2019-08-21 15:10:14',749.995000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4140,3,3,'2019-08-21 15:10:14',750.811000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4141,3,3,'2019-08-21 15:10:14',751.793000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4142,3,3,'2019-08-21 15:10:14',752.038000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4143,3,3,'2019-08-21 15:10:14',752.709000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4144,3,3,'2019-08-21 15:10:14',753.066000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4145,3,3,'2019-08-21 15:10:14',753.524000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4146,3,3,'2019-08-21 15:10:14',754.507000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4147,3,3,'2019-08-21 15:10:14',755.506000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4148,3,3,'2019-08-21 15:10:14',756.422000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4149,3,3,'2019-08-21 15:10:14',756.734000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4150,3,3,'2019-08-21 15:10:14',757.221000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4151,3,3,'2019-08-21 15:10:14',758.020000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4152,3,3,'2019-08-21 15:10:14',758.397000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4153,3,3,'2019-08-21 15:10:14',758.785000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4154,3,3,'2019-08-21 15:10:14',759.734000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4155,3,3,'2019-08-21 15:10:14',760.050000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4156,3,3,'2019-08-21 15:10:14',760.634000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4157,3,3,'2019-08-21 15:10:14',761.466000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4158,3,3,'2019-08-21 15:10:14',762.465000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4159,3,3,'2019-08-21 15:10:14',763.348000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4160,3,3,'2019-08-21 15:10:14',763.658000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4161,3,3,'2019-08-21 15:10:14',764.213000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4162,3,3,'2019-08-21 15:10:14',765.179000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4163,3,3,'2019-08-21 15:10:14',765.462000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4164,3,3,'2019-08-21 15:10:14',766.161000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4165,3,3,'2019-08-21 15:10:14',767.010000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4166,3,3,'2019-08-21 15:10:14',768.025000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4167,3,3,'2019-08-21 15:10:14',768.808000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4168,3,3,'2019-08-21 15:10:14',769.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4169,3,3,'2019-08-21 15:10:14',770.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4170,3,3,'2019-08-21 15:10:14',770.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4171,3,3,'2019-08-21 15:10:14',771.405000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4172,3,3,'2019-08-21 15:10:14',772.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4173,3,3,'2019-08-21 15:10:14',773.353000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4174,3,3,'2019-08-21 15:10:14',773.654000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4175,3,3,'2019-08-21 15:10:14',774.119000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4176,3,3,'2019-08-21 15:10:14',775.051000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4177,3,3,'2019-08-21 15:10:14',775.348000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4178,3,3,'2019-08-21 15:10:14',775.817000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4179,3,3,'2019-08-21 15:10:14',776.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4180,3,3,'2019-08-21 15:10:14',776.716000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4181,3,3,'2019-08-21 15:10:14',777.648000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4182,3,3,'2019-08-21 15:10:14',778.497000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4183,3,3,'2019-08-21 15:10:14',779.347000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4184,3,3,'2019-08-21 15:10:14',779.650000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4185,3,3,'2019-08-21 15:10:14',780.212000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4186,3,3,'2019-08-21 15:10:14',781.194000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4187,3,3,'2019-08-21 15:10:14',781.455000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4188,3,3,'2019-08-21 15:10:14',782.127000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4189,3,3,'2019-08-21 15:10:14',783.126000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4190,3,3,'2019-08-21 15:10:14',783.975000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4191,3,3,'2019-08-21 15:10:14',784.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4192,3,3,'2019-08-21 15:10:14',785.756000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4193,3,3,'2019-08-21 15:10:14',786.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4194,3,3,'2019-08-21 15:10:14',786.967000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4195,3,3,'2019-08-21 15:10:14',787.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4196,3,3,'2019-08-21 15:10:14',788.569000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4197,3,3,'2019-08-21 15:10:14',789.386000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4198,3,3,'2019-08-21 15:10:14',789.657000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4199,3,3,'2019-08-21 15:10:14',790.185000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4200,3,3,'2019-08-21 15:10:14',790.544000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4201,3,3,'2019-08-21 15:10:14',791.017000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4202,3,3,'2019-08-21 15:10:14',791.833000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4203,3,3,'2019-08-21 15:10:14',792.815000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4204,3,3,'2019-08-21 15:10:14',793.797000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4205,3,3,'2019-08-21 15:10:14',794.111000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4206,3,3,'2019-08-21 15:10:14',794.746000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4207,3,3,'2019-08-21 15:10:14',795.612000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4208,3,3,'2019-08-21 15:10:14',795.936000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4209,3,3,'2019-08-21 15:10:14',796.395000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4210,3,3,'2019-08-21 15:10:14',797.210000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4211,3,3,'2019-08-21 15:10:14',798.060000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4212,3,3,'2019-08-21 15:10:14',798.825000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4213,3,3,'2019-08-21 15:10:14',799.141000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4214,3,3,'2019-08-21 15:10:14',799.674000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4215,3,3,'2019-08-21 15:10:14',800.523000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4216,3,3,'2019-08-21 15:10:14',801.405000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4217,3,3,'2019-08-21 15:10:14',802.338000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4218,3,3,'2019-08-21 15:10:14',802.627000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4219,3,3,'2019-08-21 15:10:14',803.354000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4220,3,3,'2019-08-21 15:10:14',804.236000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4221,3,3,'2019-08-21 15:10:14',805.234000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4222,3,3,'2019-08-21 15:10:14',805.539000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4223,3,3,'2019-08-21 15:10:14',806.150000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4224,3,3,'2019-08-21 15:10:14',806.983000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4225,3,3,'2019-08-21 15:10:14',807.333000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4226,3,3,'2019-08-21 15:10:14',807.815000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4227,3,3,'2019-08-21 15:10:14',808.170000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4228,3,3,'2019-08-21 15:10:14',808.681000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4229,3,3,'2019-08-21 15:10:14',809.480000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4230,3,3,'2019-08-21 15:10:14',810.496000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4231,3,3,'2019-08-21 15:10:14',811.378000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4232,3,3,'2019-08-21 15:10:14',812.377000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4233,3,3,'2019-08-21 15:10:14',812.634000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4234,3,3,'2019-08-21 15:10:14',813.192000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4235,3,3,'2019-08-21 15:10:14',814.009000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4236,3,3,'2019-08-21 15:10:14',814.348000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4237,3,3,'2019-08-21 15:10:14',814.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4238,3,3,'2019-08-21 15:10:14',815.790000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4239,3,3,'2019-08-21 15:10:14',816.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4240,3,3,'2019-08-21 15:10:14',817.571000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4241,3,3,'2019-08-21 15:10:14',818.403000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4242,3,3,'2019-08-21 15:10:14',818.751000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4243,3,3,'2019-08-21 15:10:14',819.303000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4244,3,3,'2019-08-21 15:10:14',820.219000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4245,3,3,'2019-08-21 15:10:14',821.018000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4246,3,3,'2019-08-21 15:10:14',821.331000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4247,3,3,'2019-08-21 15:10:14',822.000000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4248,3,3,'2019-08-21 15:10:14',822.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4249,3,3,'2019-08-21 15:10:14',822.966000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4250,3,3,'2019-08-21 15:10:14',823.731000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4251,3,3,'2019-08-21 15:10:14',824.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4252,3,3,'2019-08-21 15:10:14',825.629000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4253,3,3,'2019-08-21 15:10:14',826.479000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4254,3,3,'2019-08-21 15:10:14',826.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4255,3,3,'2019-08-21 15:10:14',827.377000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4256,3,3,'2019-08-21 15:10:14',828.177000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4257,3,3,'2019-08-21 15:10:14',828.536000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4258,3,3,'2019-08-21 15:10:14',828.976000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4259,3,3,'2019-08-21 15:10:14',829.892000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4260,3,3,'2019-08-21 15:10:14',830.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4261,3,3,'2019-08-21 15:10:14',830.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4262,3,3,'2019-08-21 15:10:14',831.606000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4263,3,3,'2019-08-21 15:10:14',832.555000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4264,3,3,'2019-08-21 15:10:14',833.454000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4265,3,3,'2019-08-21 15:10:14',833.847000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4266,3,3,'2019-08-21 15:10:14',834.387000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4267,3,3,'2019-08-21 15:10:14',835.368000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4268,3,3,'2019-08-21 15:10:14',835.711000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4269,3,3,'2019-08-21 15:10:14',836.168000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4270,3,3,'2019-08-21 15:10:14',837.033000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4271,3,3,'2019-08-21 15:10:14',838.032000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4272,3,3,'2019-08-21 15:10:14',838.898000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4273,3,3,'2019-08-21 15:10:14',839.198000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4274,3,3,'2019-08-21 15:10:14',839.797000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4275,3,3,'2019-08-21 15:10:14',840.146000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4276,3,3,'2019-08-21 15:10:14',840.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4277,3,3,'2019-08-21 15:10:14',841.712000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4278,3,3,'2019-08-21 15:10:14',842.678000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4279,3,3,'2019-08-21 15:10:14',843.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4280,3,3,'2019-08-21 15:10:14',844.492000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4281,3,3,'2019-08-21 15:10:14',845.441000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4282,3,3,'2019-08-21 15:10:14',846.340000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4283,3,3,'2019-08-21 15:10:14',846.666000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4284,3,3,'2019-08-21 15:10:14',847.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4285,3,3,'2019-08-21 15:10:14',847.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4286,3,3,'2019-08-21 15:10:14',847.889000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4287,3,3,'2019-08-21 15:10:14',848.737000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4288,3,3,'2019-08-21 15:10:14',849.637000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4289,3,3,'2019-08-21 15:10:14',849.931000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4290,3,3,'2019-08-21 15:10:14',850.419000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4291,3,3,'2019-08-21 15:10:14',851.335000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4292,3,3,'2019-08-21 15:10:14',852.167000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4293,3,3,'2019-08-21 15:10:14',852.460000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4294,3,3,'2019-08-21 15:10:14',853.100000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4295,3,3,'2019-08-21 15:10:14',853.882000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4296,3,3,'2019-08-21 15:10:14',854.764000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4297,3,3,'2019-08-21 15:10:14',855.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4298,3,3,'2019-08-21 15:10:14',856.027000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4299,3,3,'2019-08-21 15:10:14',856.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4300,3,3,'2019-08-21 15:10:14',857.478000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4301,3,3,'2019-08-21 15:10:14',858.327000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4302,3,3,'2019-08-21 15:10:14',858.617000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4303,3,3,'2019-08-21 15:10:14',859.126000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4304,3,3,'2019-08-21 15:10:14',860.092000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4305,3,3,'2019-08-21 15:10:14',860.874000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4306,3,3,'2019-08-21 15:10:14',861.873000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4307,3,3,'2019-08-21 15:10:14',862.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4308,3,3,'2019-08-21 15:10:14',862.806000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4309,3,3,'2019-08-21 15:10:14',863.704000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4310,3,3,'2019-08-21 15:10:14',864.039000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4311,3,3,'2019-08-21 15:10:14',864.470000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4312,3,3,'2019-08-21 15:10:14',864.815000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4313,3,3,'2019-08-21 15:10:14',865.353000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4314,3,3,'2019-08-21 15:10:14',866.252000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4315,3,3,'2019-08-21 15:10:14',867.200000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4316,3,3,'2019-08-21 15:10:14',868.100000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4317,3,3,'2019-08-21 15:10:14',868.423000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4318,3,3,'2019-08-21 15:10:14',868.981000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4319,3,3,'2019-08-21 15:10:14',869.931000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4320,3,3,'2019-08-21 15:10:14',870.207000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4321,3,3,'2019-08-21 15:10:14',870.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4322,3,3,'2019-08-21 15:10:14',871.596000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4323,3,3,'2019-08-21 15:10:14',872.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4324,3,3,'2019-08-21 15:10:14',873.261000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4325,3,3,'2019-08-21 15:10:14',874.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4326,3,3,'2019-08-21 15:10:14',874.449000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4327,3,3,'2019-08-21 15:10:14',874.959000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4328,3,3,'2019-08-21 15:10:14',875.958000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4329,3,3,'2019-08-21 15:10:14',876.840000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4330,3,3,'2019-08-21 15:10:14',877.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4331,3,3,'2019-08-21 15:10:14',877.706000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4332,3,3,'2019-08-21 15:10:14',878.077000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4333,3,3,'2019-08-21 15:10:14',878.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4334,3,3,'2019-08-21 15:10:14',879.487000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4335,3,3,'2019-08-21 15:10:14',880.402000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4336,3,3,'2019-08-21 15:10:14',881.202000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4337,3,3,'2019-08-21 15:10:14',881.514000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4338,3,3,'2019-08-21 15:10:14',882.185000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4339,3,3,'2019-08-21 15:10:14',883.133000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4340,3,3,'2019-08-21 15:10:14',883.899000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4341,3,3,'2019-08-21 15:10:14',884.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4342,3,3,'2019-08-21 15:10:14',885.192000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4343,3,3,'2019-08-21 15:10:14',885.764000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4344,3,3,'2019-08-21 15:10:14',886.119000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4345,3,3,'2019-08-21 15:10:14',886.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4346,3,3,'2019-08-21 15:10:14',887.495000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4347,3,3,'2019-08-21 15:10:14',887.873000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4348,3,3,'2019-08-21 15:10:14',888.494000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4349,3,3,'2019-08-21 15:10:14',889.310000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4350,3,3,'2019-08-21 15:10:14',890.275000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4351,3,3,'2019-08-21 15:10:14',891.107000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4352,3,3,'2019-08-21 15:10:14',892.057000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4353,3,3,'2019-08-21 15:10:14',892.367000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4354,3,3,'2019-08-21 15:10:14',892.939000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4355,3,3,'2019-08-21 15:10:14',893.324000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4356,3,3,'2019-08-21 15:10:14',893.821000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4357,3,3,'2019-08-21 15:10:14',894.654000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4358,3,3,'2019-08-21 15:10:14',895.652000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4359,3,3,'2019-08-21 15:10:14',896.552000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4360,3,3,'2019-08-21 15:10:14',897.367000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4361,3,3,'2019-08-21 15:10:14',897.719000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4362,3,3,'2019-08-21 15:10:14',898.267000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4363,3,3,'2019-08-21 15:10:14',898.595000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4364,3,3,'2019-08-21 15:10:14',899.149000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4365,3,3,'2019-08-21 15:10:14',899.965000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4366,3,3,'2019-08-21 15:10:14',900.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4367,3,3,'2019-08-21 15:10:14',901.696000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4368,3,3,'2019-08-21 15:10:14',902.646000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4369,3,3,'2019-08-21 15:10:14',902.959000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4370,3,3,'2019-08-21 15:10:14',903.561000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4371,3,3,'2019-08-21 15:10:14',904.460000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4372,3,3,'2019-08-21 15:10:14',905.442000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4373,3,3,'2019-08-21 15:10:14',905.740000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4374,3,3,'2019-08-21 15:10:14',906.291000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4375,3,3,'2019-08-21 15:10:14',907.273000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4376,3,3,'2019-08-21 15:10:14',908.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4377,3,3,'2019-08-21 15:10:14',908.472000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4378,3,3,'2019-08-21 15:10:14',908.922000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4379,3,3,'2019-08-21 15:10:14',909.721000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4380,3,3,'2019-08-21 15:10:14',910.023000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4381,3,3,'2019-08-21 15:10:14',910.536000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4382,3,3,'2019-08-21 15:10:14',911.469000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4383,3,3,'2019-08-21 15:10:14',912.251000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4384,3,3,'2019-08-21 15:10:14',912.593000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4385,3,3,'2019-08-21 15:10:14',913.217000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4386,3,3,'2019-08-21 15:10:14',913.550000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4387,3,3,'2019-08-21 15:10:14',914.216000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4388,3,3,'2019-08-21 15:10:14',915.165000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4389,3,3,'2019-08-21 15:10:14',916.080000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4390,3,3,'2019-08-21 15:10:14',917.079000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4391,3,3,'2019-08-21 15:10:14',918.028000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4392,3,3,'2019-08-21 15:10:14',918.307000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4393,3,3,'2019-08-21 15:10:14',919.027000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4394,3,3,'2019-08-21 15:10:14',919.345000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4395,3,3,'2019-08-21 15:10:14',920.043000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4396,3,3,'2019-08-21 15:10:14',921.059000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4397,3,3,'2019-08-21 15:10:14',922.024000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4398,3,3,'2019-08-21 15:10:14',923.039000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4399,3,3,'2019-08-21 15:10:14',923.938000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4400,3,3,'2019-08-21 15:10:14',924.253000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4401,3,3,'2019-08-21 15:10:14',924.871000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4402,3,3,'2019-08-21 15:10:14',925.870000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4403,3,3,'2019-08-21 15:10:14',926.208000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4404,3,3,'2019-08-21 15:10:14',926.702000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4405,3,3,'2019-08-21 15:10:14',927.585000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4406,3,3,'2019-08-21 15:10:14',928.550000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4407,3,3,'2019-08-21 15:10:14',948.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4408,3,3,'2019-08-21 15:10:14',974.711000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4409,3,3,'2019-08-21 15:10:14',975.609000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4410,3,3,'2019-08-21 15:10:14',975.895000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4411,3,3,'2019-08-21 15:10:14',976.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4412,3,3,'2019-08-21 15:10:14',977.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4413,3,3,'2019-08-21 15:10:14',977.869000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4414,3,3,'2019-08-21 15:10:14',978.423000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4415,3,3,'2019-08-21 15:10:14',979.223000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4416,3,3,'2019-08-21 15:10:14',979.988000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4417,3,3,'2019-08-21 15:10:14',980.804000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4418,3,3,'2019-08-21 15:10:14',981.587000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4419,3,3,'2019-08-21 15:10:14',982.535000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4420,3,3,'2019-08-21 15:10:14',983.352000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4421,3,3,'2019-08-21 15:10:14',983.694000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4422,3,3,'2019-08-21 15:10:14',984.283000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4423,3,3,'2019-08-21 15:10:14',984.632000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4424,3,3,'2019-08-21 15:10:14',985.282000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4425,3,3,'2019-08-21 15:10:14',985.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4426,3,3,'2019-08-21 15:10:14',986.248000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4427,3,3,'2019-08-21 15:10:14',987.030000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4428,3,3,'2019-08-21 15:10:14',987.963000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4429,3,3,'2019-08-21 15:10:14',988.962000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4430,3,3,'2019-08-21 15:10:14',989.761000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4431,3,3,'2019-08-21 15:10:14',990.073000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4432,3,3,'2019-08-21 15:10:14',990.560000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4433,3,3,'2019-08-21 15:10:14',991.559000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4434,3,3,'2019-08-21 15:10:14',991.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4435,3,3,'2019-08-21 15:10:14',992.425000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4436,3,3,'2019-08-21 15:10:14',993.290000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4437,3,3,'2019-08-21 15:10:14',994.057000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4438,3,3,'2019-08-21 15:10:14',994.972000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4439,3,3,'2019-08-21 15:10:14',995.264000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4440,3,3,'2019-08-21 15:10:14',995.854000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4441,3,3,'2019-08-21 15:10:14',996.770000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4442,3,3,'2019-08-21 15:10:14',997.048000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4443,3,3,'2019-08-21 15:10:14',997.586000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4444,3,3,'2019-08-21 15:10:14',998.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4445,3,3,'2019-08-21 15:10:14',998.730000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4446,3,3,'2019-08-21 15:10:14',999.251000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4447,3,3,'2019-08-21 15:10:14',1000.149000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4448,3,3,'2019-08-21 15:10:14',1001.148000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4449,3,3,'2019-08-21 15:10:14',1001.451000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4450,3,3,'2019-08-21 15:10:14',1002.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4451,3,3,'2019-08-21 15:10:14',1002.896000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4452,3,3,'2019-08-21 15:10:14',1003.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4453,3,3,'2019-08-21 15:10:14',1004.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4454,3,3,'2019-08-21 15:10:14',1004.611000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4455,3,3,'2019-08-21 15:10:14',1005.410000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4456,3,3,'2019-08-21 15:10:14',1006.193000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4457,3,3,'2019-08-21 15:10:14',1007.175000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4458,3,3,'2019-08-21 15:10:14',1007.498000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4459,3,3,'2019-08-21 15:10:14',1008.074000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4460,3,3,'2019-08-21 15:10:14',1008.923000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4461,3,3,'2019-08-21 15:10:14',1009.789000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4462,3,3,'2019-08-21 15:10:14',1010.088000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4463,3,3,'2019-08-21 15:10:14',1010.621000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4464,3,3,'2019-08-21 15:10:14',1011.421000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4465,3,3,'2019-08-21 15:10:14',1011.761000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4466,3,3,'2019-08-21 15:10:14',1012.353000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4467,3,3,'2019-08-21 15:10:14',1013.219000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4468,3,3,'2019-08-21 15:10:14',1014.067000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4469,3,3,'2019-08-21 15:10:14',1015.000000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4470,3,3,'2019-08-21 15:10:14',1015.308000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4471,3,3,'2019-08-21 15:10:14',1015.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4472,3,3,'2019-08-21 15:10:14',1016.765000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4473,3,3,'2019-08-21 15:10:14',1017.664000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4474,3,3,'2019-08-21 15:10:14',1017.948000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4475,3,3,'2019-08-21 15:10:14',1018.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4476,3,3,'2019-08-21 15:10:14',1019.645000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4477,3,3,'2019-08-21 15:10:14',1020.544000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4478,3,3,'2019-08-21 15:10:14',1020.851000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4479,3,3,'2019-08-21 15:10:14',1021.310000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4480,3,3,'2019-08-21 15:10:14',1022.109000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4481,3,3,'2019-08-21 15:10:14',1022.975000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4482,3,3,'2019-08-21 15:10:14',1023.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4483,3,3,'2019-08-21 15:10:14',1023.807000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4484,3,3,'2019-08-21 15:10:14',1024.606000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4485,3,3,'2019-08-21 15:10:14',1025.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4486,3,3,'2019-08-21 15:10:14',1025.778000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4487,3,3,'2019-08-21 15:10:14',1026.371000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4488,3,3,'2019-08-21 15:10:14',1027.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4489,3,3,'2019-08-21 15:10:14',1027.553000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4490,3,3,'2019-08-21 15:10:14',1028.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4491,3,3,'2019-08-21 15:10:14',1028.984000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4492,3,3,'2019-08-21 15:10:14',1029.884000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4493,3,3,'2019-08-21 15:10:14',1030.213000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4494,3,3,'2019-08-21 15:10:14',1030.800000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4495,3,3,'2019-08-21 15:10:14',1031.615000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4496,3,3,'2019-08-21 15:10:14',1032.531000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4497,3,3,'2019-08-21 15:10:14',1032.786000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4498,3,3,'2019-08-21 15:10:14',1033.380000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4499,3,3,'2019-08-21 15:10:14',1034.379000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4500,3,3,'2019-08-21 15:10:14',1035.145000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4501,3,3,'2019-08-21 15:10:14',1035.504000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4502,3,3,'2019-08-21 15:10:14',1036.144000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4503,3,3,'2019-08-21 15:10:14',1037.043000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4504,3,3,'2019-08-21 15:10:14',1037.991000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4505,3,3,'2019-08-21 15:10:14',1038.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4506,3,3,'2019-08-21 15:10:14',1039.212000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4507,3,3,'2019-08-21 15:10:14',1039.973000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4508,3,3,'2019-08-21 15:10:14',1040.972000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4509,3,3,'2019-08-21 15:10:14',1041.288000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4510,3,3,'2019-08-21 15:10:14',1041.888000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4511,3,3,'2019-08-21 15:10:14',1042.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4512,3,3,'2019-08-21 15:10:14',1043.835000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4513,3,3,'2019-08-21 15:10:14',1044.834000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4514,3,3,'2019-08-21 15:10:14',1045.833000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4515,3,3,'2019-08-21 15:10:14',1046.832000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4516,3,3,'2019-08-21 15:10:14',1047.133000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4517,3,3,'2019-08-21 15:10:14',1047.681000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4518,3,3,'2019-08-21 15:10:14',1048.613000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4519,3,3,'2019-08-21 15:10:14',1048.927000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4520,3,3,'2019-08-21 15:10:14',1049.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4521,3,3,'2019-08-21 15:10:14',1050.444000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4522,3,3,'2019-08-21 15:10:14',1051.244000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4523,3,3,'2019-08-21 15:10:14',1052.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4524,3,3,'2019-08-21 15:10:14',1052.475000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4525,3,3,'2019-08-21 15:10:14',1053.175000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4526,3,3,'2019-08-21 15:10:14',1054.107000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4527,3,3,'2019-08-21 15:10:14',1054.419000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4528,3,3,'2019-08-21 15:10:14',1054.956000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4529,3,3,'2019-08-21 15:10:14',1055.326000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4530,3,3,'2019-08-21 15:10:14',1055.889000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4531,3,3,'2019-08-21 15:10:14',1056.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4532,3,3,'2019-08-21 15:10:14',1057.141000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4533,3,3,'2019-08-21 15:10:14',1057.804000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4534,3,3,'2019-08-21 15:10:14',1058.569000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4535,3,3,'2019-08-21 15:10:14',1059.385000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4536,3,3,'2019-08-21 15:10:14',1060.234000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4537,3,3,'2019-08-21 15:10:14',1060.496000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4538,3,3,'2019-08-21 15:10:14',1061.183000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4539,3,3,'2019-08-21 15:10:14',1062.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4540,3,3,'2019-08-21 15:10:14',1063.031000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4541,3,3,'2019-08-21 15:10:14',1063.338000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4542,3,3,'2019-08-21 15:10:14',1063.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4543,3,3,'2019-08-21 15:10:14',1064.829000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4544,3,3,'2019-08-21 15:10:14',1065.694000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4545,3,3,'2019-08-21 15:10:14',1066.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4546,3,3,'2019-08-21 15:10:14',1066.561000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4547,3,3,'2019-08-21 15:10:14',1067.576000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4548,3,3,'2019-08-21 15:10:14',1068.441000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4549,3,3,'2019-08-21 15:10:14',1069.308000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4550,3,3,'2019-08-21 15:10:14',1069.626000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4551,3,3,'2019-08-21 15:10:14',1070.223000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4552,3,3,'2019-08-21 15:10:14',1071.072000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4553,3,3,'2019-08-21 15:10:14',1071.420000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4554,3,3,'2019-08-21 15:10:14',1072.038000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4555,3,3,'2019-08-21 15:10:14',1073.003000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4556,3,3,'2019-08-21 15:10:14',1073.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4557,3,3,'2019-08-21 15:10:14',1074.751000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4558,3,3,'2019-08-21 15:10:14',1075.717000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4559,3,3,'2019-08-21 15:10:14',1076.036000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4560,3,3,'2019-08-21 15:10:14',1076.633000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4561,3,3,'2019-08-21 15:10:14',1077.465000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4562,3,3,'2019-08-21 15:10:14',1077.859000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4563,3,3,'2019-08-21 15:10:14',1078.348000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4564,3,3,'2019-08-21 15:10:14',1079.246000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4565,3,3,'2019-08-21 15:10:14',1079.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4566,3,3,'2019-08-21 15:10:14',1080.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4567,3,3,'2019-08-21 15:10:14',1081.045000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4568,3,3,'2019-08-21 15:10:14',1081.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4569,3,3,'2019-08-21 15:10:14',1082.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4570,3,3,'2019-08-21 15:10:14',1082.760000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4571,3,3,'2019-08-21 15:10:14',1083.725000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4572,3,3,'2019-08-21 15:10:14',1084.624000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4573,3,3,'2019-08-21 15:10:14',1085.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4574,3,3,'2019-08-21 15:10:14',1085.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4575,3,3,'2019-08-21 15:10:14',1086.538000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4576,3,3,'2019-08-21 15:10:14',1087.371000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4577,3,3,'2019-08-21 15:10:14',1088.220000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4578,3,3,'2019-08-21 15:10:14',1089.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4579,3,3,'2019-08-21 15:10:14',1089.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4580,3,3,'2019-08-21 15:10:14',1089.901000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4581,3,3,'2019-08-21 15:10:14',1090.701000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4582,3,3,'2019-08-21 15:10:14',1091.550000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4583,3,3,'2019-08-21 15:10:14',1091.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4584,3,3,'2019-08-21 15:10:14',1092.499000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4585,3,3,'2019-08-21 15:10:14',1093.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4586,3,3,'2019-08-21 15:10:14',1093.913000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4587,3,3,'2019-08-21 15:10:14',1094.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4588,3,3,'2019-08-21 15:10:14',1094.689000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4589,3,3,'2019-08-21 15:10:14',1095.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4590,3,3,'2019-08-21 15:10:14',1096.128000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4591,3,3,'2019-08-21 15:10:14',1096.961000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4592,3,3,'2019-08-21 15:10:14',1097.743000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4593,3,3,'2019-08-21 15:10:14',1098.575000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4594,3,3,'2019-08-21 15:10:14',1099.375000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4595,3,3,'2019-08-21 15:10:14',1099.678000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4596,3,3,'2019-08-21 15:10:14',1100.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4597,3,3,'2019-08-21 15:10:14',1101.056000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4598,3,3,'2019-08-21 15:10:14',1102.055000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4599,3,3,'2019-08-21 15:10:14',1102.338000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4600,3,3,'2019-08-21 15:10:14',1102.904000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4601,3,3,'2019-08-21 15:10:14',1103.255000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4602,3,3,'2019-08-21 15:10:14',1103.870000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4603,3,3,'2019-08-21 15:10:14',1104.802000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4604,3,3,'2019-08-21 15:10:14',1105.140000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4605,3,3,'2019-08-21 15:10:14',1105.768000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4606,3,3,'2019-08-21 15:10:14',1106.633000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4607,3,3,'2019-08-21 15:10:14',1107.399000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4608,3,3,'2019-08-21 15:10:14',1108.265000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4609,3,3,'2019-08-21 15:10:14',1108.627000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4610,3,3,'2019-08-21 15:10:14',1109.164000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4611,3,3,'2019-08-21 15:10:14',1110.079000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4612,3,3,'2019-08-21 15:10:14',1111.012000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4613,3,3,'2019-08-21 15:10:14',1111.287000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4614,3,3,'2019-08-21 15:10:14',1112.011000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4615,3,3,'2019-08-21 15:10:14',1112.960000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4616,3,3,'2019-08-21 15:10:14',1113.742000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4617,3,3,'2019-08-21 15:10:14',1114.089000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4618,3,3,'2019-08-21 15:10:14',1114.691000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4619,3,3,'2019-08-21 15:10:14',1115.674000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4620,3,3,'2019-08-21 15:10:14',1116.622000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4621,3,3,'2019-08-21 15:10:14',1117.555000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4622,3,3,'2019-08-21 15:10:14',1118.487000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4623,3,3,'2019-08-21 15:10:14',1118.765000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4624,3,3,'2019-08-21 15:10:14',1119.303000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4625,3,3,'2019-08-21 15:10:14',1120.219000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4626,3,3,'2019-08-21 15:10:14',1120.559000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4627,3,3,'2019-08-21 15:10:14',1120.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4628,3,3,'2019-08-21 15:10:14',1121.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4629,3,3,'2019-08-21 15:10:14',1121.866000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4630,3,3,'2019-08-21 15:10:14',1122.799000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4631,3,3,'2019-08-21 15:10:14',1123.748000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4632,3,3,'2019-08-21 15:10:14',1124.697000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4633,3,3,'2019-08-21 15:10:14',1125.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4634,3,3,'2019-08-21 15:10:14',1125.479000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4635,3,3,'2019-08-21 15:10:14',1126.345000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4636,3,3,'2019-08-21 15:10:14',1126.625000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4637,3,3,'2019-08-21 15:10:14',1127.211000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4638,3,3,'2019-08-21 15:10:14',1128.127000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4639,3,3,'2019-08-21 15:10:14',1129.125000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4640,3,3,'2019-08-21 15:10:14',1129.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4641,3,3,'2019-08-21 15:10:14',1130.773000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4642,3,3,'2019-08-21 15:10:14',1131.069000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4643,3,3,'2019-08-21 15:10:14',1131.723000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4644,3,3,'2019-08-21 15:10:14',1132.672000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4645,3,3,'2019-08-21 15:10:14',1132.984000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4646,3,3,'2019-08-21 15:10:14',1133.637000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4647,3,3,'2019-08-21 15:10:14',1134.437000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4648,3,3,'2019-08-21 15:10:14',1135.285000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4649,3,3,'2019-08-21 15:10:14',1135.614000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4650,3,3,'2019-08-21 15:10:14',1136.284000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4651,3,3,'2019-08-21 15:10:14',1136.582000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4652,3,3,'2019-08-21 15:10:14',1137.150000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4653,3,3,'2019-08-21 15:10:14',1137.966000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4654,3,3,'2019-08-21 15:10:14',1138.898000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4655,3,3,'2019-08-21 15:10:14',1139.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4656,3,3,'2019-08-21 15:10:14',1140.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4657,3,3,'2019-08-21 15:10:14',1141.512000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4658,3,3,'2019-08-21 15:10:14',1142.494000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4659,3,3,'2019-08-21 15:10:14',1142.870000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4660,3,3,'2019-08-21 15:10:14',1143.343000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4661,3,3,'2019-08-21 15:10:14',1144.159000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4662,3,3,'2019-08-21 15:10:14',1144.563000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4663,3,3,'2019-08-21 15:10:14',1145.142000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4664,3,3,'2019-08-21 15:10:14',1145.940000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4665,3,3,'2019-08-21 15:10:14',1146.723000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4666,3,3,'2019-08-21 15:10:14',1147.622000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4667,3,3,'2019-08-21 15:10:14',1147.899000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4668,3,3,'2019-08-21 15:10:14',1148.487000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4669,3,3,'2019-08-21 15:10:14',1149.304000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4670,3,3,'2019-08-21 15:10:14',1149.652000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4671,3,3,'2019-08-21 15:10:14',1150.202000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4672,3,3,'2019-08-21 15:10:14',1151.135000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4673,3,3,'2019-08-21 15:10:14',1151.406000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4674,3,3,'2019-08-21 15:10:14',1152.034000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4675,3,3,'2019-08-21 15:10:14',1152.883000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4676,3,3,'2019-08-21 15:10:14',1153.865000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4677,3,3,'2019-08-21 15:10:14',1154.107000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4678,3,3,'2019-08-21 15:10:14',1154.681000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4679,3,3,'2019-08-21 15:10:14',1155.497000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4680,3,3,'2019-08-21 15:10:14',1156.379000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4681,3,3,'2019-08-21 15:10:14',1156.677000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4682,3,3,'2019-08-21 15:10:14',1157.328000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4683,3,3,'2019-08-21 15:10:14',1157.694000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4684,3,3,'2019-08-21 15:10:14',1158.277000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4685,3,3,'2019-08-21 15:10:14',1159.226000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4686,3,3,'2019-08-21 15:10:14',1160.025000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4687,3,3,'2019-08-21 15:10:14',1161.023000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4688,3,3,'2019-08-21 15:10:14',1161.939000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4689,3,3,'2019-08-21 15:10:14',1162.938000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4690,3,3,'2019-08-21 15:10:14',1163.308000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4691,3,3,'2019-08-21 15:10:14',1163.787000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4692,3,3,'2019-08-21 15:10:14',1164.687000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4693,3,3,'2019-08-21 15:10:14',1165.192000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4694,3,3,'2019-08-21 15:10:14',1165.452000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4695,3,3,'2019-08-21 15:10:14',1166.418000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4696,3,3,'2019-08-21 15:10:14',1167.351000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4697,3,3,'2019-08-21 15:10:14',1168.299000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4698,3,3,'2019-08-21 15:10:14',1168.669000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4699,3,3,'2019-08-21 15:10:14',1169.132000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4700,3,3,'2019-08-21 15:10:14',1169.897000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4701,3,3,'2019-08-21 15:10:14',1170.680000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4702,3,3,'2019-08-21 15:10:14',1171.118000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4703,3,3,'2019-08-21 15:10:14',1171.562000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4704,3,3,'2019-08-21 15:10:14',1172.512000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4705,3,3,'2019-08-21 15:10:14',1173.327000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4706,3,3,'2019-08-21 15:10:14',1173.678000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4707,3,3,'2019-08-21 15:10:14',1174.126000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4708,3,3,'2019-08-21 15:10:14',1175.092000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4709,3,3,'2019-08-21 15:10:14',1176.107000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4710,3,3,'2019-08-21 15:10:14',1176.974000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4711,3,3,'2019-08-21 15:10:14',1177.508000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4712,3,3,'2019-08-21 15:10:14',1177.839000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4713,3,3,'2019-08-21 15:10:14',1178.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4714,3,3,'2019-08-21 15:10:14',1179.587000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4715,3,3,'2019-08-21 15:10:14',1179.926000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4716,3,3,'2019-08-21 15:10:14',1180.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4717,3,3,'2019-08-21 15:10:14',1181.335000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4718,3,3,'2019-08-21 15:10:14',1182.201000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4719,3,3,'2019-08-21 15:10:14',1182.526000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4720,3,3,'2019-08-21 15:10:14',1183.050000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4721,3,3,'2019-08-21 15:10:14',1183.815000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4722,3,3,'2019-08-21 15:10:14',1184.199000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4723,3,3,'2019-08-21 15:10:14',1184.731000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4724,3,3,'2019-08-21 15:10:14',1185.630000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4725,3,3,'2019-08-21 15:10:14',1186.496000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4726,3,3,'2019-08-21 15:10:14',1187.361000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4727,3,3,'2019-08-21 15:10:14',1187.666000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4728,3,3,'2019-08-21 15:10:14',1188.360000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4729,3,3,'2019-08-21 15:10:14',1189.227000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4730,3,3,'2019-08-21 15:10:14',1189.580000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4731,3,3,'2019-08-21 15:10:14',1190.142000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4732,3,3,'2019-08-21 15:10:14',1190.508000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4733,3,3,'2019-08-21 15:10:14',1191.124000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4734,3,3,'2019-08-21 15:10:14',1192.040000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4735,3,3,'2019-08-21 15:10:14',1192.905000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4736,3,3,'2019-08-21 15:10:14',1193.838000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4737,3,3,'2019-08-21 15:10:14',1194.654000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4738,3,3,'2019-08-21 15:10:14',1195.586000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4739,3,3,'2019-08-21 15:10:14',1196.436000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4740,3,3,'2019-08-21 15:10:14',1197.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4741,3,3,'2019-08-21 15:10:14',1197.622000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4742,3,3,'2019-08-21 15:10:14',1198.200000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4743,3,3,'2019-08-21 15:10:14',1198.580000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4744,3,3,'2019-08-21 15:10:14',1199.049000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4745,3,3,'2019-08-21 15:10:14',1199.898000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4746,3,3,'2019-08-21 15:10:14',1200.232000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4747,3,3,'2019-08-21 15:10:14',1200.764000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4748,3,3,'2019-08-21 15:10:14',1201.680000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4749,3,3,'2019-08-21 15:10:14',1202.479000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4750,3,3,'2019-08-21 15:10:14',1203.345000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4751,3,3,'2019-08-21 15:10:14',1203.750000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4752,3,3,'2019-08-21 15:10:14',1204.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4753,3,3,'2019-08-21 15:10:14',1204.597000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4754,3,3,'2019-08-21 15:10:14',1205.159000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4755,3,3,'2019-08-21 15:10:14',1206.008000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4756,3,3,'2019-08-21 15:10:14',1206.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4757,3,3,'2019-08-21 15:10:14',1207.247000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4758,3,3,'2019-08-21 15:10:14',1207.739000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4759,3,3,'2019-08-21 15:10:14',1208.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4760,3,3,'2019-08-21 15:10:14',1209.604000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4761,3,3,'2019-08-21 15:10:14',1210.453000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4762,3,3,'2019-08-21 15:10:14',1210.773000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4763,3,3,'2019-08-21 15:10:14',1211.386000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4764,3,3,'2019-08-21 15:10:14',1211.751000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4765,3,3,'2019-08-21 15:10:14',1212.251000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4766,3,3,'2019-08-21 15:10:14',1213.067000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4767,3,3,'2019-08-21 15:10:14',1213.949000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4768,3,3,'2019-08-21 15:10:14',1214.948000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4769,3,3,'2019-08-21 15:10:14',1215.208000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4770,3,3,'2019-08-21 15:10:14',1215.780000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4771,3,3,'2019-08-21 15:10:14',1216.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4772,3,3,'2019-08-21 15:10:14',1216.972000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4773,3,3,'2019-08-21 15:10:14',1217.546000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4774,3,3,'2019-08-21 15:10:14',1218.328000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4775,3,3,'2019-08-21 15:10:14',1219.294000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4776,3,3,'2019-08-21 15:10:14',1220.310000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4777,3,3,'2019-08-21 15:10:14',1220.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4778,3,3,'2019-08-21 15:10:14',1221.241000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4779,3,3,'2019-08-21 15:10:14',1222.041000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4780,3,3,'2019-08-21 15:10:14',1222.823000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4781,3,3,'2019-08-21 15:10:14',1223.089000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4782,3,3,'2019-08-21 15:10:14',1223.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4783,3,3,'2019-08-21 15:10:14',1224.588000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4784,3,3,'2019-08-21 15:10:14',1225.354000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4785,3,3,'2019-08-21 15:10:14',1226.203000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4786,3,3,'2019-08-21 15:10:14',1226.485000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4787,3,3,'2019-08-21 15:10:14',1227.002000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4788,3,3,'2019-08-21 15:10:14',1227.817000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4789,3,3,'2019-08-21 15:10:14',1228.600000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4790,3,3,'2019-08-21 15:10:14',1229.565000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4791,3,3,'2019-08-21 15:10:14',1229.871000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4792,3,3,'2019-08-21 15:10:14',1230.365000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4793,3,3,'2019-08-21 15:10:14',1231.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4794,3,3,'2019-08-21 15:10:14',1231.474000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4795,3,3,'2019-08-21 15:10:14',1231.913000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4796,3,3,'2019-08-21 15:10:14',1232.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4797,3,3,'2019-08-21 15:10:14',1233.096000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4798,3,3,'2019-08-21 15:10:14',1233.595000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4799,3,3,'2019-08-21 15:10:14',1234.477000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4800,3,3,'2019-08-21 15:10:14',1235.260000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4801,3,3,'2019-08-21 15:10:14',1236.075000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4802,3,3,'2019-08-21 15:10:14',1236.371000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4803,3,3,'2019-08-21 15:10:14',1237.058000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4804,3,3,'2019-08-21 15:10:14',1237.856000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4805,3,3,'2019-08-21 15:10:14',1238.165000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4806,3,3,'2019-08-21 15:10:14',1238.822000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4807,3,3,'2019-08-21 15:10:14',1239.638000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4808,4,4,'2019-08-21 15:10:22',18.100000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4809,4,4,'2019-08-21 15:10:22',19.015000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4810,4,4,'2019-08-21 15:10:22',20.097000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4811,4,4,'2019-08-21 15:10:22',20.439000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4812,4,4,'2019-08-21 15:10:22',21.062000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4813,4,4,'2019-08-21 15:10:22',21.457000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4814,4,4,'2019-08-21 15:10:22',21.845000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4815,4,4,'2019-08-21 15:10:22',22.711000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4816,4,4,'2019-08-21 15:10:22',23.677000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4817,4,4,'2019-08-21 15:10:22',24.525000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4818,4,4,'2019-08-21 15:10:22',25.408000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4819,4,4,'2019-08-21 15:10:22',25.830000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4820,4,4,'2019-08-21 15:10:22',26.190000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4821,4,4,'2019-08-21 15:10:22',27.105000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4822,4,4,'2019-08-21 15:10:22',27.905000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4823,4,4,'2019-08-21 15:10:22',28.299000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4824,4,4,'2019-08-21 15:10:22',28.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4825,4,4,'2019-08-21 15:10:22',29.687000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4826,4,4,'2019-08-21 15:10:22',30.552000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4827,4,4,'2019-08-21 15:10:22',31.501000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4828,4,4,'2019-08-21 15:10:22',31.806000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4829,4,4,'2019-08-21 15:10:22',32.450000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4830,4,4,'2019-08-21 15:10:22',32.863000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4831,4,4,'2019-08-21 15:10:22',33.466000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4832,4,4,'2019-08-21 15:10:22',34.432000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4833,4,4,'2019-08-21 15:10:22',35.464000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4834,4,4,'2019-08-21 15:10:22',36.496000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4835,4,4,'2019-08-21 15:10:22',37.312000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4836,4,4,'2019-08-21 15:10:22',37.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4837,4,4,'2019-08-21 15:10:22',38.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4838,4,4,'2019-08-21 15:10:22',38.638000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4839,4,4,'2019-08-21 15:10:22',39.226000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4840,4,4,'2019-08-21 15:10:22',40.142000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4841,4,4,'2019-08-21 15:10:22',40.940000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4842,4,4,'2019-08-21 15:10:22',41.890000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4843,4,4,'2019-08-21 15:10:22',42.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4844,4,4,'2019-08-21 15:10:22',43.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4845,4,4,'2019-08-21 15:10:22',43.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4846,4,4,'2019-08-21 15:10:22',43.907000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4847,4,4,'2019-08-21 15:10:22',44.521000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4848,4,4,'2019-08-21 15:10:22',45.402000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4849,4,4,'2019-08-21 15:10:22',45.781000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4850,4,4,'2019-08-21 15:10:22',46.435000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4851,4,4,'2019-08-21 15:10:22',47.268000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4852,4,4,'2019-08-21 15:10:22',48.232000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4853,4,4,'2019-08-21 15:10:22',49.065000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4854,4,4,'2019-08-21 15:10:22',49.430000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4855,4,4,'2019-08-21 15:10:22',49.914000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4856,4,4,'2019-08-21 15:10:22',50.830000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4857,4,4,'2019-08-21 15:10:22',51.629000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4858,4,4,'2019-08-21 15:10:22',51.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4859,4,4,'2019-08-21 15:10:22',52.462000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4860,4,4,'2019-08-21 15:10:22',52.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4861,4,4,'2019-08-21 15:10:22',53.244000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4862,4,4,'2019-08-21 15:10:22',54.026000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4863,4,4,'2019-08-21 15:10:22',54.792000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4864,4,4,'2019-08-21 15:10:22',55.575000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4865,4,4,'2019-08-21 15:10:22',56.407000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4866,4,4,'2019-08-21 15:10:22',56.806000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4867,4,4,'2019-08-21 15:10:22',57.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4868,4,4,'2019-08-21 15:10:22',57.702000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4869,4,4,'2019-08-21 15:10:22',58.389000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4870,4,4,'2019-08-21 15:10:22',59.254000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4871,4,4,'2019-08-21 15:10:22',60.037000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4872,4,4,'2019-08-21 15:10:22',61.002000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4873,4,4,'2019-08-21 15:10:22',61.818000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4874,4,4,'2019-08-21 15:10:22',62.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4875,4,4,'2019-08-21 15:10:22',63.550000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4876,4,4,'2019-08-21 15:10:22',64.481000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4877,4,4,'2019-08-21 15:10:22',64.877000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4878,4,4,'2019-08-21 15:10:22',65.314000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4879,4,4,'2019-08-21 15:10:22',65.633000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4880,4,4,'2019-08-21 15:10:22',66.213000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4881,4,4,'2019-08-21 15:10:22',66.569000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4882,4,4,'2019-08-21 15:10:22',67.295000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4883,4,4,'2019-08-21 15:10:22',68.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4884,4,4,'2019-08-21 15:10:22',69.061000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4885,4,4,'2019-08-21 15:10:22',70.059000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4886,4,4,'2019-08-21 15:10:22',70.398000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4887,4,4,'2019-08-21 15:10:22',70.892000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4888,4,4,'2019-08-21 15:10:22',71.824000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4889,4,4,'2019-08-21 15:10:22',72.142000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4890,4,4,'2019-08-21 15:10:22',72.590000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4891,4,4,'2019-08-21 15:10:22',72.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4892,4,4,'2019-08-21 15:10:22',73.572000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4893,4,4,'2019-08-21 15:10:22',74.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4894,4,4,'2019-08-21 15:10:22',75.536000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4895,4,4,'2019-08-21 15:10:22',76.469000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4896,4,4,'2019-08-21 15:10:22',77.451000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4897,4,4,'2019-08-21 15:10:22',78.267000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4898,4,4,'2019-08-21 15:10:22',79.216000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4899,4,4,'2019-08-21 15:10:22',79.589000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4900,4,4,'2019-08-21 15:10:22',80.015000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4901,4,4,'2019-08-21 15:10:22',80.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4902,4,4,'2019-08-21 15:10:22',81.097000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4903,4,4,'2019-08-21 15:10:22',82.013000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4904,4,4,'2019-08-21 15:10:22',82.795000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4905,4,4,'2019-08-21 15:10:22',83.744000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4906,4,4,'2019-08-21 15:10:22',84.143000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4907,4,4,'2019-08-21 15:10:22',84.743000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4908,4,4,'2019-08-21 15:10:22',84.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4909,4,4,'2019-08-21 15:10:22',85.676000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4910,4,4,'2019-08-21 15:10:22',86.591000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4911,4,4,'2019-08-21 15:10:22',87.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4912,4,4,'2019-08-21 15:10:22',88.223000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4913,4,4,'2019-08-21 15:10:22',89.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4914,4,4,'2019-08-21 15:10:22',90.021000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4915,4,4,'2019-08-21 15:10:22',90.381000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4916,4,4,'2019-08-21 15:10:22',91.020000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4917,4,4,'2019-08-21 15:10:22',91.802000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4918,4,4,'2019-08-21 15:10:22',92.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4919,4,4,'2019-08-21 15:10:22',92.734000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4920,4,4,'2019-08-21 15:10:22',93.517000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4921,4,4,'2019-08-21 15:10:22',94.466000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4922,4,4,'2019-08-21 15:10:22',94.834000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4923,4,4,'2019-08-21 15:10:22',95.398000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4924,4,4,'2019-08-21 15:10:22',96.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4925,4,4,'2019-08-21 15:10:22',97.130000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4926,4,4,'2019-08-21 15:10:22',97.475000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4927,4,4,'2019-08-21 15:10:22',98.195000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4928,4,4,'2019-08-21 15:10:22',99.127000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4929,4,4,'2019-08-21 15:10:22',99.960000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4930,4,4,'2019-08-21 15:10:22',100.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4931,4,4,'2019-08-21 15:10:22',101.162000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4932,4,4,'2019-08-21 15:10:22',101.675000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4933,4,4,'2019-08-21 15:10:22',102.606000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4934,4,4,'2019-08-21 15:10:22',102.886000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4935,4,4,'2019-08-21 15:10:22',103.439000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4936,4,4,'2019-08-21 15:10:22',104.372000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4937,4,4,'2019-08-21 15:10:22',104.679000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4938,4,4,'2019-08-21 15:10:22',105.204000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4939,4,4,'2019-08-21 15:10:22',106.003000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4940,4,4,'2019-08-21 15:10:22',106.251000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4941,4,4,'2019-08-21 15:10:22',106.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4942,4,4,'2019-08-21 15:10:22',107.651000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4943,4,4,'2019-08-21 15:10:22',108.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4944,4,4,'2019-08-21 15:10:22',109.250000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4945,4,4,'2019-08-21 15:10:22',109.576000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4946,4,4,'2019-08-21 15:10:22',110.016000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4947,4,4,'2019-08-21 15:10:22',110.965000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4948,4,4,'2019-08-21 15:10:22',111.913000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4949,4,4,'2019-08-21 15:10:22',112.879000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4950,4,4,'2019-08-21 15:10:22',113.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4951,4,4,'2019-08-21 15:10:22',113.645000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4952,4,4,'2019-08-21 15:10:22',114.610000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4953,4,4,'2019-08-21 15:10:22',114.967000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4954,4,4,'2019-08-21 15:10:22',115.493000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4955,4,4,'2019-08-21 15:10:22',116.275000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4956,4,4,'2019-08-21 15:10:22',117.074000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4957,4,4,'2019-08-21 15:10:22',117.456000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4958,4,4,'2019-08-21 15:10:22',118.090000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4959,4,4,'2019-08-21 15:10:22',119.039000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4960,4,4,'2019-08-21 15:10:22',119.938000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4961,4,4,'2019-08-21 15:10:22',120.837000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4962,4,4,'2019-08-21 15:10:22',121.619000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4963,4,4,'2019-08-21 15:10:22',121.990000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4964,4,4,'2019-08-21 15:10:22',122.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4965,4,4,'2019-08-21 15:10:22',123.301000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4966,4,4,'2019-08-21 15:10:22',123.673000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4967,4,4,'2019-08-21 15:10:22',124.184000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4968,4,4,'2019-08-21 15:10:22',125.082000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4969,4,4,'2019-08-21 15:10:22',126.015000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4970,4,4,'2019-08-21 15:10:22',126.847000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4971,4,4,'2019-08-21 15:10:22',127.663000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4972,4,4,'2019-08-21 15:10:22',128.429000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4973,4,4,'2019-08-21 15:10:22',128.792000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4974,4,4,'2019-08-21 15:10:22',129.378000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4975,4,4,'2019-08-21 15:10:22',129.699000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4976,4,4,'2019-08-21 15:10:22',130.260000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4977,4,4,'2019-08-21 15:10:22',130.626000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4978,4,4,'2019-08-21 15:10:22',131.109000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4979,4,4,'2019-08-21 15:10:22',131.875000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4980,4,4,'2019-08-21 15:10:22',132.791000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4981,4,4,'2019-08-21 15:10:22',133.590000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4982,4,4,'2019-08-21 15:10:22',134.032000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4983,4,4,'2019-08-21 15:10:22',134.672000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4984,4,4,'2019-08-21 15:10:22',135.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4985,4,4,'2019-08-21 15:10:22',135.876000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4986,4,4,'2019-08-21 15:10:22',136.470000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4987,4,4,'2019-08-21 15:10:22',137.369000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4988,4,4,'2019-08-21 15:10:22',137.720000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4989,4,4,'2019-08-21 15:10:22',138.335000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4990,4,4,'2019-08-21 15:10:22',139.233000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4991,4,4,'2019-08-21 15:10:22',140.116000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4992,4,4,'2019-08-21 15:10:22',141.031000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4993,4,4,'2019-08-21 15:10:22',141.338000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4994,4,4,'2019-08-21 15:10:22',141.947000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4995,4,4,'2019-08-21 15:10:22',142.325000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4996,4,4,'2019-08-21 15:10:22',142.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4997,4,4,'2019-08-21 15:10:22',143.529000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4998,4,4,'2019-08-21 15:10:22',144.345000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (4999,4,4,'2019-08-21 15:10:22',145.110000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5000,4,4,'2019-08-21 15:10:22',146.109000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5001,4,4,'2019-08-21 15:10:22',146.467000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5002,4,4,'2019-08-21 15:10:22',147.009000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5003,4,4,'2019-08-21 15:10:22',147.924000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5004,4,4,'2019-08-21 15:10:22',148.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5005,4,4,'2019-08-21 15:10:22',148.823000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5006,4,4,'2019-08-21 15:10:22',149.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5007,4,4,'2019-08-21 15:10:22',150.555000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5008,4,4,'2019-08-21 15:10:22',151.470000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5009,4,4,'2019-08-21 15:10:22',152.336000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5010,4,4,'2019-08-21 15:10:22',152.674000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5011,4,4,'2019-08-21 15:10:22',153.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5012,4,4,'2019-08-21 15:10:22',153.884000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5013,4,4,'2019-08-21 15:10:22',154.266000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5014,4,4,'2019-08-21 15:10:22',154.767000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5015,4,4,'2019-08-21 15:10:22',155.749000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5016,4,4,'2019-08-21 15:10:22',156.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5017,4,4,'2019-08-21 15:10:22',157.480000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5018,4,4,'2019-08-21 15:10:22',158.296000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5019,4,4,'2019-08-21 15:10:22',158.659000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5020,4,4,'2019-08-21 15:10:22',159.278000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5021,4,4,'2019-08-21 15:10:22',160.127000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5022,4,4,'2019-08-21 15:10:22',160.910000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5023,4,4,'2019-08-21 15:10:22',161.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5024,4,4,'2019-08-21 15:10:22',161.842000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5025,4,4,'2019-08-21 15:10:22',162.317000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5026,4,4,'2019-08-21 15:10:22',162.642000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5027,4,4,'2019-08-21 15:10:22',162.982000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5028,4,4,'2019-08-21 15:10:22',163.424000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5029,4,4,'2019-08-21 15:10:22',164.306000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5030,4,4,'2019-08-21 15:10:22',165.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5031,4,4,'2019-08-21 15:10:22',166.104000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5032,4,4,'2019-08-21 15:10:22',167.120000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5033,4,4,'2019-08-21 15:10:22',167.446000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5034,4,4,'2019-08-21 15:10:22',167.969000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5035,4,4,'2019-08-21 15:10:22',168.918000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5036,4,4,'2019-08-21 15:10:22',169.767000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5037,4,4,'2019-08-21 15:10:22',170.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5038,4,4,'2019-08-21 15:10:22',170.749000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5039,4,4,'2019-08-21 15:10:22',171.599000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5040,4,4,'2019-08-21 15:10:22',172.480000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5041,4,4,'2019-08-21 15:10:22',172.807000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5042,4,4,'2019-08-21 15:10:22',173.463000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5043,4,4,'2019-08-21 15:10:22',174.229000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5044,4,4,'2019-08-21 15:10:22',175.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5045,4,4,'2019-08-21 15:10:22',176.026000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5046,4,4,'2019-08-21 15:10:22',176.859000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5047,4,4,'2019-08-21 15:10:22',177.210000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5048,4,4,'2019-08-21 15:10:22',177.858000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5049,4,4,'2019-08-21 15:10:22',178.740000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5050,4,4,'2019-08-21 15:10:22',179.706000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5051,4,4,'2019-08-21 15:10:22',180.672000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5052,4,4,'2019-08-21 15:10:22',180.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5053,4,4,'2019-08-21 15:10:22',181.537000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5054,4,4,'2019-08-21 15:10:22',182.437000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5055,4,4,'2019-08-21 15:10:22',182.863000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5056,4,4,'2019-08-21 15:10:22',183.402000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5057,4,4,'2019-08-21 15:10:22',184.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5058,4,4,'2019-08-21 15:10:22',185.200000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5059,4,4,'2019-08-21 15:10:22',185.544000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5060,4,4,'2019-08-21 15:10:22',186.115000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5061,4,4,'2019-08-21 15:10:22',186.562000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5062,4,4,'2019-08-21 15:10:22',187.031000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5063,4,4,'2019-08-21 15:10:22',187.797000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5064,4,4,'2019-08-21 15:10:22',188.680000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5065,4,4,'2019-08-21 15:10:22',189.662000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5066,4,4,'2019-08-21 15:10:22',190.428000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5067,4,4,'2019-08-21 15:10:22',191.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5068,4,4,'2019-08-21 15:10:22',191.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5069,4,4,'2019-08-21 15:10:22',192.242000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5070,4,4,'2019-08-21 15:10:22',192.628000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5071,4,4,'2019-08-21 15:10:22',193.092000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5072,4,4,'2019-08-21 15:10:22',194.040000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5073,4,4,'2019-08-21 15:10:22',194.371000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5074,4,4,'2019-08-21 15:10:22',194.840000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5075,4,4,'2019-08-21 15:10:22',195.146000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5076,4,4,'2019-08-21 15:10:22',195.821000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5077,4,4,'2019-08-21 15:10:22',196.721000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5078,4,4,'2019-08-21 15:10:22',197.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5079,4,4,'2019-08-21 15:10:22',198.369000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5080,4,4,'2019-08-21 15:10:22',199.201000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5081,4,4,'2019-08-21 15:10:22',200.034000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5082,4,4,'2019-08-21 15:10:22',200.850000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5083,4,4,'2019-08-21 15:10:22',201.192000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5084,4,4,'2019-08-21 15:10:22',201.849000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5085,4,4,'2019-08-21 15:10:22',202.747000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5086,4,4,'2019-08-21 15:10:22',202.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5087,4,4,'2019-08-21 15:10:22',203.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5088,4,4,'2019-08-21 15:10:22',204.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5089,4,4,'2019-08-21 15:10:22',205.545000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5090,4,4,'2019-08-21 15:10:22',205.878000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5091,4,4,'2019-08-21 15:10:22',206.460000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5092,4,4,'2019-08-21 15:10:22',207.442000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5093,4,4,'2019-08-21 15:10:22',208.225000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5094,4,4,'2019-08-21 15:10:22',209.240000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5095,4,4,'2019-08-21 15:10:22',209.597000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5096,4,4,'2019-08-21 15:10:22',210.173000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5097,4,4,'2019-08-21 15:10:22',211.122000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5098,4,4,'2019-08-21 15:10:22',211.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5099,4,4,'2019-08-21 15:10:22',212.720000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5100,4,4,'2019-08-21 15:10:22',212.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5101,4,4,'2019-08-21 15:10:22',213.652000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5102,4,4,'2019-08-21 15:10:22',214.618000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5103,4,4,'2019-08-21 15:10:22',214.927000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5104,4,4,'2019-08-21 15:10:22',215.533000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5105,4,4,'2019-08-21 15:10:22',215.935000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5106,4,4,'2019-08-21 15:10:22',216.399000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5107,4,4,'2019-08-21 15:10:22',217.182000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5108,4,4,'2019-08-21 15:10:22',217.477000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5109,4,4,'2019-08-21 15:10:22',218.131000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5110,4,4,'2019-08-21 15:10:22',219.046000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5111,4,4,'2019-08-21 15:10:22',220.045000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5112,4,4,'2019-08-21 15:10:22',220.961000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5113,4,4,'2019-08-21 15:10:22',221.776000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5114,4,4,'2019-08-21 15:10:22',222.560000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5115,4,4,'2019-08-21 15:10:22',222.907000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5116,4,4,'2019-08-21 15:10:22',223.491000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5117,4,4,'2019-08-21 15:10:22',224.490000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5118,4,4,'2019-08-21 15:10:22',224.752000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5119,4,4,'2019-08-21 15:10:22',225.356000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5120,4,4,'2019-08-21 15:10:22',226.288000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5121,4,4,'2019-08-21 15:10:22',227.121000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5122,4,4,'2019-08-21 15:10:22',228.070000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5123,4,4,'2019-08-21 15:10:22',229.052000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5124,4,4,'2019-08-21 15:10:22',229.417000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5125,4,4,'2019-08-21 15:10:22',229.968000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5126,4,4,'2019-08-21 15:10:22',230.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5127,4,4,'2019-08-21 15:10:22',230.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5128,4,4,'2019-08-21 15:10:22',231.799000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5129,4,4,'2019-08-21 15:10:22',232.665000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5130,4,4,'2019-08-21 15:10:22',233.024000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5131,4,4,'2019-08-21 15:10:22',233.464000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5132,4,4,'2019-08-21 15:10:22',234.463000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5133,4,4,'2019-08-21 15:10:22',235.346000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5134,4,4,'2019-08-21 15:10:22',236.311000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5135,4,4,'2019-08-21 15:10:22',236.632000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5136,4,4,'2019-08-21 15:10:22',237.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5137,4,4,'2019-08-21 15:10:22',238.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5138,4,4,'2019-08-21 15:10:22',238.566000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5139,4,4,'2019-08-21 15:10:22',239.175000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5140,4,4,'2019-08-21 15:10:22',240.073000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5141,4,4,'2019-08-21 15:10:22',240.923000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5142,4,4,'2019-08-21 15:10:22',241.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5143,4,4,'2019-08-21 15:10:22',241.805000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5144,4,4,'2019-08-21 15:10:22',242.704000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5145,4,4,'2019-08-21 15:10:22',243.503000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5146,4,4,'2019-08-21 15:10:22',243.867000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5147,4,4,'2019-08-21 15:10:22',244.353000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5148,4,4,'2019-08-21 15:10:22',245.284000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5149,4,4,'2019-08-21 15:10:22',246.233000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5150,4,4,'2019-08-21 15:10:22',247.082000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5151,4,4,'2019-08-21 15:10:22',247.454000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5152,4,4,'2019-08-21 15:10:22',248.031000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5153,4,4,'2019-08-21 15:10:22',248.997000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5154,4,4,'2019-08-21 15:10:22',249.763000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5155,4,4,'2019-08-21 15:10:22',250.125000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5156,4,4,'2019-08-21 15:10:22',250.612000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5157,4,4,'2019-08-21 15:10:22',251.478000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5158,4,4,'2019-08-21 15:10:22',251.798000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5159,4,4,'2019-08-21 15:10:22',252.327000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5160,4,4,'2019-08-21 15:10:22',253.226000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5161,4,4,'2019-08-21 15:10:22',253.581000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5162,4,4,'2019-08-21 15:10:22',253.991000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5163,4,4,'2019-08-21 15:10:22',254.974000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5164,4,4,'2019-08-21 15:10:22',255.756000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5165,4,4,'2019-08-21 15:10:22',256.539000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5166,4,4,'2019-08-21 15:10:22',257.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5167,4,4,'2019-08-21 15:10:22',257.753000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5168,4,4,'2019-08-21 15:10:22',258.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5169,4,4,'2019-08-21 15:10:22',258.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5170,4,4,'2019-08-21 15:10:22',259.186000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5171,4,4,'2019-08-21 15:10:22',259.557000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5172,4,4,'2019-08-21 15:10:22',260.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5173,4,4,'2019-08-21 15:10:22',260.934000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5174,4,4,'2019-08-21 15:10:22',261.733000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5175,4,4,'2019-08-21 15:10:22',262.698000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5176,4,4,'2019-08-21 15:10:22',263.647000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5177,4,4,'2019-08-21 15:10:22',264.530000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5178,4,4,'2019-08-21 15:10:22',264.856000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5179,4,4,'2019-08-21 15:10:22',265.429000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5180,4,4,'2019-08-21 15:10:22',266.212000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5181,4,4,'2019-08-21 15:10:22',267.027000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5182,4,4,'2019-08-21 15:10:22',267.406000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5183,4,4,'2019-08-21 15:10:22',267.810000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5184,4,4,'2019-08-21 15:10:22',268.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5185,4,4,'2019-08-21 15:10:22',269.541000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5186,4,4,'2019-08-21 15:10:22',270.507000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5187,4,4,'2019-08-21 15:10:22',270.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5188,4,4,'2019-08-21 15:10:22',271.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5189,4,4,'2019-08-21 15:10:22',271.830000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5190,4,4,'2019-08-21 15:10:22',272.271000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5191,4,4,'2019-08-21 15:10:22',273.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5192,4,4,'2019-08-21 15:10:22',274.020000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5193,4,4,'2019-08-21 15:10:22',274.952000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5194,4,4,'2019-08-21 15:10:22',275.768000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5195,4,4,'2019-08-21 15:10:22',276.617000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5196,4,4,'2019-08-21 15:10:22',276.949000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5197,4,4,'2019-08-21 15:10:22',277.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5198,4,4,'2019-08-21 15:10:22',278.515000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5199,4,4,'2019-08-21 15:10:22',278.833000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5200,4,4,'2019-08-21 15:10:22',279.431000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5201,4,4,'2019-08-21 15:10:22',280.380000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5202,4,4,'2019-08-21 15:10:22',280.728000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5203,4,4,'2019-08-21 15:10:22',281.328000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5204,4,4,'2019-08-21 15:10:22',282.128000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5205,4,4,'2019-08-21 15:10:22',283.093000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5206,4,4,'2019-08-21 15:10:22',283.876000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5207,4,4,'2019-08-21 15:10:22',284.295000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5208,4,4,'2019-08-21 15:10:22',326.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5209,4,4,'2019-08-21 15:10:22',352.135000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5210,4,4,'2019-08-21 15:10:22',352.649000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5211,4,4,'2019-08-21 15:10:22',352.916000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5212,4,4,'2019-08-21 15:10:22',353.865000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5213,4,4,'2019-08-21 15:10:22',354.798000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5214,4,4,'2019-08-21 15:10:22',355.663000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5215,4,4,'2019-08-21 15:10:22',356.513000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5216,4,4,'2019-08-21 15:10:22',356.861000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5217,4,4,'2019-08-21 15:10:22',357.495000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5218,4,4,'2019-08-21 15:10:22',358.427000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5219,4,4,'2019-08-21 15:10:22',358.785000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5220,4,4,'2019-08-21 15:10:22',359.442000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5221,4,4,'2019-08-21 15:10:22',359.793000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5222,4,4,'2019-08-21 15:10:22',360.325000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5223,4,4,'2019-08-21 15:10:22',361.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5224,4,4,'2019-08-21 15:10:22',362.106000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5225,4,4,'2019-08-21 15:10:22',362.905000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5226,4,4,'2019-08-21 15:10:22',363.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5227,4,4,'2019-08-21 15:10:22',364.177000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5228,4,4,'2019-08-21 15:10:22',364.687000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5229,4,4,'2019-08-21 15:10:22',365.652000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5230,4,4,'2019-08-21 15:10:22',366.485000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5231,4,4,'2019-08-21 15:10:22',367.251000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5232,4,4,'2019-08-21 15:10:22',367.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5233,4,4,'2019-08-21 15:10:22',368.166000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5234,4,4,'2019-08-21 15:10:22',368.641000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5235,4,4,'2019-08-21 15:10:22',369.099000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5236,4,4,'2019-08-21 15:10:22',370.081000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5237,4,4,'2019-08-21 15:10:22',371.097000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5238,4,4,'2019-08-21 15:10:22',371.492000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5239,4,4,'2019-08-21 15:10:22',372.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5240,4,4,'2019-08-21 15:10:22',372.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5241,4,4,'2019-08-21 15:10:22',373.761000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5242,4,4,'2019-08-21 15:10:22',374.692000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5243,4,4,'2019-08-21 15:10:22',375.069000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5244,4,4,'2019-08-21 15:10:22',375.691000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5245,4,4,'2019-08-21 15:10:22',376.641000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5246,4,4,'2019-08-21 15:10:22',376.964000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5247,4,4,'2019-08-21 15:10:22',377.556000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5248,4,4,'2019-08-21 15:10:22',378.521000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5249,4,4,'2019-08-21 15:10:22',379.338000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5250,4,4,'2019-08-21 15:10:22',380.319000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5251,4,4,'2019-08-21 15:10:22',380.793000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5252,4,4,'2019-08-21 15:10:22',381.169000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5253,4,4,'2019-08-21 15:10:22',381.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5254,4,4,'2019-08-21 15:10:22',382.135000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5255,4,4,'2019-08-21 15:10:22',383.017000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5256,4,4,'2019-08-21 15:10:22',383.883000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5257,4,4,'2019-08-21 15:10:22',384.849000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5258,4,4,'2019-08-21 15:10:22',385.166000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5259,4,4,'2019-08-21 15:10:22',385.614000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5260,4,4,'2019-08-21 15:10:22',386.413000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5261,4,4,'2019-08-21 15:10:22',387.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5262,4,4,'2019-08-21 15:10:22',387.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5263,4,4,'2019-08-21 15:10:22',388.145000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5264,4,4,'2019-08-21 15:10:22',389.027000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5265,4,4,'2019-08-21 15:10:22',389.926000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5266,4,4,'2019-08-21 15:10:22',390.875000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5267,4,4,'2019-08-21 15:10:22',391.242000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5268,4,4,'2019-08-21 15:10:22',391.641000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5269,4,4,'2019-08-21 15:10:22',392.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5270,4,4,'2019-08-21 15:10:22',393.239000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5271,4,4,'2019-08-21 15:10:22',394.088000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5272,4,4,'2019-08-21 15:10:22',394.406000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5273,4,4,'2019-08-21 15:10:22',394.938000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5274,4,4,'2019-08-21 15:10:22',395.736000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5275,4,4,'2019-08-21 15:10:22',396.735000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5276,4,4,'2019-08-21 15:10:22',397.567000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5277,4,4,'2019-08-21 15:10:22',398.517000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5278,4,4,'2019-08-21 15:10:22',399.102000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5279,4,4,'2019-08-21 15:10:22',399.516000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5280,4,4,'2019-08-21 15:10:22',399.928000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5281,4,4,'2019-08-21 15:10:22',400.448000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5282,4,4,'2019-08-21 15:10:22',401.280000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5283,4,4,'2019-08-21 15:10:22',402.146000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5284,4,4,'2019-08-21 15:10:22',402.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5285,4,4,'2019-08-21 15:10:22',403.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5286,4,4,'2019-08-21 15:10:22',403.978000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5287,4,4,'2019-08-21 15:10:22',404.793000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5288,4,4,'2019-08-21 15:10:22',405.107000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5289,4,4,'2019-08-21 15:10:22',405.809000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5290,4,4,'2019-08-21 15:10:22',406.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5291,4,4,'2019-08-21 15:10:22',407.623000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5292,4,4,'2019-08-21 15:10:22',407.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5293,4,4,'2019-08-21 15:10:22',408.522000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5294,4,4,'2019-08-21 15:10:22',409.388000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5295,4,4,'2019-08-21 15:10:22',410.287000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5296,4,4,'2019-08-21 15:10:22',410.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5297,4,4,'2019-08-21 15:10:22',411.152000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5298,4,4,'2019-08-21 15:10:22',412.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5299,4,4,'2019-08-21 15:10:22',412.951000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5300,4,4,'2019-08-21 15:10:22',413.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5301,4,4,'2019-08-21 15:10:22',413.833000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5302,4,4,'2019-08-21 15:10:22',414.699000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5303,4,4,'2019-08-21 15:10:22',415.564000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5304,4,4,'2019-08-21 15:10:22',416.000000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5305,4,4,'2019-08-21 15:10:22',416.347000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5306,4,4,'2019-08-21 15:10:22',416.796000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5307,4,4,'2019-08-21 15:10:22',417.279000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5308,4,4,'2019-08-21 15:10:22',418.229000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5309,4,4,'2019-08-21 15:10:22',419.194000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5310,4,4,'2019-08-21 15:10:22',420.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5311,4,4,'2019-08-21 15:10:22',421.009000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5312,4,4,'2019-08-21 15:10:22',421.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5313,4,4,'2019-08-21 15:10:22',421.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5314,4,4,'2019-08-21 15:10:22',422.823000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5315,4,4,'2019-08-21 15:10:22',423.656000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5316,4,4,'2019-08-21 15:10:22',424.538000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5317,4,4,'2019-08-21 15:10:22',424.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5318,4,4,'2019-08-21 15:10:22',425.388000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5319,4,4,'2019-08-21 15:10:22',426.319000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5320,4,4,'2019-08-21 15:10:22',426.651000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5321,4,4,'2019-08-21 15:10:22',427.235000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5322,4,4,'2019-08-21 15:10:22',428.101000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5323,4,4,'2019-08-21 15:10:22',428.616000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5324,4,4,'2019-08-21 15:10:22',429.083000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5325,4,4,'2019-08-21 15:10:22',429.949000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5326,4,4,'2019-08-21 15:10:22',430.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5327,4,4,'2019-08-21 15:10:22',430.781000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5328,4,4,'2019-08-21 15:10:22',431.664000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5329,4,4,'2019-08-21 15:10:22',432.446000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5330,4,4,'2019-08-21 15:10:22',433.445000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5331,4,4,'2019-08-21 15:10:22',434.327000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5332,4,4,'2019-08-21 15:10:22',434.723000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5333,4,4,'2019-08-21 15:10:22',435.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5334,4,4,'2019-08-21 15:10:22',436.242000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5335,4,4,'2019-08-21 15:10:22',437.225000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5336,4,4,'2019-08-21 15:10:22',437.534000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5337,4,4,'2019-08-21 15:10:22',438.023000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5338,4,4,'2019-08-21 15:10:22',439.006000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5339,4,4,'2019-08-21 15:10:22',439.872000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5340,4,4,'2019-08-21 15:10:22',440.704000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5341,4,4,'2019-08-21 15:10:22',441.030000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5342,4,4,'2019-08-21 15:10:22',441.586000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5343,4,4,'2019-08-21 15:10:22',441.957000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5344,4,4,'2019-08-21 15:10:22',442.585000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5345,4,4,'2019-08-21 15:10:22',443.401000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5346,4,4,'2019-08-21 15:10:22',444.250000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5347,4,4,'2019-08-21 15:10:22',444.628000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5348,4,4,'2019-08-21 15:10:22',445.115000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5349,4,4,'2019-08-21 15:10:22',445.948000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5350,4,4,'2019-08-21 15:10:22',446.964000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5351,4,4,'2019-08-21 15:10:22',447.218000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5352,4,4,'2019-08-21 15:10:22',447.746000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5353,4,4,'2019-08-21 15:10:22',448.612000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5354,4,4,'2019-08-21 15:10:22',449.001000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5355,4,4,'2019-08-21 15:10:22',449.428000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5356,4,4,'2019-08-21 15:10:22',450.260000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5357,4,4,'2019-08-21 15:10:22',451.176000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5358,4,4,'2019-08-21 15:10:22',451.460000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5359,4,4,'2019-08-21 15:10:22',452.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5360,4,4,'2019-08-21 15:10:22',452.891000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5361,4,4,'2019-08-21 15:10:22',453.756000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5362,4,4,'2019-08-21 15:10:22',454.120000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5363,4,4,'2019-08-21 15:10:22',454.705000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5364,4,4,'2019-08-21 15:10:22',455.704000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5365,4,4,'2019-08-21 15:10:22',456.536000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5366,4,4,'2019-08-21 15:10:22',457.353000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5367,4,4,'2019-08-21 15:10:22',457.667000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5368,4,4,'2019-08-21 15:10:22',458.168000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5369,4,4,'2019-08-21 15:10:22',459.134000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5370,4,4,'2019-08-21 15:10:22',459.999000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5371,4,4,'2019-08-21 15:10:22',460.316000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5372,4,4,'2019-08-21 15:10:22',460.965000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5373,4,4,'2019-08-21 15:10:22',461.947000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5374,4,4,'2019-08-21 15:10:22',462.252000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5375,4,4,'2019-08-21 15:10:22',462.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5376,4,4,'2019-08-21 15:10:22',463.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5377,4,4,'2019-08-21 15:10:22',464.411000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5378,4,4,'2019-08-21 15:10:22',464.801000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5379,4,4,'2019-08-21 15:10:22',465.377000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5380,4,4,'2019-08-21 15:10:22',465.778000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5381,4,4,'2019-08-21 15:10:22',466.226000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5382,4,4,'2019-08-21 15:10:22',467.025000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5383,4,4,'2019-08-21 15:10:22',467.824000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5384,4,4,'2019-08-21 15:10:22',468.623000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5385,4,4,'2019-08-21 15:10:22',469.556000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5386,4,4,'2019-08-21 15:10:22',469.869000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5387,4,4,'2019-08-21 15:10:22',470.338000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5388,4,4,'2019-08-21 15:10:22',471.237000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5389,4,4,'2019-08-21 15:10:22',472.236000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5390,4,4,'2019-08-21 15:10:22',473.252000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5391,4,4,'2019-08-21 15:10:22',473.548000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5392,4,4,'2019-08-21 15:10:22',474.051000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5393,4,4,'2019-08-21 15:10:22',475.017000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5394,4,4,'2019-08-21 15:10:22',476.016000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5395,4,4,'2019-08-21 15:10:22',476.399000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5396,4,4,'2019-08-21 15:10:22',476.848000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5397,4,4,'2019-08-21 15:10:22',477.205000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5398,4,4,'2019-08-21 15:10:22',477.730000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5399,4,4,'2019-08-21 15:10:22',478.695000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5400,4,4,'2019-08-21 15:10:22',479.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5401,4,4,'2019-08-21 15:10:22',480.460000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5402,4,4,'2019-08-21 15:10:22',480.793000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5403,4,4,'2019-08-21 15:10:22',481.260000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5404,4,4,'2019-08-21 15:10:22',482.108000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5405,4,4,'2019-08-21 15:10:22',483.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5406,4,4,'2019-08-21 15:10:22',483.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5407,4,4,'2019-08-21 15:10:22',484.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5408,4,4,'2019-08-21 15:10:22',484.855000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5409,4,4,'2019-08-21 15:10:22',485.805000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5410,4,4,'2019-08-21 15:10:22',486.754000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5411,4,4,'2019-08-21 15:10:22',487.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5412,4,4,'2019-08-21 15:10:22',487.636000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5413,4,4,'2019-08-21 15:10:22',488.502000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5414,4,4,'2019-08-21 15:10:22',488.884000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5415,4,4,'2019-08-21 15:10:22',489.400000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5416,4,4,'2019-08-21 15:10:22',490.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5417,4,4,'2019-08-21 15:10:22',491.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5418,4,4,'2019-08-21 15:10:22',492.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5419,4,4,'2019-08-21 15:10:22',492.451000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5420,4,4,'2019-08-21 15:10:22',493.097000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5421,4,4,'2019-08-21 15:10:22',493.962000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5422,4,4,'2019-08-21 15:10:22',494.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5423,4,4,'2019-08-21 15:10:22',495.111000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5424,4,4,'2019-08-21 15:10:22',495.577000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5425,4,4,'2019-08-21 15:10:22',496.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5426,4,4,'2019-08-21 15:10:22',497.442000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5427,4,4,'2019-08-21 15:10:22',497.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5428,4,4,'2019-08-21 15:10:22',498.440000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5429,4,4,'2019-08-21 15:10:22',498.830000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5430,4,4,'2019-08-21 15:10:22',499.323000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5431,4,4,'2019-08-21 15:10:22',500.122000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5432,4,4,'2019-08-21 15:10:22',501.005000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5433,4,4,'2019-08-21 15:10:22',501.870000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5434,4,4,'2019-08-21 15:10:22',502.256000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5435,4,4,'2019-08-21 15:10:22',502.687000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5436,4,4,'2019-08-21 15:10:22',503.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5437,4,4,'2019-08-21 15:10:22',504.268000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5438,4,4,'2019-08-21 15:10:22',505.033000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5439,4,4,'2019-08-21 15:10:22',505.490000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5440,4,4,'2019-08-21 15:10:22',505.883000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5441,4,4,'2019-08-21 15:10:22',506.815000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5442,4,4,'2019-08-21 15:10:22',507.714000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5443,4,4,'2019-08-21 15:10:22',508.530000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5444,4,4,'2019-08-21 15:10:22',509.362000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5445,4,4,'2019-08-21 15:10:22',510.194000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5446,4,4,'2019-08-21 15:10:22',510.549000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5447,4,4,'2019-08-21 15:10:22',511.177000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5448,4,4,'2019-08-21 15:10:22',511.606000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5449,4,4,'2019-08-21 15:10:22',511.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5450,4,4,'2019-08-21 15:10:22',512.842000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5451,4,4,'2019-08-21 15:10:22',513.841000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5452,4,4,'2019-08-21 15:10:22',514.689000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5453,4,4,'2019-08-21 15:10:22',515.033000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5454,4,4,'2019-08-21 15:10:22',515.522000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5455,4,4,'2019-08-21 15:10:22',515.890000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5456,4,4,'2019-08-21 15:10:22',516.288000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5457,4,4,'2019-08-21 15:10:22',517.054000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5458,4,4,'2019-08-21 15:10:22',517.391000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5459,4,4,'2019-08-21 15:10:22',518.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5460,4,4,'2019-08-21 15:10:22',518.318000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5461,4,4,'2019-08-21 15:10:22',518.936000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5462,4,4,'2019-08-21 15:10:22',519.701000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5463,4,4,'2019-08-21 15:10:22',520.667000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5464,4,4,'2019-08-21 15:10:22',521.599000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5465,4,4,'2019-08-21 15:10:22',522.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5466,4,4,'2019-08-21 15:10:22',523.514000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5467,4,4,'2019-08-21 15:10:22',524.362000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5468,4,4,'2019-08-21 15:10:22',524.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5469,4,4,'2019-08-21 15:10:22',525.229000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5470,4,4,'2019-08-21 15:10:22',526.211000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5471,4,4,'2019-08-21 15:10:22',526.581000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5472,4,4,'2019-08-21 15:10:22',527.010000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5473,4,4,'2019-08-21 15:10:22',527.992000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5474,4,4,'2019-08-21 15:10:22',528.284000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5475,4,4,'2019-08-21 15:10:22',528.857000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5476,4,4,'2019-08-21 15:10:22',529.807000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5477,4,4,'2019-08-21 15:10:22',530.756000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5478,4,4,'2019-08-21 15:10:22',531.737000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5479,4,4,'2019-08-21 15:10:22',532.083000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5480,4,4,'2019-08-21 15:10:22',532.720000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5481,4,4,'2019-08-21 15:10:22',533.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5482,4,4,'2019-08-21 15:10:22',534.468000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5483,4,4,'2019-08-21 15:10:22',535.301000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5484,4,4,'2019-08-21 15:10:22',535.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5485,4,4,'2019-08-21 15:10:22',536.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5486,4,4,'2019-08-21 15:10:22',537.165000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5487,4,4,'2019-08-21 15:10:22',537.574000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5488,4,4,'2019-08-21 15:10:22',538.064000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5489,4,4,'2019-08-21 15:10:22',538.863000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5490,4,4,'2019-08-21 15:10:22',539.779000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5491,4,4,'2019-08-21 15:10:22',540.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5492,4,4,'2019-08-21 15:10:22',541.594000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5493,4,4,'2019-08-21 15:10:22',541.928000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5494,4,4,'2019-08-21 15:10:22',542.359000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5495,4,4,'2019-08-21 15:10:22',543.016000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5496,4,4,'2019-08-21 15:10:22',543.142000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5497,4,4,'2019-08-21 15:10:22',544.141000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5498,4,4,'2019-08-21 15:10:22',544.974000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5499,4,4,'2019-08-21 15:10:22',545.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5500,4,4,'2019-08-21 15:10:22',546.638000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5501,4,4,'2019-08-21 15:10:22',546.986000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5502,4,4,'2019-08-21 15:10:22',547.570000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5503,4,4,'2019-08-21 15:10:22',547.934000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5504,4,4,'2019-08-21 15:10:22',548.586000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5505,4,4,'2019-08-21 15:10:22',549.436000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5506,4,4,'2019-08-21 15:10:22',550.284000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5507,4,4,'2019-08-21 15:10:22',551.184000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5508,4,4,'2019-08-21 15:10:22',551.440000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5509,4,4,'2019-08-21 15:10:22',552.032000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5510,4,4,'2019-08-21 15:10:22',552.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5511,4,4,'2019-08-21 15:10:22',553.647000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5512,4,4,'2019-08-21 15:10:22',553.970000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5513,4,4,'2019-08-21 15:10:22',554.562000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5514,4,4,'2019-08-21 15:10:22',555.379000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5515,4,4,'2019-08-21 15:10:22',555.773000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5516,4,4,'2019-08-21 15:10:22',556.361000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5517,4,4,'2019-08-21 15:10:22',557.144000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5518,4,4,'2019-08-21 15:10:22',557.959000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5519,4,4,'2019-08-21 15:10:22',558.282000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5520,4,4,'2019-08-21 15:10:22',558.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5521,4,4,'2019-08-21 15:10:22',559.740000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5522,4,4,'2019-08-21 15:10:22',560.523000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5523,4,4,'2019-08-21 15:10:22',560.902000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5524,4,4,'2019-08-21 15:10:22',561.322000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5525,4,4,'2019-08-21 15:10:22',562.154000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5526,4,4,'2019-08-21 15:10:22',562.565000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5527,4,4,'2019-08-21 15:10:22',563.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5528,4,4,'2019-08-21 15:10:22',563.986000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5529,4,4,'2019-08-21 15:10:22',564.951000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5530,4,4,'2019-08-21 15:10:22',565.867000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5531,4,4,'2019-08-21 15:10:22',566.816000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5532,4,4,'2019-08-21 15:10:22',567.190000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5533,4,4,'2019-08-21 15:10:22',567.782000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5534,4,4,'2019-08-21 15:10:22',568.564000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5535,4,4,'2019-08-21 15:10:22',569.363000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5536,4,4,'2019-08-21 15:10:22',569.739000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5537,4,4,'2019-08-21 15:10:22',570.263000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5538,4,4,'2019-08-21 15:10:22',571.128000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5539,4,4,'2019-08-21 15:10:22',571.442000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5540,4,4,'2019-08-21 15:10:22',571.944000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5541,4,4,'2019-08-21 15:10:22',572.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5542,4,4,'2019-08-21 15:10:22',572.893000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5543,4,4,'2019-08-21 15:10:22',573.775000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5544,4,4,'2019-08-21 15:10:22',574.574000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5545,4,4,'2019-08-21 15:10:22',575.407000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5546,4,4,'2019-08-21 15:10:22',576.206000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5547,4,4,'2019-08-21 15:10:22',577.055000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5548,4,4,'2019-08-21 15:10:22',577.904000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5549,4,4,'2019-08-21 15:10:22',578.670000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5550,4,4,'2019-08-21 15:10:22',579.021000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5551,4,4,'2019-08-21 15:10:22',579.469000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5552,4,4,'2019-08-21 15:10:22',579.957000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5553,4,4,'2019-08-21 15:10:22',580.418000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5554,4,4,'2019-08-21 15:10:22',580.824000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5555,4,4,'2019-08-21 15:10:22',581.250000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5556,4,4,'2019-08-21 15:10:22',582.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5557,4,4,'2019-08-21 15:10:22',582.517000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5558,4,4,'2019-08-21 15:10:22',583.115000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5559,4,4,'2019-08-21 15:10:22',584.081000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5560,4,4,'2019-08-21 15:10:22',584.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5561,4,4,'2019-08-21 15:10:22',585.846000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5562,4,4,'2019-08-21 15:10:22',586.661000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5563,4,4,'2019-08-21 15:10:22',587.627000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5564,4,4,'2019-08-21 15:10:22',587.958000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5565,4,4,'2019-08-21 15:10:22',588.409000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5566,4,4,'2019-08-21 15:10:22',589.358000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5567,4,4,'2019-08-21 15:10:22',589.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5568,4,4,'2019-08-21 15:10:22',590.141000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5569,4,4,'2019-08-21 15:10:22',590.906000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5570,4,4,'2019-08-21 15:10:22',591.739000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5571,4,4,'2019-08-21 15:10:22',592.100000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5572,4,4,'2019-08-21 15:10:22',592.538000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5573,4,4,'2019-08-21 15:10:22',593.403000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5574,4,4,'2019-08-21 15:10:22',594.386000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5575,4,4,'2019-08-21 15:10:22',594.689000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5576,4,4,'2019-08-21 15:10:22',595.202000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5577,4,4,'2019-08-21 15:10:22',596.101000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5578,4,4,'2019-08-21 15:10:22',597.033000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5579,4,4,'2019-08-21 15:10:22',597.915000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5580,4,4,'2019-08-21 15:10:22',598.217000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5581,4,4,'2019-08-21 15:10:22',598.914000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5582,4,4,'2019-08-21 15:10:22',599.863000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5583,4,4,'2019-08-21 15:10:22',600.212000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5584,4,4,'2019-08-21 15:10:22',600.679000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5585,4,4,'2019-08-21 15:10:22',601.595000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5586,4,4,'2019-08-21 15:10:22',602.561000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5587,4,4,'2019-08-21 15:10:22',602.882000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5588,4,4,'2019-08-21 15:10:22',603.477000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5589,4,4,'2019-08-21 15:10:22',604.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5590,4,4,'2019-08-21 15:10:22',604.475000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5591,4,4,'2019-08-21 15:10:22',605.424000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5592,4,4,'2019-08-21 15:10:22',606.373000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5593,4,4,'2019-08-21 15:10:22',607.389000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5594,4,4,'2019-08-21 15:10:22',608.371000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5595,4,4,'2019-08-21 15:10:22',609.319000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5596,4,4,'2019-08-21 15:10:22',610.136000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5597,4,4,'2019-08-21 15:10:22',610.540000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5598,4,4,'2019-08-21 15:10:22',611.001000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5599,4,4,'2019-08-21 15:10:22',611.801000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5600,4,4,'2019-08-21 15:10:22',612.173000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5601,4,4,'2019-08-21 15:10:22',612.782000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5602,4,4,'2019-08-21 15:10:22',613.632000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5603,4,4,'2019-08-21 15:10:22',613.946000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5604,4,4,'2019-08-21 15:10:22',614.631000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5605,4,4,'2019-08-21 15:10:22',615.446000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5606,4,4,'2019-08-21 15:10:22',616.296000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5607,4,4,'2019-08-21 15:10:22',616.576000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5608,4,4,'2019-08-21 15:10:22',617.194000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5609,4,4,'2019-08-21 15:10:22',631.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5610,4,4,'2019-08-21 15:10:22',650.756000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5611,4,4,'2019-08-21 15:10:22',651.638000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5612,4,4,'2019-08-21 15:10:22',651.952000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5613,4,4,'2019-08-21 15:10:22',652.554000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5614,4,4,'2019-08-21 15:10:22',653.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5615,4,4,'2019-08-21 15:10:22',654.401000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5616,4,4,'2019-08-21 15:10:22',654.673000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5617,4,4,'2019-08-21 15:10:22',655.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5618,4,4,'2019-08-21 15:10:22',656.116000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5619,4,4,'2019-08-21 15:10:22',656.999000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5620,4,4,'2019-08-21 15:10:22',657.312000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5621,4,4,'2019-08-21 15:10:22',657.798000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5622,4,4,'2019-08-21 15:10:22',658.271000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5623,4,4,'2019-08-21 15:10:22',658.613000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5624,4,4,'2019-08-21 15:10:22',659.446000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5625,4,4,'2019-08-21 15:10:22',660.262000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5626,4,4,'2019-08-21 15:10:22',661.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5627,4,4,'2019-08-21 15:10:22',661.344000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5628,4,4,'2019-08-21 15:10:22',661.943000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5629,4,4,'2019-08-21 15:10:22',662.810000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5630,4,4,'2019-08-21 15:10:22',663.791000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5631,4,4,'2019-08-21 15:10:22',664.074000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5632,4,4,'2019-08-21 15:10:22',664.707000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5633,4,4,'2019-08-21 15:10:22',665.556000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5634,4,4,'2019-08-21 15:10:22',666.538000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5635,4,4,'2019-08-21 15:10:22',667.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5636,4,4,'2019-08-21 15:10:22',668.370000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5637,4,4,'2019-08-21 15:10:22',668.771000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5638,4,4,'2019-08-21 15:10:22',669.152000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5639,4,4,'2019-08-21 15:10:22',669.496000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5640,4,4,'2019-08-21 15:10:22',670.135000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5641,4,4,'2019-08-21 15:10:22',670.983000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5642,4,4,'2019-08-21 15:10:22',671.866000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5643,4,4,'2019-08-21 15:10:22',672.246000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5644,4,4,'2019-08-21 15:10:22',672.865000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5645,4,4,'2019-08-21 15:10:22',673.647000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5646,4,4,'2019-08-21 15:10:22',673.909000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5647,4,4,'2019-08-21 15:10:22',674.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5648,4,4,'2019-08-21 15:10:22',675.611000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5649,4,4,'2019-08-21 15:10:22',676.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5650,4,4,'2019-08-21 15:10:22',677.177000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5651,4,4,'2019-08-21 15:10:22',677.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5652,4,4,'2019-08-21 15:10:22',678.759000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5653,4,4,'2019-08-21 15:10:22',679.159000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5654,4,4,'2019-08-21 15:10:22',679.591000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5655,4,4,'2019-08-21 15:10:22',680.016000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5656,4,4,'2019-08-21 15:10:22',680.439000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5657,4,4,'2019-08-21 15:10:22',681.289000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5658,4,4,'2019-08-21 15:10:22',682.154000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5659,4,4,'2019-08-21 15:10:22',682.535000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5660,4,4,'2019-08-21 15:10:22',683.153000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5661,4,4,'2019-08-21 15:10:22',684.103000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5662,4,4,'2019-08-21 15:10:22',684.951000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5663,4,4,'2019-08-21 15:10:22',685.226000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5664,4,4,'2019-08-21 15:10:22',685.801000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5665,4,4,'2019-08-21 15:10:22',686.683000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5666,4,4,'2019-08-21 15:10:22',687.499000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5667,4,4,'2019-08-21 15:10:22',688.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5668,4,4,'2019-08-21 15:10:22',688.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5669,4,4,'2019-08-21 15:10:22',689.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5670,4,4,'2019-08-21 15:10:22',690.213000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5671,4,4,'2019-08-21 15:10:22',690.506000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5672,4,4,'2019-08-21 15:10:22',691.028000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5673,4,4,'2019-08-21 15:10:22',691.877000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5674,4,4,'2019-08-21 15:10:22',692.859000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5675,4,4,'2019-08-21 15:10:22',693.625000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5676,4,4,'2019-08-21 15:10:22',694.641000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5677,4,4,'2019-08-21 15:10:22',695.474000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5678,4,4,'2019-08-21 15:10:22',696.322000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5679,4,4,'2019-08-21 15:10:22',696.643000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5680,4,4,'2019-08-21 15:10:22',697.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5681,4,4,'2019-08-21 15:10:22',697.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5682,4,4,'2019-08-21 15:10:22',697.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5683,4,4,'2019-08-21 15:10:22',698.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5684,4,4,'2019-08-21 15:10:22',699.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5685,4,4,'2019-08-21 15:10:22',699.686000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5686,4,4,'2019-08-21 15:10:22',699.988000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5687,4,4,'2019-08-21 15:10:22',700.668000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5688,4,4,'2019-08-21 15:10:22',701.650000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5689,4,4,'2019-08-21 15:10:22',702.599000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5690,4,4,'2019-08-21 15:10:22',703.515000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5691,4,4,'2019-08-21 15:10:22',704.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5692,4,4,'2019-08-21 15:10:22',704.623000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5693,4,4,'2019-08-21 15:10:22',705.296000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5694,4,4,'2019-08-21 15:10:22',706.262000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5695,4,4,'2019-08-21 15:10:22',707.144000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5696,4,4,'2019-08-21 15:10:22',708.060000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5697,4,4,'2019-08-21 15:10:22',708.402000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5698,4,4,'2019-08-21 15:10:22',708.909000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5699,4,4,'2019-08-21 15:10:22',709.874000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5700,4,4,'2019-08-21 15:10:22',710.724000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5701,4,4,'2019-08-21 15:10:22',711.556000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5702,4,4,'2019-08-21 15:10:22',712.372000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5703,4,4,'2019-08-21 15:10:22',712.735000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5704,4,4,'2019-08-21 15:10:22',713.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5705,4,4,'2019-08-21 15:10:22',713.592000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5706,4,4,'2019-08-21 15:10:22',714.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5707,4,4,'2019-08-21 15:10:22',715.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5708,4,4,'2019-08-21 15:10:22',715.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5709,4,4,'2019-08-21 15:10:22',716.282000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5710,4,4,'2019-08-21 15:10:22',716.833000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5711,4,4,'2019-08-21 15:10:22',717.749000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5712,4,4,'2019-08-21 15:10:22',718.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5713,4,4,'2019-08-21 15:10:22',718.682000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5714,4,4,'2019-08-21 15:10:22',719.598000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5715,4,4,'2019-08-21 15:10:22',720.413000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5716,4,4,'2019-08-21 15:10:22',721.345000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5717,4,4,'2019-08-21 15:10:22',722.278000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5718,4,4,'2019-08-21 15:10:22',723.193000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5719,4,4,'2019-08-21 15:10:22',723.517000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5720,4,4,'2019-08-21 15:10:22',724.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5721,4,4,'2019-08-21 15:10:22',724.404000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5722,4,4,'2019-08-21 15:10:22',724.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5723,4,4,'2019-08-21 15:10:22',725.321000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5724,4,4,'2019-08-21 15:10:22',725.757000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5725,4,4,'2019-08-21 15:10:22',726.623000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5726,4,4,'2019-08-21 15:10:22',727.422000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5727,4,4,'2019-08-21 15:10:22',727.739000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5728,4,4,'2019-08-21 15:10:22',728.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5729,4,4,'2019-08-21 15:10:22',729.137000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5730,4,4,'2019-08-21 15:10:22',729.952000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5731,4,4,'2019-08-21 15:10:22',730.238000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5732,4,4,'2019-08-21 15:10:22',730.785000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5733,4,4,'2019-08-21 15:10:22',731.115000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5734,4,4,'2019-08-21 15:10:22',731.634000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5735,4,4,'2019-08-21 15:10:22',732.649000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5736,4,4,'2019-08-21 15:10:22',733.582000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5737,4,4,'2019-08-21 15:10:22',734.464000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5738,4,4,'2019-08-21 15:10:22',735.330000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5739,4,4,'2019-08-21 15:10:22',735.700000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5740,4,4,'2019-08-21 15:10:22',736.112000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5741,4,4,'2019-08-21 15:10:22',737.095000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5742,4,4,'2019-08-21 15:10:22',737.402000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5743,4,4,'2019-08-21 15:10:22',738.011000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5744,4,4,'2019-08-21 15:10:22',738.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5745,4,4,'2019-08-21 15:10:22',739.559000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5746,4,4,'2019-08-21 15:10:22',740.441000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5747,4,4,'2019-08-21 15:10:22',740.799000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5748,4,4,'2019-08-21 15:10:22',741.224000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5749,4,4,'2019-08-21 15:10:22',742.056000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5750,4,4,'2019-08-21 15:10:22',743.038000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5751,4,4,'2019-08-21 15:10:22',743.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5752,4,4,'2019-08-21 15:10:22',743.804000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5753,4,4,'2019-08-21 15:10:22',744.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5754,4,4,'2019-08-21 15:10:22',745.402000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5755,4,4,'2019-08-21 15:10:22',745.706000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5756,4,4,'2019-08-21 15:10:22',746.301000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5757,4,4,'2019-08-21 15:10:22',747.067000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5758,4,4,'2019-08-21 15:10:22',747.438000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5759,4,4,'2019-08-21 15:10:22',747.850000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5760,4,4,'2019-08-21 15:10:22',748.766000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5761,4,4,'2019-08-21 15:10:22',749.531000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5762,4,4,'2019-08-21 15:10:22',750.363000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5763,4,4,'2019-08-21 15:10:22',751.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5764,4,4,'2019-08-21 15:10:22',751.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5765,4,4,'2019-08-21 15:10:22',752.229000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5766,4,4,'2019-08-21 15:10:22',753.027000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5767,4,4,'2019-08-21 15:10:22',753.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5768,4,4,'2019-08-21 15:10:22',753.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5769,4,4,'2019-08-21 15:10:22',754.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5770,4,4,'2019-08-21 15:10:22',755.691000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5771,4,4,'2019-08-21 15:10:22',756.004000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5772,4,4,'2019-08-21 15:10:22',756.490000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5773,4,4,'2019-08-21 15:10:22',757.439000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5774,4,4,'2019-08-21 15:10:22',758.354000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5775,4,4,'2019-08-21 15:10:22',759.320000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5776,4,4,'2019-08-21 15:10:22',760.152000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5777,4,4,'2019-08-21 15:10:22',760.478000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5778,4,4,'2019-08-21 15:10:22',761.002000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5779,4,4,'2019-08-21 15:10:22',761.884000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5780,4,4,'2019-08-21 15:10:22',762.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5781,4,4,'2019-08-21 15:10:22',763.732000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5782,4,4,'2019-08-21 15:10:22',764.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5783,4,4,'2019-08-21 15:10:22',764.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5784,4,4,'2019-08-21 15:10:22',765.347000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5785,4,4,'2019-08-21 15:10:22',765.657000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5786,4,4,'2019-08-21 15:10:22',766.196000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5787,4,4,'2019-08-21 15:10:22',767.162000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5788,4,4,'2019-08-21 15:10:22',768.011000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5789,4,4,'2019-08-21 15:10:22',768.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5790,4,4,'2019-08-21 15:10:22',769.265000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5791,4,4,'2019-08-21 15:10:22',769.726000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5792,4,4,'2019-08-21 15:10:22',770.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5793,4,4,'2019-08-21 15:10:22',770.968000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5794,4,4,'2019-08-21 15:10:22',771.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5795,4,4,'2019-08-21 15:10:22',771.895000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5796,4,4,'2019-08-21 15:10:22',772.556000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5797,4,4,'2019-08-21 15:10:22',773.339000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5798,4,4,'2019-08-21 15:10:22',773.607000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5799,4,4,'2019-08-21 15:10:22',774.154000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5800,4,4,'2019-08-21 15:10:22',775.053000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5801,4,4,'2019-08-21 15:10:22',775.919000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5802,4,4,'2019-08-21 15:10:22',776.901000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5803,4,4,'2019-08-21 15:10:22',777.286000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5804,4,4,'2019-08-21 15:10:22',777.884000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5805,4,4,'2019-08-21 15:10:22',778.899000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5806,4,4,'2019-08-21 15:10:22',779.765000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5807,4,4,'2019-08-21 15:10:22',780.764000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5808,4,4,'2019-08-21 15:10:22',781.746000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5809,4,4,'2019-08-21 15:10:22',782.153000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5810,4,4,'2019-08-21 15:10:22',782.578000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5811,4,4,'2019-08-21 15:10:22',782.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5812,4,4,'2019-08-21 15:10:22',783.344000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5813,4,4,'2019-08-21 15:10:22',784.210000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5814,4,4,'2019-08-21 15:10:22',785.108000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5815,4,4,'2019-08-21 15:10:22',785.875000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5816,4,4,'2019-08-21 15:10:22',786.184000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5817,4,4,'2019-08-21 15:10:22',786.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5818,4,4,'2019-08-21 15:10:22',787.489000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5819,4,4,'2019-08-21 15:10:22',788.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5820,4,4,'2019-08-21 15:10:22',788.864000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5821,4,4,'2019-08-21 15:10:22',789.288000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5822,4,4,'2019-08-21 15:10:22',789.721000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5823,4,4,'2019-08-21 15:10:22',790.054000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5824,4,4,'2019-08-21 15:10:22',790.819000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5825,4,4,'2019-08-21 15:10:22',791.685000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5826,4,4,'2019-08-21 15:10:22',792.584000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5827,4,4,'2019-08-21 15:10:22',793.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5828,4,4,'2019-08-21 15:10:22',793.762000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5829,4,4,'2019-08-21 15:10:22',794.448000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5830,4,4,'2019-08-21 15:10:22',795.348000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5831,4,4,'2019-08-21 15:10:22',796.214000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5832,4,4,'2019-08-21 15:10:22',796.996000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5833,4,4,'2019-08-21 15:10:22',797.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5834,4,4,'2019-08-21 15:10:22',797.878000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5835,4,4,'2019-08-21 15:10:22',798.694000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5836,4,4,'2019-08-21 15:10:22',799.062000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5837,4,4,'2019-08-21 15:10:22',799.493000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5838,4,4,'2019-08-21 15:10:22',799.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5839,4,4,'2019-08-21 15:10:22',800.509000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5840,4,4,'2019-08-21 15:10:22',801.391000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5841,4,4,'2019-08-21 15:10:22',802.356000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5842,4,4,'2019-08-21 15:10:22',803.189000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5843,4,4,'2019-08-21 15:10:22',803.525000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5844,4,4,'2019-08-21 15:10:22',804.154000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5845,4,4,'2019-08-21 15:10:22',804.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5846,4,4,'2019-08-21 15:10:22',805.869000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5847,4,4,'2019-08-21 15:10:22',806.136000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5848,4,4,'2019-08-21 15:10:22',806.752000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5849,4,4,'2019-08-21 15:10:22',807.518000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5850,4,4,'2019-08-21 15:10:22',808.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5851,4,4,'2019-08-21 15:10:22',809.149000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5852,4,4,'2019-08-21 15:10:22',810.048000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5853,4,4,'2019-08-21 15:10:22',810.980000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5854,4,4,'2019-08-21 15:10:22',811.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5855,4,4,'2019-08-21 15:10:22',811.847000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5856,4,4,'2019-08-21 15:10:22',812.846000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5857,4,4,'2019-08-21 15:10:22',813.148000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5858,4,4,'2019-08-21 15:10:22',813.728000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5859,4,4,'2019-08-21 15:10:22',814.543000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5860,4,4,'2019-08-21 15:10:22',815.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5861,4,4,'2019-08-21 15:10:22',816.191000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5862,4,4,'2019-08-21 15:10:22',817.024000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5863,4,4,'2019-08-21 15:10:22',817.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5864,4,4,'2019-08-21 15:10:22',817.873000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5865,4,4,'2019-08-21 15:10:22',818.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5866,4,4,'2019-08-21 15:10:22',818.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5867,4,4,'2019-08-21 15:10:22',819.704000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5868,4,4,'2019-08-21 15:10:22',820.143000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5869,4,4,'2019-08-21 15:10:22',820.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5870,4,4,'2019-08-21 15:10:22',821.436000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5871,4,4,'2019-08-21 15:10:22',822.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5872,4,4,'2019-08-21 15:10:22',822.812000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5873,4,4,'2019-08-21 15:10:22',823.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5874,4,4,'2019-08-21 15:10:22',824.350000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5875,4,4,'2019-08-21 15:10:22',825.315000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5876,4,4,'2019-08-21 15:10:22',826.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5877,4,4,'2019-08-21 15:10:22',826.581000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5878,4,4,'2019-08-21 15:10:22',827.097000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5879,4,4,'2019-08-21 15:10:22',828.078000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5880,4,4,'2019-08-21 15:10:22',828.878000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5881,4,4,'2019-08-21 15:10:22',829.262000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5882,4,4,'2019-08-21 15:10:22',829.693000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5883,4,4,'2019-08-21 15:10:22',830.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5884,4,4,'2019-08-21 15:10:22',831.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5885,4,4,'2019-08-21 15:10:22',831.458000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5886,4,4,'2019-08-21 15:10:22',832.324000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5887,4,4,'2019-08-21 15:10:22',833.272000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5888,4,4,'2019-08-21 15:10:22',834.056000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5889,4,4,'2019-08-21 15:10:22',834.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5890,4,4,'2019-08-21 15:10:22',834.821000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5891,4,4,'2019-08-21 15:10:22',835.187000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5892,4,4,'2019-08-21 15:10:22',835.721000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5893,4,4,'2019-08-21 15:10:22',836.569000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5894,4,4,'2019-08-21 15:10:22',836.859000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5895,4,4,'2019-08-21 15:10:22',837.568000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5896,4,4,'2019-08-21 15:10:22',838.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5897,4,4,'2019-08-21 15:10:22',839.333000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5898,4,4,'2019-08-21 15:10:22',840.115000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5899,4,4,'2019-08-21 15:10:22',840.406000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5900,4,4,'2019-08-21 15:10:22',840.932000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5901,4,4,'2019-08-21 15:10:22',841.714000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5902,4,4,'2019-08-21 15:10:22',842.496000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5903,4,4,'2019-08-21 15:10:22',843.278000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5904,4,4,'2019-08-21 15:10:22',844.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5905,4,4,'2019-08-21 15:10:22',844.527000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5906,4,4,'2019-08-21 15:10:22',845.010000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5907,4,4,'2019-08-21 15:10:22',845.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5908,4,4,'2019-08-21 15:10:22',846.658000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5909,4,4,'2019-08-21 15:10:22',847.641000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5910,4,4,'2019-08-21 15:10:22',847.974000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5911,4,4,'2019-08-21 15:10:22',848.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5912,4,4,'2019-08-21 15:10:22',849.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5913,4,4,'2019-08-21 15:10:22',849.616000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5914,4,4,'2019-08-21 15:10:22',850.138000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5915,4,4,'2019-08-21 15:10:22',850.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5916,4,4,'2019-08-21 15:10:22',851.786000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5917,4,4,'2019-08-21 15:10:22',852.568000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5918,4,4,'2019-08-21 15:10:22',853.367000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5919,4,4,'2019-08-21 15:10:22',853.778000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5920,4,4,'2019-08-21 15:10:22',854.217000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5921,4,4,'2019-08-21 15:10:22',854.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5922,4,4,'2019-08-21 15:10:22',855.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5923,4,4,'2019-08-21 15:10:22',856.015000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5924,4,4,'2019-08-21 15:10:22',856.848000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5925,4,4,'2019-08-21 15:10:22',857.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5926,4,4,'2019-08-21 15:10:22',858.051000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5927,4,4,'2019-08-21 15:10:22',858.679000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5928,4,4,'2019-08-21 15:10:22',859.610000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5929,4,4,'2019-08-21 15:10:22',859.854000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5930,4,4,'2019-08-21 15:10:22',860.510000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5931,4,4,'2019-08-21 15:10:22',860.882000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5932,4,4,'2019-08-21 15:10:22',861.376000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5933,4,4,'2019-08-21 15:10:22',861.738000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5934,4,4,'2019-08-21 15:10:22',862.142000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5935,4,4,'2019-08-21 15:10:22',862.974000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5936,4,4,'2019-08-21 15:10:22',863.956000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5937,4,4,'2019-08-21 15:10:22',864.788000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5938,4,4,'2019-08-21 15:10:22',865.754000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5939,4,4,'2019-08-21 15:10:22',866.071000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5940,4,4,'2019-08-21 15:10:22',866.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5941,4,4,'2019-08-21 15:10:22',867.519000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5942,4,4,'2019-08-21 15:10:22',868.318000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5943,4,4,'2019-08-21 15:10:22',868.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5944,4,4,'2019-08-21 15:10:22',869.317000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5945,4,4,'2019-08-21 15:10:22',870.216000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5946,4,4,'2019-08-21 15:10:22',871.015000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5947,4,4,'2019-08-21 15:10:22',871.362000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5948,4,4,'2019-08-21 15:10:22',871.814000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5949,4,4,'2019-08-21 15:10:22',872.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5950,4,4,'2019-08-21 15:10:22',873.646000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5951,4,4,'2019-08-21 15:10:22',873.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5952,4,4,'2019-08-21 15:10:22',874.645000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5953,4,4,'2019-08-21 15:10:22',875.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5954,4,4,'2019-08-21 15:10:22',876.393000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5955,4,4,'2019-08-21 15:10:22',877.241000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5956,4,4,'2019-08-21 15:10:22',878.207000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5957,4,4,'2019-08-21 15:10:22',878.486000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5958,4,4,'2019-08-21 15:10:22',878.989000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5959,4,4,'2019-08-21 15:10:22',879.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5960,4,4,'2019-08-21 15:10:22',879.789000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5961,4,4,'2019-08-21 15:10:22',880.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5962,4,4,'2019-08-21 15:10:22',881.403000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5963,4,4,'2019-08-21 15:10:22',882.303000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5964,4,4,'2019-08-21 15:10:22',883.285000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5965,4,4,'2019-08-21 15:10:22',883.596000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5966,4,4,'2019-08-21 15:10:22',884.084000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5967,4,4,'2019-08-21 15:10:22',884.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5968,4,4,'2019-08-21 15:10:22',885.766000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5969,4,4,'2019-08-21 15:10:22',886.155000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5970,4,4,'2019-08-21 15:10:22',886.698000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5971,4,4,'2019-08-21 15:10:22',887.497000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5972,4,4,'2019-08-21 15:10:22',888.312000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5973,4,4,'2019-08-21 15:10:22',889.245000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5974,4,4,'2019-08-21 15:10:22',889.682000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5975,4,4,'2019-08-21 15:10:22',890.045000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5976,4,4,'2019-08-21 15:10:22',890.498000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5977,4,4,'2019-08-21 15:10:22',890.877000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5978,4,4,'2019-08-21 15:10:22',891.809000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5979,4,4,'2019-08-21 15:10:22',892.101000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5980,4,4,'2019-08-21 15:10:22',892.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5981,4,4,'2019-08-21 15:10:22',893.523000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5982,4,4,'2019-08-21 15:10:22',894.406000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5983,4,4,'2019-08-21 15:10:22',895.306000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5984,4,4,'2019-08-21 15:10:22',895.560000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5985,4,4,'2019-08-21 15:10:22',896.304000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5986,4,4,'2019-08-21 15:10:22',897.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5987,4,4,'2019-08-21 15:10:22',898.186000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5988,4,4,'2019-08-21 15:10:22',899.034000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5989,4,4,'2019-08-21 15:10:22',899.867000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5990,4,4,'2019-08-21 15:10:22',900.749000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5991,4,4,'2019-08-21 15:10:22',901.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5992,4,4,'2019-08-21 15:10:22',901.748000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5993,4,4,'2019-08-21 15:10:22',902.106000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5994,4,4,'2019-08-21 15:10:22',902.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5995,4,4,'2019-08-21 15:10:22',903.529000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5996,4,4,'2019-08-21 15:10:22',904.329000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5997,4,4,'2019-08-21 15:10:22',905.145000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5998,4,4,'2019-08-21 15:10:22',905.553000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (5999,4,4,'2019-08-21 15:10:22',906.061000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6000,4,4,'2019-08-21 15:10:22',907.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6001,4,4,'2019-08-21 15:10:22',907.347000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6002,4,4,'2019-08-21 15:10:22',907.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6003,4,4,'2019-08-21 15:10:22',908.435000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6004,4,4,'2019-08-21 15:10:22',908.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6005,4,4,'2019-08-21 15:10:22',909.906000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6006,4,4,'2019-08-21 15:10:22',910.198000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6007,4,4,'2019-08-21 15:10:22',910.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6008,4,4,'2019-08-21 15:10:22',911.504000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6009,4,4,'2019-08-21 15:10:22',912.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6010,4,4,'2019-08-21 15:10:22',928.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6011,4,4,'2019-08-21 15:10:22',948.524000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6012,4,4,'2019-08-21 15:10:22',948.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6013,4,4,'2019-08-21 15:10:22',949.506000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6014,4,4,'2019-08-21 15:10:22',950.322000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6015,4,4,'2019-08-21 15:10:22',951.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6016,4,4,'2019-08-21 15:10:22',951.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6017,4,4,'2019-08-21 15:10:22',952.137000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6018,4,4,'2019-08-21 15:10:22',953.002000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6019,4,4,'2019-08-21 15:10:22',953.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6020,4,4,'2019-08-21 15:10:22',954.311000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6021,4,4,'2019-08-21 15:10:22',954.783000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6022,4,4,'2019-08-21 15:10:22',955.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6023,4,4,'2019-08-21 15:10:22',956.715000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6024,4,4,'2019-08-21 15:10:22',956.980000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6025,4,4,'2019-08-21 15:10:22',957.647000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6026,4,4,'2019-08-21 15:10:22',958.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6027,4,4,'2019-08-21 15:10:22',959.512000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6028,4,4,'2019-08-21 15:10:22',960.411000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6029,4,4,'2019-08-21 15:10:22',960.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6030,4,4,'2019-08-21 15:10:22',961.359000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6031,4,4,'2019-08-21 15:10:22',961.757000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6032,4,4,'2019-08-21 15:10:22',962.259000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6033,4,4,'2019-08-21 15:10:22',963.258000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6034,4,4,'2019-08-21 15:10:22',964.224000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6035,4,4,'2019-08-21 15:10:22',965.205000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6036,4,4,'2019-08-21 15:10:22',966.055000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6037,4,4,'2019-08-21 15:10:22',966.887000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6038,4,4,'2019-08-21 15:10:22',967.239000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6039,4,4,'2019-08-21 15:10:22',967.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6040,4,4,'2019-08-21 15:10:22',968.156000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6041,4,4,'2019-08-21 15:10:22',968.802000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6042,4,4,'2019-08-21 15:10:22',969.717000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6043,4,4,'2019-08-21 15:10:22',970.500000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6044,4,4,'2019-08-21 15:10:22',970.856000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6045,4,4,'2019-08-21 15:10:22',971.499000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6046,4,4,'2019-08-21 15:10:22',972.314000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6047,4,4,'2019-08-21 15:10:22',972.579000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6048,4,4,'2019-08-21 15:10:22',973.313000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6049,4,4,'2019-08-21 15:10:22',974.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6050,4,4,'2019-08-21 15:10:22',975.244000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6051,4,4,'2019-08-21 15:10:22',976.210000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6052,4,4,'2019-08-21 15:10:22',977.043000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6053,4,4,'2019-08-21 15:10:22',977.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6054,4,4,'2019-08-21 15:10:22',978.213000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6055,4,4,'2019-08-21 15:10:22',978.774000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6056,4,4,'2019-08-21 15:10:22',979.140000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6057,4,4,'2019-08-21 15:10:22',979.573000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6058,4,4,'2019-08-21 15:10:22',980.389000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6059,4,4,'2019-08-21 15:10:22',981.388000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6060,4,4,'2019-08-21 15:10:22',982.354000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6061,4,4,'2019-08-21 15:10:22',982.687000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6062,4,4,'2019-08-21 15:10:22',983.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6063,4,4,'2019-08-21 15:10:22',984.185000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6064,4,4,'2019-08-21 15:10:22',984.571000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6065,4,4,'2019-08-21 15:10:22',985.101000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6066,4,4,'2019-08-21 15:10:22',985.899000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6067,4,4,'2019-08-21 15:10:22',986.882000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6068,4,4,'2019-08-21 15:10:22',987.881000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6069,4,4,'2019-08-21 15:10:22',988.729000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6070,4,4,'2019-08-21 15:10:22',989.105000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6071,4,4,'2019-08-21 15:10:22',989.729000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6072,4,4,'2019-08-21 15:10:22',990.595000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6073,4,4,'2019-08-21 15:10:22',991.460000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6074,4,4,'2019-08-21 15:10:22',991.766000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6075,4,4,'2019-08-21 15:10:22',992.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6076,4,4,'2019-08-21 15:10:22',992.804000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6077,4,4,'2019-08-21 15:10:22',993.175000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6078,4,4,'2019-08-21 15:10:22',993.974000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6079,4,4,'2019-08-21 15:10:22',994.386000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6080,4,4,'2019-08-21 15:10:22',994.757000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6081,4,4,'2019-08-21 15:10:22',995.605000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6082,4,4,'2019-08-21 15:10:22',996.422000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6083,4,4,'2019-08-21 15:10:22',997.320000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6084,4,4,'2019-08-21 15:10:22',998.119000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6085,4,4,'2019-08-21 15:10:22',999.052000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6086,4,4,'2019-08-21 15:10:22',1000.018000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6087,4,4,'2019-08-21 15:10:22',1000.331000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6088,4,4,'2019-08-21 15:10:22',1001.017000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6089,4,4,'2019-08-21 15:10:22',1001.390000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6090,4,4,'2019-08-21 15:10:22',1001.849000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6091,4,4,'2019-08-21 15:10:22',1002.682000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6092,4,4,'2019-08-21 15:10:22',1003.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6093,4,4,'2019-08-21 15:10:22',1004.596000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6094,4,4,'2019-08-21 15:10:22',1004.866000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6095,4,4,'2019-08-21 15:10:22',1005.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6096,4,4,'2019-08-21 15:10:22',1005.763000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6097,4,4,'2019-08-21 15:10:22',1006.294000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6098,4,4,'2019-08-21 15:10:22',1007.276000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6099,4,4,'2019-08-21 15:10:22',1008.226000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6100,4,4,'2019-08-21 15:10:22',1008.514000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6101,4,4,'2019-08-21 15:10:22',1009.174000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6102,4,4,'2019-08-21 15:10:22',1010.156000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6103,4,4,'2019-08-21 15:10:22',1010.989000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6104,4,4,'2019-08-21 15:10:22',1011.477000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6105,4,4,'2019-08-21 15:10:22',1011.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6106,4,4,'2019-08-21 15:10:22',1012.771000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6107,4,4,'2019-08-21 15:10:22',1013.736000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6108,4,4,'2019-08-21 15:10:22',1014.685000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6109,4,4,'2019-08-21 15:10:22',1015.484000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6110,4,4,'2019-08-21 15:10:22',1016.399000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6111,4,4,'2019-08-21 15:10:22',1016.676000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6112,4,4,'2019-08-21 15:10:22',1017.216000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6113,4,4,'2019-08-21 15:10:22',1018.015000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6114,4,4,'2019-08-21 15:10:22',1018.430000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6115,4,4,'2019-08-21 15:10:22',1018.931000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6116,4,4,'2019-08-21 15:10:22',1019.713000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6117,4,4,'2019-08-21 15:10:22',1020.679000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6118,4,4,'2019-08-21 15:10:22',1021.461000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6119,4,4,'2019-08-21 15:10:22',1021.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6120,4,4,'2019-08-21 15:10:22',1022.410000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6121,4,4,'2019-08-21 15:10:22',1023.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6122,4,4,'2019-08-21 15:10:22',1023.549000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6123,4,4,'2019-08-21 15:10:22',1024.208000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6124,4,4,'2019-08-21 15:10:22',1024.627000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6125,4,4,'2019-08-21 15:10:22',1025.156000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6126,4,4,'2019-08-21 15:10:22',1026.089000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6127,4,4,'2019-08-21 15:10:22',1026.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6128,4,4,'2019-08-21 15:10:22',1027.837000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6129,4,4,'2019-08-21 15:10:22',1028.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6130,4,4,'2019-08-21 15:10:22',1028.637000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6131,4,4,'2019-08-21 15:10:22',1029.568000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6132,4,4,'2019-08-21 15:10:22',1029.826000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6133,4,4,'2019-08-21 15:10:22',1030.534000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6134,4,4,'2019-08-21 15:10:22',1031.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6135,4,4,'2019-08-21 15:10:22',1032.216000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6136,4,4,'2019-08-21 15:10:22',1033.215000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6137,4,4,'2019-08-21 15:10:22',1033.464000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6138,4,4,'2019-08-21 15:10:22',1034.146000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6139,4,4,'2019-08-21 15:10:22',1035.112000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6140,4,4,'2019-08-21 15:10:22',1035.389000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6141,4,4,'2019-08-21 15:10:22',1036.095000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6142,4,4,'2019-08-21 15:10:22',1037.011000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6143,4,4,'2019-08-21 15:10:22',1037.323000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6144,4,4,'2019-08-21 15:10:22',1037.793000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6145,4,4,'2019-08-21 15:10:22',1038.675000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6146,4,4,'2019-08-21 15:10:22',1039.624000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6147,4,4,'2019-08-21 15:10:22',1040.406000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6148,4,4,'2019-08-21 15:10:22',1041.322000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6149,4,4,'2019-08-21 15:10:22',1041.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6150,4,4,'2019-08-21 15:10:22',1042.104000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6151,4,4,'2019-08-21 15:10:22',1042.888000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6152,4,4,'2019-08-21 15:10:22',1043.720000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6153,4,4,'2019-08-21 15:10:22',1044.569000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6154,4,4,'2019-08-21 15:10:22',1044.932000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6155,4,4,'2019-08-21 15:10:22',1045.551000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6156,4,4,'2019-08-21 15:10:22',1045.899000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6157,4,4,'2019-08-21 15:10:22',1046.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6158,4,4,'2019-08-21 15:10:22',1047.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6159,4,4,'2019-08-21 15:10:22',1048.182000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6160,4,4,'2019-08-21 15:10:22',1048.529000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6161,4,4,'2019-08-21 15:10:22',1049.081000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6162,4,4,'2019-08-21 15:10:22',1049.896000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6163,4,4,'2019-08-21 15:10:22',1050.745000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6164,4,4,'2019-08-21 15:10:22',1051.678000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6165,4,4,'2019-08-21 15:10:22',1052.097000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6166,4,4,'2019-08-21 15:10:22',1052.693000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6167,4,4,'2019-08-21 15:10:22',1053.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6168,4,4,'2019-08-21 15:10:22',1054.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6169,4,4,'2019-08-21 15:10:22',1054.857000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6170,4,4,'2019-08-21 15:10:22',1055.391000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6171,4,4,'2019-08-21 15:10:22',1056.189000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6172,4,4,'2019-08-21 15:10:22',1057.005000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6173,4,4,'2019-08-21 15:10:22',1057.326000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6174,4,4,'2019-08-21 15:10:22',1057.771000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6175,4,4,'2019-08-21 15:10:22',1058.537000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6176,4,4,'2019-08-21 15:10:22',1058.817000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6177,4,4,'2019-08-21 15:10:22',1059.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6178,4,4,'2019-08-21 15:10:22',1060.318000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6179,4,4,'2019-08-21 15:10:22',1061.201000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6180,4,4,'2019-08-21 15:10:22',1062.100000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6181,4,4,'2019-08-21 15:10:22',1062.516000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6182,4,4,'2019-08-21 15:10:22',1062.966000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6183,4,4,'2019-08-21 15:10:22',1063.814000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6184,4,4,'2019-08-21 15:10:22',1064.139000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6185,4,4,'2019-08-21 15:10:22',1064.580000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6186,4,4,'2019-08-21 15:10:22',1065.529000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6187,4,4,'2019-08-21 15:10:22',1066.395000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6188,4,4,'2019-08-21 15:10:22',1067.211000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6189,4,4,'2019-08-21 15:10:22',1067.524000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6190,4,4,'2019-08-21 15:10:22',1068.093000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6191,4,4,'2019-08-21 15:10:22',1069.075000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6192,4,4,'2019-08-21 15:10:22',1069.958000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6193,4,4,'2019-08-21 15:10:22',1070.275000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6194,4,4,'2019-08-21 15:10:22',1070.856000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6195,4,4,'2019-08-21 15:10:22',1071.839000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6196,4,4,'2019-08-21 15:10:22',1072.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6197,4,4,'2019-08-21 15:10:22',1073.604000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6198,4,4,'2019-08-21 15:10:22',1074.536000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6199,4,4,'2019-08-21 15:10:22',1075.552000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6200,4,4,'2019-08-21 15:10:22',1075.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6201,4,4,'2019-08-21 15:10:22',1076.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6202,4,4,'2019-08-21 15:10:22',1076.926000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6203,4,4,'2019-08-21 15:10:22',1077.250000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6204,4,4,'2019-08-21 15:10:22',1078.082000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6205,4,4,'2019-08-21 15:10:22',1079.015000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6206,4,4,'2019-08-21 15:10:22',1079.914000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6207,4,4,'2019-08-21 15:10:22',1080.262000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6208,4,4,'2019-08-21 15:10:22',1080.912000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6209,4,4,'2019-08-21 15:10:22',1081.359000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6210,4,4,'2019-08-21 15:10:22',1081.679000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6211,4,4,'2019-08-21 15:10:22',1082.660000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6212,4,4,'2019-08-21 15:10:22',1083.593000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6213,4,4,'2019-08-21 15:10:22',1084.459000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6214,4,4,'2019-08-21 15:10:22',1085.324000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6215,4,4,'2019-08-21 15:10:22',1085.683000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6216,4,4,'2019-08-21 15:10:22',1086.257000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6217,4,4,'2019-08-21 15:10:22',1086.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6218,4,4,'2019-08-21 15:10:22',1087.072000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6219,4,4,'2019-08-21 15:10:22',1088.038000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6220,4,4,'2019-08-21 15:10:22',1088.303000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6221,4,4,'2019-08-21 15:10:22',1089.021000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6222,4,4,'2019-08-21 15:10:22',1089.902000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6223,4,4,'2019-08-21 15:10:22',1090.785000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6224,4,4,'2019-08-21 15:10:22',1091.114000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6225,4,4,'2019-08-21 15:10:22',1091.567000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6226,4,4,'2019-08-21 15:10:22',1092.333000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6227,4,4,'2019-08-21 15:10:22',1093.232000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6228,4,4,'2019-08-21 15:10:22',1094.081000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6229,4,4,'2019-08-21 15:10:22',1094.931000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6230,4,4,'2019-08-21 15:10:22',1095.226000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6231,4,4,'2019-08-21 15:10:22',1095.763000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6232,4,4,'2019-08-21 15:10:22',1096.612000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6233,4,4,'2019-08-21 15:10:22',1096.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6234,4,4,'2019-08-21 15:10:22',1097.411000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6235,4,4,'2019-08-21 15:10:22',1098.377000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6236,4,4,'2019-08-21 15:10:22',1099.343000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6237,4,4,'2019-08-21 15:10:22',1100.241000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6238,4,4,'2019-08-21 15:10:22',1100.546000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6239,4,4,'2019-08-21 15:10:22',1101.107000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6240,4,4,'2019-08-21 15:10:22',1102.022000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6241,4,4,'2019-08-21 15:10:22',1102.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6242,4,4,'2019-08-21 15:10:22',1103.176000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6243,4,4,'2019-08-21 15:10:22',1103.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6244,4,4,'2019-08-21 15:10:22',1104.503000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6245,4,4,'2019-08-21 15:10:22',1104.919000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6246,4,4,'2019-08-21 15:10:22',1105.303000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6247,4,4,'2019-08-21 15:10:22',1106.085000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6248,4,4,'2019-08-21 15:10:22',1107.067000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6249,4,4,'2019-08-21 15:10:22',1107.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6250,4,4,'2019-08-21 15:10:22',1108.225000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6251,4,4,'2019-08-21 15:10:22',1108.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6252,4,4,'2019-08-21 15:10:22',1109.515000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6253,4,4,'2019-08-21 15:10:22',1110.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6254,4,4,'2019-08-21 15:10:22',1110.684000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6255,4,4,'2019-08-21 15:10:22',1111.163000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6256,4,4,'2019-08-21 15:10:22',1112.128000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6257,4,4,'2019-08-21 15:10:22',1112.396000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6258,4,4,'2019-08-21 15:10:22',1112.978000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6259,4,4,'2019-08-21 15:10:22',1113.826000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6260,4,4,'2019-08-21 15:10:22',1114.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6261,4,4,'2019-08-21 15:10:22',1114.643000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6262,4,4,'2019-08-21 15:10:22',1115.591000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6263,4,4,'2019-08-21 15:10:22',1116.490000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6264,4,4,'2019-08-21 15:10:22',1117.322000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6265,4,4,'2019-08-21 15:10:22',1117.616000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6266,4,4,'2019-08-21 15:10:22',1118.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6267,4,4,'2019-08-21 15:10:22',1119.071000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6268,4,4,'2019-08-21 15:10:22',1120.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6269,4,4,'2019-08-21 15:10:22',1120.407000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6270,4,4,'2019-08-21 15:10:22',1120.819000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6271,4,4,'2019-08-21 15:10:22',1121.734000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6272,4,4,'2019-08-21 15:10:22',1122.534000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6273,4,4,'2019-08-21 15:10:22',1122.826000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6274,4,4,'2019-08-21 15:10:22',1123.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6275,4,4,'2019-08-21 15:10:22',1124.248000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6276,4,4,'2019-08-21 15:10:22',1125.230000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6277,4,4,'2019-08-21 15:10:22',1125.577000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6278,4,4,'2019-08-21 15:10:22',1126.063000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6279,4,4,'2019-08-21 15:10:22',1126.434000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6280,4,4,'2019-08-21 15:10:22',1126.962000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6281,4,4,'2019-08-21 15:10:22',1127.895000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6282,4,4,'2019-08-21 15:10:22',1128.693000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6283,4,4,'2019-08-21 15:10:22',1129.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6284,4,4,'2019-08-21 15:10:22',1130.342000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6285,4,4,'2019-08-21 15:10:22',1130.727000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6286,4,4,'2019-08-21 15:10:22',1131.225000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6287,4,4,'2019-08-21 15:10:22',1132.223000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6288,4,4,'2019-08-21 15:10:22',1132.479000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6289,4,4,'2019-08-21 15:10:22',1133.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6290,4,4,'2019-08-21 15:10:22',1134.154000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6291,4,4,'2019-08-21 15:10:22',1135.004000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6292,4,4,'2019-08-21 15:10:22',1135.301000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6293,4,4,'2019-08-21 15:10:22',1135.919000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6294,4,4,'2019-08-21 15:10:22',1136.901000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6295,4,4,'2019-08-21 15:10:22',1137.155000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6296,4,4,'2019-08-21 15:10:22',1137.733000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6297,4,4,'2019-08-21 15:10:22',1138.517000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6298,4,4,'2019-08-21 15:10:22',1139.282000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6299,4,4,'2019-08-21 15:10:22',1140.164000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6300,4,4,'2019-08-21 15:10:22',1140.947000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6301,4,4,'2019-08-21 15:10:22',1141.912000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6302,4,4,'2019-08-21 15:10:22',1142.812000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6303,4,4,'2019-08-21 15:10:22',1143.201000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6304,4,4,'2019-08-21 15:10:22',1143.660000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6305,4,4,'2019-08-21 15:10:22',1144.058000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6306,4,4,'2019-08-21 15:10:22',1144.427000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6307,4,4,'2019-08-21 15:10:22',1145.242000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6308,4,4,'2019-08-21 15:10:22',1146.208000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6309,4,4,'2019-08-21 15:10:22',1147.141000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6310,4,4,'2019-08-21 15:10:22',1148.039000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6311,4,4,'2019-08-21 15:10:22',1148.371000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6312,4,4,'2019-08-21 15:10:22',1148.922000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6313,4,4,'2019-08-21 15:10:22',1149.737000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6314,4,4,'2019-08-21 15:10:22',1150.033000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6315,4,4,'2019-08-21 15:10:22',1150.703000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6316,4,4,'2019-08-21 15:10:22',1151.586000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6317,4,4,'2019-08-21 15:10:22',1152.584000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6318,4,4,'2019-08-21 15:10:22',1153.566000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6319,4,4,'2019-08-21 15:10:22',1154.349000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6320,4,4,'2019-08-21 15:10:22',1154.729000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6321,4,4,'2019-08-21 15:10:22',1155.198000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6322,4,4,'2019-08-21 15:10:22',1155.556000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6323,4,4,'2019-08-21 15:10:22',1156.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6324,4,4,'2019-08-21 15:10:22',1156.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6325,4,4,'2019-08-21 15:10:22',1157.896000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6326,4,4,'2019-08-21 15:10:22',1158.728000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6327,4,4,'2019-08-21 15:10:22',1159.053000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6328,4,4,'2019-08-21 15:10:22',1159.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6329,4,4,'2019-08-21 15:10:22',1160.525000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6330,4,4,'2019-08-21 15:10:22',1160.816000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6331,4,4,'2019-08-21 15:10:22',1161.491000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6332,4,4,'2019-08-21 15:10:22',1162.490000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6333,4,4,'2019-08-21 15:10:22',1162.882000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6334,4,4,'2019-08-21 15:10:22',1163.372000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6335,4,4,'2019-08-21 15:10:22',1164.354000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6336,4,4,'2019-08-21 15:10:22',1165.154000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6337,4,4,'2019-08-21 15:10:22',1166.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6338,4,4,'2019-08-21 15:10:22',1166.419000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6339,4,4,'2019-08-21 15:10:22',1167.019000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6340,4,4,'2019-08-21 15:10:22',1167.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6341,4,4,'2019-08-21 15:10:22',1168.162000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6342,4,4,'2019-08-21 15:10:22',1168.717000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6343,4,4,'2019-08-21 15:10:22',1169.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6344,4,4,'2019-08-21 15:10:22',1170.398000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6345,4,4,'2019-08-21 15:10:22',1170.762000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6346,4,4,'2019-08-21 15:10:22',1171.297000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6347,4,4,'2019-08-21 15:10:22',1172.080000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6348,4,4,'2019-08-21 15:10:22',1172.929000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6349,4,4,'2019-08-21 15:10:22',1173.745000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6350,4,4,'2019-08-21 15:10:22',1174.047000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6351,4,4,'2019-08-21 15:10:22',1174.660000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6352,4,4,'2019-08-21 15:10:22',1175.643000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6353,4,4,'2019-08-21 15:10:22',1175.981000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6354,4,4,'2019-08-21 15:10:22',1176.441000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6355,4,4,'2019-08-21 15:10:22',1177.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6356,4,4,'2019-08-21 15:10:22',1178.256000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6357,4,4,'2019-08-21 15:10:22',1179.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6358,4,4,'2019-08-21 15:10:22',1179.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6359,4,4,'2019-08-21 15:10:22',1180.055000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6360,4,4,'2019-08-21 15:10:22',1180.870000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6361,4,4,'2019-08-21 15:10:22',1181.161000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6362,4,4,'2019-08-21 15:10:22',1181.819000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6363,4,4,'2019-08-21 15:10:22',1182.768000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6364,4,4,'2019-08-21 15:10:22',1183.717000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6365,4,4,'2019-08-21 15:10:22',1184.600000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6366,4,4,'2019-08-21 15:10:22',1185.564000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6367,4,4,'2019-08-21 15:10:22',1185.867000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6368,4,4,'2019-08-21 15:10:22',1186.348000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6369,4,4,'2019-08-21 15:10:22',1187.113000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6370,4,4,'2019-08-21 15:10:22',1187.470000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6371,4,4,'2019-08-21 15:10:22',1187.962000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6372,4,4,'2019-08-21 15:10:22',1188.417000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6373,4,4,'2019-08-21 15:10:22',1188.895000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6374,4,4,'2019-08-21 15:10:22',1189.761000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6375,4,4,'2019-08-21 15:10:22',1190.709000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6376,4,4,'2019-08-21 15:10:22',1191.542000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6377,4,4,'2019-08-21 15:10:22',1192.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6378,4,4,'2019-08-21 15:10:22',1192.870000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6379,4,4,'2019-08-21 15:10:22',1193.456000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6380,4,4,'2019-08-21 15:10:22',1194.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6381,4,4,'2019-08-21 15:10:22',1195.254000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6382,4,4,'2019-08-21 15:10:22',1195.561000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6383,4,4,'2019-08-21 15:10:22',1196.170000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6384,4,4,'2019-08-21 15:10:22',1197.053000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6385,4,4,'2019-08-21 15:10:22',1198.051000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6386,4,4,'2019-08-21 15:10:22',1198.362000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6387,4,4,'2019-08-21 15:10:22',1198.867000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6388,4,4,'2019-08-21 15:10:22',1199.633000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6389,4,4,'2019-08-21 15:10:22',1199.935000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6390,4,4,'2019-08-21 15:10:22',1200.516000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6391,4,4,'2019-08-21 15:10:22',1201.397000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6392,4,4,'2019-08-21 15:10:22',1202.264000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6393,4,4,'2019-08-21 15:10:22',1203.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6394,4,4,'2019-08-21 15:10:22',1203.451000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6395,4,4,'2019-08-21 15:10:22',1204.128000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6396,4,4,'2019-08-21 15:10:22',1204.910000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6397,4,4,'2019-08-21 15:10:22',1205.810000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6398,4,4,'2019-08-21 15:10:22',1206.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6399,4,4,'2019-08-21 15:10:22',1206.792000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6400,4,4,'2019-08-21 15:10:22',1207.774000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6401,4,4,'2019-08-21 15:10:22',1208.046000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6402,4,4,'2019-08-21 15:10:22',1208.590000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6403,4,4,'2019-08-21 15:10:22',1209.488000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6404,4,4,'2019-08-21 15:10:22',1210.504000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6405,4,4,'2019-08-21 15:10:22',1211.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6406,4,4,'2019-08-21 15:10:22',1211.744000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6407,4,4,'2019-08-21 15:10:22',1212.086000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6408,4,4,'2019-08-21 15:10:22',1212.885000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6409,4,4,'2019-08-21 15:10:22',1213.236000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6410,4,4,'2019-08-21 15:10:22',1213.668000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6411,5,5,'2019-08-21 15:10:37',0.902000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6412,5,5,'2019-08-21 15:10:37',28.845000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6413,5,5,'2019-08-21 15:10:37',29.794000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6414,5,5,'2019-08-21 15:10:37',30.096000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6415,5,5,'2019-08-21 15:10:37',30.692000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6416,5,5,'2019-08-21 15:10:37',31.592000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6417,5,5,'2019-08-21 15:10:37',32.607000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6418,5,5,'2019-08-21 15:10:37',32.877000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6419,5,5,'2019-08-21 15:10:37',33.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6420,5,5,'2019-08-21 15:10:37',33.875000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6421,5,5,'2019-08-21 15:10:37',34.155000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6422,5,5,'2019-08-21 15:10:37',35.004000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6423,5,5,'2019-08-21 15:10:37',35.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6424,5,5,'2019-08-21 15:10:37',36.092000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6425,5,5,'2019-08-21 15:10:37',36.803000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6426,5,5,'2019-08-21 15:10:37',37.718000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6427,5,5,'2019-08-21 15:10:37',38.684000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6428,5,5,'2019-08-21 15:10:37',39.683000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6429,5,5,'2019-08-21 15:10:37',40.498000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6430,5,5,'2019-08-21 15:10:37',41.431000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6431,5,5,'2019-08-21 15:10:37',42.263000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6432,5,5,'2019-08-21 15:10:37',42.611000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6433,5,5,'2019-08-21 15:10:37',43.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6434,5,5,'2019-08-21 15:10:37',43.589000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6435,5,5,'2019-08-21 15:10:37',44.194000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6436,5,5,'2019-08-21 15:10:37',45.010000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6437,5,5,'2019-08-21 15:10:37',45.942000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6438,5,5,'2019-08-21 15:10:37',46.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6439,5,5,'2019-08-21 15:10:37',46.875000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6440,5,5,'2019-08-21 15:10:37',47.690000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6441,5,5,'2019-08-21 15:10:37',48.225000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6442,5,5,'2019-08-21 15:10:37',48.456000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6443,5,5,'2019-08-21 15:10:37',49.455000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6444,5,5,'2019-08-21 15:10:37',50.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6445,5,5,'2019-08-21 15:10:37',50.512000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6446,5,5,'2019-08-21 15:10:37',51.054000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6447,5,5,'2019-08-21 15:10:37',51.419000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6448,5,5,'2019-08-21 15:10:37',51.886000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6449,5,5,'2019-08-21 15:10:37',52.802000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6450,5,5,'2019-08-21 15:10:37',53.768000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6451,5,5,'2019-08-21 15:10:37',54.583000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6452,5,5,'2019-08-21 15:10:37',54.916000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6453,5,5,'2019-08-21 15:10:37',55.398000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6454,5,5,'2019-08-21 15:10:37',56.248000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6455,5,5,'2019-08-21 15:10:37',57.080000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6456,5,5,'2019-08-21 15:10:37',57.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6457,5,5,'2019-08-21 15:10:37',58.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6458,5,5,'2019-08-21 15:10:37',59.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6459,5,5,'2019-08-21 15:10:37',59.844000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6460,5,5,'2019-08-21 15:10:37',60.246000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6461,5,5,'2019-08-21 15:10:37',60.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6462,5,5,'2019-08-21 15:10:37',61.542000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6463,5,5,'2019-08-21 15:10:37',62.541000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6464,5,5,'2019-08-21 15:10:37',63.373000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6465,5,5,'2019-08-21 15:10:37',64.156000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6466,5,5,'2019-08-21 15:10:37',64.509000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6467,5,5,'2019-08-21 15:10:37',65.038000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6468,5,5,'2019-08-21 15:10:37',65.456000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6469,5,5,'2019-08-21 15:10:37',65.820000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6470,5,5,'2019-08-21 15:10:37',66.753000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6471,5,5,'2019-08-21 15:10:37',67.535000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6472,5,5,'2019-08-21 15:10:37',67.845000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6473,5,5,'2019-08-21 15:10:37',68.518000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6474,5,5,'2019-08-21 15:10:37',69.500000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6475,5,5,'2019-08-21 15:10:37',70.383000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6476,5,5,'2019-08-21 15:10:37',71.281000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6477,5,5,'2019-08-21 15:10:37',72.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6478,5,5,'2019-08-21 15:10:37',72.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6479,5,5,'2019-08-21 15:10:37',73.146000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6480,5,5,'2019-08-21 15:10:37',74.095000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6481,5,5,'2019-08-21 15:10:37',74.475000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6482,5,5,'2019-08-21 15:10:37',74.944000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6483,5,5,'2019-08-21 15:10:37',75.710000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6484,5,5,'2019-08-21 15:10:37',76.643000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6485,5,5,'2019-08-21 15:10:37',77.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6486,5,5,'2019-08-21 15:10:37',77.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6487,5,5,'2019-08-21 15:10:37',78.290000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6488,5,5,'2019-08-21 15:10:37',78.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6489,5,5,'2019-08-21 15:10:37',79.106000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6490,5,5,'2019-08-21 15:10:37',80.072000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6491,5,5,'2019-08-21 15:10:37',80.954000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6492,5,5,'2019-08-21 15:10:37',81.970000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6493,5,5,'2019-08-21 15:10:37',82.305000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6494,5,5,'2019-08-21 15:10:37',82.802000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6495,5,5,'2019-08-21 15:10:37',83.618000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6496,5,5,'2019-08-21 15:10:37',84.533000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6497,5,5,'2019-08-21 15:10:37',85.399000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6498,5,5,'2019-08-21 15:10:37',85.741000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6499,5,5,'2019-08-21 15:10:37',86.215000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6500,5,5,'2019-08-21 15:10:37',86.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6501,5,5,'2019-08-21 15:10:37',87.147000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6502,5,5,'2019-08-21 15:10:37',87.913000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6503,5,5,'2019-08-21 15:10:37',88.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6504,5,5,'2019-08-21 15:10:37',89.595000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6505,5,5,'2019-08-21 15:10:37',90.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6506,5,5,'2019-08-21 15:10:37',90.819000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6507,5,5,'2019-08-21 15:10:37',91.243000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6508,5,5,'2019-08-21 15:10:37',92.092000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6509,5,5,'2019-08-21 15:10:37',92.958000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6510,5,5,'2019-08-21 15:10:37',93.299000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6511,5,5,'2019-08-21 15:10:37',93.724000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6512,5,5,'2019-08-21 15:10:37',94.115000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6513,5,5,'2019-08-21 15:10:37',94.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6514,5,5,'2019-08-21 15:10:37',95.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6515,5,5,'2019-08-21 15:10:37',96.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6516,5,5,'2019-08-21 15:10:37',97.403000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6517,5,5,'2019-08-21 15:10:37',98.352000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6518,5,5,'2019-08-21 15:10:37',99.351000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6519,5,5,'2019-08-21 15:10:37',99.667000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6520,5,5,'2019-08-21 15:10:37',100.150000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6521,5,5,'2019-08-21 15:10:37',100.949000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6522,5,5,'2019-08-21 15:10:37',101.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6523,5,5,'2019-08-21 15:10:37',101.831000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6524,5,5,'2019-08-21 15:10:37',102.664000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6525,5,5,'2019-08-21 15:10:37',103.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6526,5,5,'2019-08-21 15:10:37',104.412000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6527,5,5,'2019-08-21 15:10:37',104.736000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6528,5,5,'2019-08-21 15:10:37',105.395000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6529,5,5,'2019-08-21 15:10:37',106.160000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6530,5,5,'2019-08-21 15:10:37',106.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6531,5,5,'2019-08-21 15:10:37',106.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6532,5,5,'2019-08-21 15:10:37',107.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6533,5,5,'2019-08-21 15:10:37',108.674000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6534,5,5,'2019-08-21 15:10:37',109.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6535,5,5,'2019-08-21 15:10:37',109.724000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6536,5,5,'2019-08-21 15:10:37',110.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6537,5,5,'2019-08-21 15:10:37',110.832000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6538,5,5,'2019-08-21 15:10:37',111.255000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6539,5,5,'2019-08-21 15:10:37',112.070000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6540,5,5,'2019-08-21 15:10:37',112.435000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6541,5,5,'2019-08-21 15:10:37',113.053000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6542,5,5,'2019-08-21 15:10:37',113.935000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6543,5,5,'2019-08-21 15:10:37',114.867000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6544,5,5,'2019-08-21 15:10:37',115.155000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6545,5,5,'2019-08-21 15:10:37',115.633000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6546,5,5,'2019-08-21 15:10:37',116.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6547,5,5,'2019-08-21 15:10:37',117.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6548,5,5,'2019-08-21 15:10:37',118.396000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6549,5,5,'2019-08-21 15:10:37',119.396000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6550,5,5,'2019-08-21 15:10:37',120.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6551,5,5,'2019-08-21 15:10:37',120.799000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6552,5,5,'2019-08-21 15:10:37',121.260000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6553,5,5,'2019-08-21 15:10:37',121.675000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6554,5,5,'2019-08-21 15:10:37',122.242000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6555,5,5,'2019-08-21 15:10:37',123.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6556,5,5,'2019-08-21 15:10:37',123.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6557,5,5,'2019-08-21 15:10:37',123.974000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6558,5,5,'2019-08-21 15:10:37',124.823000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6559,5,5,'2019-08-21 15:10:37',125.162000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6560,5,5,'2019-08-21 15:10:37',125.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6561,5,5,'2019-08-21 15:10:37',126.654000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6562,5,5,'2019-08-21 15:10:37',127.437000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6563,5,5,'2019-08-21 15:10:37',128.419000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6564,5,5,'2019-08-21 15:10:37',129.234000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6565,5,5,'2019-08-21 15:10:37',130.184000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6566,5,5,'2019-08-21 15:10:37',131.000000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6567,5,5,'2019-08-21 15:10:37',131.981000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6568,5,5,'2019-08-21 15:10:37',132.276000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6569,5,5,'2019-08-21 15:10:37',132.765000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6570,5,5,'2019-08-21 15:10:37',133.183000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6571,5,5,'2019-08-21 15:10:37',133.630000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6572,5,5,'2019-08-21 15:10:37',134.445000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6573,5,5,'2019-08-21 15:10:37',135.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6574,5,5,'2019-08-21 15:10:37',135.551000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6575,5,5,'2019-08-21 15:10:37',136.211000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6576,5,5,'2019-08-21 15:10:37',137.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6577,5,5,'2019-08-21 15:10:37',137.496000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6578,5,5,'2019-08-21 15:10:37',137.926000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6579,5,5,'2019-08-21 15:10:37',138.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6580,5,5,'2019-08-21 15:10:37',139.890000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6581,5,5,'2019-08-21 15:10:37',140.237000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6582,5,5,'2019-08-21 15:10:37',140.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6583,5,5,'2019-08-21 15:10:37',141.621000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6584,5,5,'2019-08-21 15:10:37',142.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6585,5,5,'2019-08-21 15:10:37',142.736000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6586,5,5,'2019-08-21 15:10:37',143.270000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6587,5,5,'2019-08-21 15:10:37',144.118000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6588,5,5,'2019-08-21 15:10:37',145.067000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6589,5,5,'2019-08-21 15:10:37',145.416000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6590,5,5,'2019-08-21 15:10:37',146.050000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6591,5,5,'2019-08-21 15:10:37',146.933000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6592,5,5,'2019-08-21 15:10:37',147.765000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6593,5,5,'2019-08-21 15:10:37',148.097000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6594,5,5,'2019-08-21 15:10:37',148.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6595,5,5,'2019-08-21 15:10:37',149.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6596,5,5,'2019-08-21 15:10:37',150.462000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6597,5,5,'2019-08-21 15:10:37',151.294000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6598,5,5,'2019-08-21 15:10:37',152.076000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6599,5,5,'2019-08-21 15:10:37',152.420000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6600,5,5,'2019-08-21 15:10:37',153.009000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6601,5,5,'2019-08-21 15:10:37',153.925000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6602,5,5,'2019-08-21 15:10:37',154.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6603,5,5,'2019-08-21 15:10:37',154.924000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6604,5,5,'2019-08-21 15:10:37',155.292000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6605,5,5,'2019-08-21 15:10:37',155.723000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6606,5,5,'2019-08-21 15:10:37',156.672000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6607,5,5,'2019-08-21 15:10:37',156.995000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6608,5,5,'2019-08-21 15:10:37',157.671000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6609,5,5,'2019-08-21 15:10:37',158.503000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6610,5,5,'2019-08-21 15:10:37',159.452000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6611,5,5,'2019-08-21 15:10:37',160.400000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6612,5,5,'2019-08-21 15:10:37',161.333000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6613,5,5,'2019-08-21 15:10:37',162.232000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6614,5,5,'2019-08-21 15:10:37',163.164000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6615,5,5,'2019-08-21 15:10:37',164.063000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6616,5,5,'2019-08-21 15:10:37',164.422000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6617,5,5,'2019-08-21 15:10:37',164.862000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6618,5,5,'2019-08-21 15:10:37',165.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6619,5,5,'2019-08-21 15:10:37',165.745000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6620,5,5,'2019-08-21 15:10:37',166.296000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6621,5,5,'2019-08-21 15:10:37',166.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6622,5,5,'2019-08-21 15:10:37',167.526000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6623,5,5,'2019-08-21 15:10:37',168.375000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6624,5,5,'2019-08-21 15:10:37',169.142000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6625,5,5,'2019-08-21 15:10:37',169.511000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6626,5,5,'2019-08-21 15:10:37',170.007000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6627,5,5,'2019-08-21 15:10:37',170.939000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6628,5,5,'2019-08-21 15:10:37',171.705000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6629,5,5,'2019-08-21 15:10:37',172.040000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6630,5,5,'2019-08-21 15:10:37',172.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6631,5,5,'2019-08-21 15:10:37',173.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6632,5,5,'2019-08-21 15:10:37',174.502000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6633,5,5,'2019-08-21 15:10:37',174.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6634,5,5,'2019-08-21 15:10:37',175.385000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6635,5,5,'2019-08-21 15:10:37',176.233000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6636,5,5,'2019-08-21 15:10:37',177.116000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6637,5,5,'2019-08-21 15:10:37',177.411000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6638,5,5,'2019-08-21 15:10:37',177.948000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6639,5,5,'2019-08-21 15:10:37',178.864000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6640,5,5,'2019-08-21 15:10:37',179.829000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6641,5,5,'2019-08-21 15:10:37',180.192000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6642,5,5,'2019-08-21 15:10:37',180.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6643,5,5,'2019-08-21 15:10:37',181.711000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6644,5,5,'2019-08-21 15:10:37',182.477000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6645,5,5,'2019-08-21 15:10:37',182.822000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6646,5,5,'2019-08-21 15:10:37',183.393000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6647,5,5,'2019-08-21 15:10:37',184.358000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6648,5,5,'2019-08-21 15:10:37',185.190000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6649,5,5,'2019-08-21 15:10:37',186.140000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6650,5,5,'2019-08-21 15:10:37',186.480000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6651,5,5,'2019-08-21 15:10:37',187.005000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6652,5,5,'2019-08-21 15:10:37',187.787000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6653,5,5,'2019-08-21 15:10:37',188.637000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6654,5,5,'2019-08-21 15:10:37',189.536000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6655,5,5,'2019-08-21 15:10:37',189.846000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6656,5,5,'2019-08-21 15:10:37',190.451000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6657,5,5,'2019-08-21 15:10:37',191.301000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6658,5,5,'2019-08-21 15:10:37',191.630000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6659,5,5,'2019-08-21 15:10:37',192.199000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6660,5,5,'2019-08-21 15:10:37',192.708000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6661,5,5,'2019-08-21 15:10:37',193.115000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6662,5,5,'2019-08-21 15:10:37',194.030000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6663,5,5,'2019-08-21 15:10:37',194.930000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6664,5,5,'2019-08-21 15:10:37',195.762000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6665,5,5,'2019-08-21 15:10:37',196.073000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6666,5,5,'2019-08-21 15:10:37',196.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6667,5,5,'2019-08-21 15:10:37',197.544000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6668,5,5,'2019-08-21 15:10:37',198.459000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6669,5,5,'2019-08-21 15:10:37',198.733000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6670,5,5,'2019-08-21 15:10:37',199.375000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6671,5,5,'2019-08-21 15:10:37',200.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6672,5,5,'2019-08-21 15:10:37',201.189000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6673,5,5,'2019-08-21 15:10:37',202.072000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6674,5,5,'2019-08-21 15:10:37',202.412000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6675,5,5,'2019-08-21 15:10:37',203.055000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6676,5,5,'2019-08-21 15:10:37',203.479000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6677,5,5,'2019-08-21 15:10:37',203.870000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6678,5,5,'2019-08-21 15:10:37',204.702000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6679,5,5,'2019-08-21 15:10:37',205.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6680,5,5,'2019-08-21 15:10:37',205.838000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6681,5,5,'2019-08-21 15:10:37',206.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6682,5,5,'2019-08-21 15:10:37',207.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6683,5,5,'2019-08-21 15:10:37',208.349000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6684,5,5,'2019-08-21 15:10:37',209.230000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6685,5,5,'2019-08-21 15:10:37',210.097000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6686,5,5,'2019-08-21 15:10:37',210.423000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6687,5,5,'2019-08-21 15:10:37',211.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6688,5,5,'2019-08-21 15:10:37',211.895000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6689,5,5,'2019-08-21 15:10:37',212.693000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6690,5,5,'2019-08-21 15:10:37',213.164000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6691,5,5,'2019-08-21 15:10:37',213.576000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6692,5,5,'2019-08-21 15:10:37',214.458000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6693,5,5,'2019-08-21 15:10:37',215.391000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6694,5,5,'2019-08-21 15:10:37',215.713000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6695,5,5,'2019-08-21 15:10:37',216.323000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6696,5,5,'2019-08-21 15:10:37',217.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6697,5,5,'2019-08-21 15:10:37',217.647000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6698,5,5,'2019-08-21 15:10:37',218.088000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6699,5,5,'2019-08-21 15:10:37',218.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6700,5,5,'2019-08-21 15:10:37',219.902000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6701,5,5,'2019-08-21 15:10:37',220.769000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6702,5,5,'2019-08-21 15:10:37',221.534000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6703,5,5,'2019-08-21 15:10:37',221.931000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6704,5,5,'2019-08-21 15:10:37',222.399000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6705,5,5,'2019-08-21 15:10:37',223.166000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6706,5,5,'2019-08-21 15:10:37',223.553000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6707,5,5,'2019-08-21 15:10:37',224.015000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6708,5,5,'2019-08-21 15:10:37',224.813000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6709,5,5,'2019-08-21 15:10:37',225.796000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6710,5,5,'2019-08-21 15:10:37',226.313000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6711,5,5,'2019-08-21 15:10:37',226.795000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6712,5,5,'2019-08-21 15:10:37',227.661000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6713,5,5,'2019-08-21 15:10:37',228.543000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6714,5,5,'2019-08-21 15:10:37',228.843000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6715,5,5,'2019-08-21 15:10:37',229.542000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6716,5,5,'2019-08-21 15:10:37',230.374000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6717,5,5,'2019-08-21 15:10:37',231.240000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6718,5,5,'2019-08-21 15:10:37',232.056000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6719,5,5,'2019-08-21 15:10:37',232.350000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6720,5,5,'2019-08-21 15:10:37',232.955000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6721,5,5,'2019-08-21 15:10:37',233.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6722,5,5,'2019-08-21 15:10:37',234.184000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6723,5,5,'2019-08-21 15:10:37',234.786000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6724,5,5,'2019-08-21 15:10:37',235.232000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6725,5,5,'2019-08-21 15:10:37',235.652000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6726,5,5,'2019-08-21 15:10:37',236.099000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6727,5,5,'2019-08-21 15:10:37',236.501000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6728,5,5,'2019-08-21 15:10:37',237.500000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6729,5,5,'2019-08-21 15:10:37',238.382000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6730,5,5,'2019-08-21 15:10:37',239.348000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6731,5,5,'2019-08-21 15:10:37',240.247000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6732,5,5,'2019-08-21 15:10:37',240.623000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6733,5,5,'2019-08-21 15:10:37',241.196000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6734,5,5,'2019-08-21 15:10:37',241.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6735,5,5,'2019-08-21 15:10:37',242.145000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6736,5,5,'2019-08-21 15:10:37',242.961000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6737,5,5,'2019-08-21 15:10:37',243.826000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6738,5,5,'2019-08-21 15:10:37',244.643000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6739,5,5,'2019-08-21 15:10:37',245.558000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6740,5,5,'2019-08-21 15:10:37',245.873000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6741,5,5,'2019-08-21 15:10:37',246.340000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6742,5,5,'2019-08-21 15:10:37',247.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6743,5,5,'2019-08-21 15:10:37',248.238000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6744,5,5,'2019-08-21 15:10:37',249.204000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6745,5,5,'2019-08-21 15:10:37',249.986000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6746,5,5,'2019-08-21 15:10:37',250.428000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6747,5,5,'2019-08-21 15:10:37',250.886000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6748,5,5,'2019-08-21 15:10:37',251.751000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6749,5,5,'2019-08-21 15:10:37',252.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6750,5,5,'2019-08-21 15:10:37',253.582000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6751,5,5,'2019-08-21 15:10:37',253.914000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6752,5,5,'2019-08-21 15:10:37',254.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6753,5,5,'2019-08-21 15:10:37',254.872000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6754,5,5,'2019-08-21 15:10:37',255.363000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6755,5,5,'2019-08-21 15:10:37',256.246000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6756,5,5,'2019-08-21 15:10:37',257.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6757,5,5,'2019-08-21 15:10:37',258.178000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6758,5,5,'2019-08-21 15:10:37',259.177000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6759,5,5,'2019-08-21 15:10:37',259.558000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6760,5,5,'2019-08-21 15:10:37',259.976000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6761,5,5,'2019-08-21 15:10:37',260.475000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6762,5,5,'2019-08-21 15:10:37',260.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6763,5,5,'2019-08-21 15:10:37',261.790000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6764,5,5,'2019-08-21 15:10:37',262.639000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6765,5,5,'2019-08-21 15:10:37',263.004000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6766,5,5,'2019-08-21 15:10:37',263.405000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6767,5,5,'2019-08-21 15:10:37',263.770000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6768,5,5,'2019-08-21 15:10:37',264.237000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6769,5,5,'2019-08-21 15:10:37',265.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6770,5,5,'2019-08-21 15:10:37',266.002000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6771,5,5,'2019-08-21 15:10:37',266.918000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6772,5,5,'2019-08-21 15:10:37',267.884000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6773,5,5,'2019-08-21 15:10:37',268.749000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6774,5,5,'2019-08-21 15:10:37',269.748000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6775,5,5,'2019-08-21 15:10:37',270.647000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6776,5,5,'2019-08-21 15:10:37',271.045000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6777,5,5,'2019-08-21 15:10:37',271.562000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6778,5,5,'2019-08-21 15:10:37',272.083000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6779,5,5,'2019-08-21 15:10:37',272.562000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6780,5,5,'2019-08-21 15:10:37',273.344000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6781,5,5,'2019-08-21 15:10:37',273.756000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6782,5,5,'2019-08-21 15:10:37',274.227000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6783,5,5,'2019-08-21 15:10:37',275.092000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6784,5,5,'2019-08-21 15:10:37',276.091000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6785,5,5,'2019-08-21 15:10:37',276.990000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6786,5,5,'2019-08-21 15:10:37',277.494000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6787,5,5,'2019-08-21 15:10:37',277.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6788,5,5,'2019-08-21 15:10:37',278.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6789,5,5,'2019-08-21 15:10:37',278.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6790,5,5,'2019-08-21 15:10:37',279.537000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6791,5,5,'2019-08-21 15:10:37',280.486000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6792,5,5,'2019-08-21 15:10:37',281.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6793,5,5,'2019-08-21 15:10:37',282.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6794,5,5,'2019-08-21 15:10:37',282.674000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6795,5,5,'2019-08-21 15:10:37',283.283000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6796,5,5,'2019-08-21 15:10:37',284.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6797,5,5,'2019-08-21 15:10:37',284.558000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6798,5,5,'2019-08-21 15:10:37',285.215000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6799,5,5,'2019-08-21 15:10:37',285.626000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6800,5,5,'2019-08-21 15:10:37',286.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6801,5,5,'2019-08-21 15:10:37',287.013000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6802,5,5,'2019-08-21 15:10:37',287.828000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6803,5,5,'2019-08-21 15:10:37',288.794000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6804,5,5,'2019-08-21 15:10:37',289.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6805,5,5,'2019-08-21 15:10:37',290.642000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6806,5,5,'2019-08-21 15:10:37',290.946000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6807,5,5,'2019-08-21 15:10:37',291.425000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6808,5,5,'2019-08-21 15:10:37',292.406000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6809,5,5,'2019-08-21 15:10:37',293.355000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6810,5,5,'2019-08-21 15:10:37',332.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6811,5,5,'2019-08-21 15:10:37',358.102000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6812,5,5,'2019-08-21 15:10:37',358.507000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6813,5,5,'2019-08-21 15:10:37',358.867000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6814,5,5,'2019-08-21 15:10:37',359.172000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6815,5,5,'2019-08-21 15:10:37',359.866000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6816,5,5,'2019-08-21 15:10:37',360.815000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6817,5,5,'2019-08-21 15:10:37',361.581000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6818,5,5,'2019-08-21 15:10:37',362.529000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6819,5,5,'2019-08-21 15:10:37',363.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6820,5,5,'2019-08-21 15:10:37',363.706000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6821,5,5,'2019-08-21 15:10:37',364.295000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6822,5,5,'2019-08-21 15:10:37',365.144000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6823,5,5,'2019-08-21 15:10:37',366.143000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6824,5,5,'2019-08-21 15:10:37',366.941000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6825,5,5,'2019-08-21 15:10:37',367.263000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6826,5,5,'2019-08-21 15:10:37',367.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6827,5,5,'2019-08-21 15:10:37',368.673000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6828,5,5,'2019-08-21 15:10:37',368.996000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6829,5,5,'2019-08-21 15:10:37',369.455000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6830,5,5,'2019-08-21 15:10:37',370.024000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6831,5,5,'2019-08-21 15:10:37',370.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6832,5,5,'2019-08-21 15:10:37',371.237000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6833,5,5,'2019-08-21 15:10:37',372.202000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6834,5,5,'2019-08-21 15:10:37',373.002000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6835,5,5,'2019-08-21 15:10:37',373.884000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6836,5,5,'2019-08-21 15:10:37',374.196000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6837,5,5,'2019-08-21 15:10:37',374.899000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6838,5,5,'2019-08-21 15:10:37',375.815000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6839,5,5,'2019-08-21 15:10:37',376.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6840,5,5,'2019-08-21 15:10:37',376.714000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6841,5,5,'2019-08-21 15:10:37',377.613000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6842,5,5,'2019-08-21 15:10:37',378.412000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6843,5,5,'2019-08-21 15:10:37',379.278000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6844,5,5,'2019-08-21 15:10:37',380.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6845,5,5,'2019-08-21 15:10:37',381.043000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6846,5,5,'2019-08-21 15:10:37',381.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6847,5,5,'2019-08-21 15:10:37',382.824000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6848,5,5,'2019-08-21 15:10:37',383.145000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6849,5,5,'2019-08-21 15:10:37',383.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6850,5,5,'2019-08-21 15:10:37',384.132000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6851,5,5,'2019-08-21 15:10:37',384.522000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6852,5,5,'2019-08-21 15:10:37',385.455000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6853,5,5,'2019-08-21 15:10:37',386.337000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6854,5,5,'2019-08-21 15:10:37',387.153000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6855,5,5,'2019-08-21 15:10:37',388.052000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6856,5,5,'2019-08-21 15:10:37',388.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6857,5,5,'2019-08-21 15:10:37',388.918000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6858,5,5,'2019-08-21 15:10:37',389.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6859,5,5,'2019-08-21 15:10:37',389.800000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6860,5,5,'2019-08-21 15:10:37',390.749000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6861,5,5,'2019-08-21 15:10:37',391.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6862,5,5,'2019-08-21 15:10:37',391.631000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6863,5,5,'2019-08-21 15:10:37',392.431000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6864,5,5,'2019-08-21 15:10:37',393.246000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6865,5,5,'2019-08-21 15:10:37',393.554000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6866,5,5,'2019-08-21 15:10:37',394.012000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6867,5,5,'2019-08-21 15:10:37',394.878000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6868,5,5,'2019-08-21 15:10:37',395.860000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6869,5,5,'2019-08-21 15:10:37',396.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6870,5,5,'2019-08-21 15:10:37',396.859000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6871,5,5,'2019-08-21 15:10:37',397.232000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6872,5,5,'2019-08-21 15:10:37',397.774000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6873,5,5,'2019-08-21 15:10:37',398.641000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6874,5,5,'2019-08-21 15:10:37',399.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6875,5,5,'2019-08-21 15:10:37',400.389000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6876,5,5,'2019-08-21 15:10:37',401.204000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6877,5,5,'2019-08-21 15:10:37',401.545000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6878,5,5,'2019-08-21 15:10:37',402.054000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6879,5,5,'2019-08-21 15:10:37',402.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6880,5,5,'2019-08-21 15:10:37',403.035000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6881,5,5,'2019-08-21 15:10:37',403.818000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6882,5,5,'2019-08-21 15:10:37',404.801000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6883,5,5,'2019-08-21 15:10:37',405.633000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6884,5,5,'2019-08-21 15:10:37',406.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6885,5,5,'2019-08-21 15:10:37',407.331000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6886,5,5,'2019-08-21 15:10:37',407.672000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6887,5,5,'2019-08-21 15:10:37',408.280000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6888,5,5,'2019-08-21 15:10:37',409.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6889,5,5,'2019-08-21 15:10:37',409.566000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6890,5,5,'2019-08-21 15:10:37',410.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6891,5,5,'2019-08-21 15:10:37',410.943000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6892,5,5,'2019-08-21 15:10:37',411.260000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6893,5,5,'2019-08-21 15:10:37',411.926000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6894,5,5,'2019-08-21 15:10:37',412.236000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6895,5,5,'2019-08-21 15:10:37',412.725000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6896,5,5,'2019-08-21 15:10:37',413.724000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6897,5,5,'2019-08-21 15:10:37',414.689000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6898,5,5,'2019-08-21 15:10:37',415.455000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6899,5,5,'2019-08-21 15:10:37',416.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6900,5,5,'2019-08-21 15:10:37',416.570000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6901,5,5,'2019-08-21 15:10:37',417.087000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6902,5,5,'2019-08-21 15:10:37',418.003000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6903,5,5,'2019-08-21 15:10:37',418.935000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6904,5,5,'2019-08-21 15:10:37',419.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6905,5,5,'2019-08-21 15:10:37',419.718000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6906,5,5,'2019-08-21 15:10:37',420.583000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6907,5,5,'2019-08-21 15:10:37',421.532000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6908,5,5,'2019-08-21 15:10:37',421.891000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6909,5,5,'2019-08-21 15:10:37',422.531000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6910,5,5,'2019-08-21 15:10:37',422.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6911,5,5,'2019-08-21 15:10:37',423.297000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6912,5,5,'2019-08-21 15:10:37',424.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6913,5,5,'2019-08-21 15:10:37',424.878000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6914,5,5,'2019-08-21 15:10:37',425.827000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6915,5,5,'2019-08-21 15:10:37',426.793000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6916,5,5,'2019-08-21 15:10:37',427.625000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6917,5,5,'2019-08-21 15:10:37',427.887000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6918,5,5,'2019-08-21 15:10:37',428.441000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6919,5,5,'2019-08-21 15:10:37',428.954000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6920,5,5,'2019-08-21 15:10:37',429.323000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6921,5,5,'2019-08-21 15:10:37',430.272000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6922,5,5,'2019-08-21 15:10:37',431.121000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6923,5,5,'2019-08-21 15:10:37',432.004000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6924,5,5,'2019-08-21 15:10:37',433.003000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6925,5,5,'2019-08-21 15:10:37',433.901000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6926,5,5,'2019-08-21 15:10:37',434.295000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6927,5,5,'2019-08-21 15:10:37',434.867000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6928,5,5,'2019-08-21 15:10:37',435.700000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6929,5,5,'2019-08-21 15:10:37',436.699000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6930,5,5,'2019-08-21 15:10:37',436.986000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6931,5,5,'2019-08-21 15:10:37',437.631000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6932,5,5,'2019-08-21 15:10:37',438.613000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6933,5,5,'2019-08-21 15:10:37',438.981000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6934,5,5,'2019-08-21 15:10:37',439.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6935,5,5,'2019-08-21 15:10:37',440.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6936,5,5,'2019-08-21 15:10:37',441.394000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6937,5,5,'2019-08-21 15:10:37',441.691000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6938,5,5,'2019-08-21 15:10:37',442.227000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6939,5,5,'2019-08-21 15:10:37',443.075000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6940,5,5,'2019-08-21 15:10:37',444.008000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6941,5,5,'2019-08-21 15:10:37',444.990000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6942,5,5,'2019-08-21 15:10:37',445.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6943,5,5,'2019-08-21 15:10:37',446.136000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6944,5,5,'2019-08-21 15:10:37',446.721000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6945,5,5,'2019-08-21 15:10:37',447.504000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6946,5,5,'2019-08-21 15:10:37',447.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6947,5,5,'2019-08-21 15:10:37',448.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6948,5,5,'2019-08-21 15:10:37',449.202000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6949,5,5,'2019-08-21 15:10:37',449.582000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6950,5,5,'2019-08-21 15:10:37',449.968000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6951,5,5,'2019-08-21 15:10:37',450.298000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6952,5,5,'2019-08-21 15:10:37',450.816000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6953,5,5,'2019-08-21 15:10:37',451.716000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6954,5,5,'2019-08-21 15:10:37',452.648000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6955,5,5,'2019-08-21 15:10:37',453.547000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6956,5,5,'2019-08-21 15:10:37',454.380000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6957,5,5,'2019-08-21 15:10:37',455.212000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6958,5,5,'2019-08-21 15:10:37',455.527000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6959,5,5,'2019-08-21 15:10:37',456.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6960,5,5,'2019-08-21 15:10:37',456.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6961,5,5,'2019-08-21 15:10:37',457.281000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6962,5,5,'2019-08-21 15:10:37',457.942000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6963,5,5,'2019-08-21 15:10:37',458.841000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6964,5,5,'2019-08-21 15:10:37',459.155000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6965,5,5,'2019-08-21 15:10:37',459.807000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6966,5,5,'2019-08-21 15:10:37',460.822000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6967,5,5,'2019-08-21 15:10:37',461.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6968,5,5,'2019-08-21 15:10:37',462.128000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6969,5,5,'2019-08-21 15:10:37',462.754000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6970,5,5,'2019-08-21 15:10:37',463.586000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6971,5,5,'2019-08-21 15:10:37',464.419000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6972,5,5,'2019-08-21 15:10:37',465.317000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6973,5,5,'2019-08-21 15:10:37',466.200000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6974,5,5,'2019-08-21 15:10:37',466.572000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6975,5,5,'2019-08-21 15:10:37',467.065000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6976,5,5,'2019-08-21 15:10:37',467.831000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6977,5,5,'2019-08-21 15:10:37',468.214000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6978,5,5,'2019-08-21 15:10:37',468.697000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6979,5,5,'2019-08-21 15:10:37',469.529000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6980,5,5,'2019-08-21 15:10:37',470.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6981,5,5,'2019-08-21 15:10:37',471.194000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6982,5,5,'2019-08-21 15:10:37',471.977000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6983,5,5,'2019-08-21 15:10:37',472.336000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6984,5,5,'2019-08-21 15:10:37',472.743000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6985,5,5,'2019-08-21 15:10:37',473.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6986,5,5,'2019-08-21 15:10:37',473.928000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6987,5,5,'2019-08-21 15:10:37',474.291000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6988,5,5,'2019-08-21 15:10:37',474.704000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6989,5,5,'2019-08-21 15:10:37',475.273000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6990,5,5,'2019-08-21 15:10:37',476.239000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6991,5,5,'2019-08-21 15:10:37',477.204000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6992,5,5,'2019-08-21 15:10:37',478.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6993,5,5,'2019-08-21 15:10:37',478.412000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6994,5,5,'2019-08-21 15:10:37',478.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6995,5,5,'2019-08-21 15:10:37',479.769000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6996,5,5,'2019-08-21 15:10:37',480.768000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6997,5,5,'2019-08-21 15:10:37',481.184000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6998,5,5,'2019-08-21 15:10:37',481.666000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (6999,5,5,'2019-08-21 15:10:37',482.499000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7000,5,5,'2019-08-21 15:10:37',483.381000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7001,5,5,'2019-08-21 15:10:37',483.662000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7002,5,5,'2019-08-21 15:10:37',484.347000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7003,5,5,'2019-08-21 15:10:37',485.362000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7004,5,5,'2019-08-21 15:10:37',485.728000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7005,5,5,'2019-08-21 15:10:37',486.194000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7006,5,5,'2019-08-21 15:10:37',487.044000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7007,5,5,'2019-08-21 15:10:37',487.843000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7008,5,5,'2019-08-21 15:10:37',488.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7009,5,5,'2019-08-21 15:10:37',489.073000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7010,5,5,'2019-08-21 15:10:37',489.591000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7011,5,5,'2019-08-21 15:10:37',490.424000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7012,5,5,'2019-08-21 15:10:37',491.256000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7013,5,5,'2019-08-21 15:10:37',492.055000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7014,5,5,'2019-08-21 15:10:37',492.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7015,5,5,'2019-08-21 15:10:37',492.938000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7016,5,5,'2019-08-21 15:10:37',493.870000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7017,5,5,'2019-08-21 15:10:37',494.752000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7018,5,5,'2019-08-21 15:10:37',495.089000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7019,5,5,'2019-08-21 15:10:37',495.567000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7020,5,5,'2019-08-21 15:10:37',496.417000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7021,5,5,'2019-08-21 15:10:37',496.792000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7022,5,5,'2019-08-21 15:10:37',497.399000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7023,5,5,'2019-08-21 15:10:37',498.382000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7024,5,5,'2019-08-21 15:10:37',499.181000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7025,5,5,'2019-08-21 15:10:37',499.513000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7026,5,5,'2019-08-21 15:10:37',500.163000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7027,5,5,'2019-08-21 15:10:37',501.045000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7028,5,5,'2019-08-21 15:10:37',501.828000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7029,5,5,'2019-08-21 15:10:37',502.660000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7030,5,5,'2019-08-21 15:10:37',503.070000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7031,5,5,'2019-08-21 15:10:37',503.476000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7032,5,5,'2019-08-21 15:10:37',504.458000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7033,5,5,'2019-08-21 15:10:37',504.804000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7034,5,5,'2019-08-21 15:10:37',505.357000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7035,5,5,'2019-08-21 15:10:37',506.340000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7036,5,5,'2019-08-21 15:10:37',507.255000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7037,5,5,'2019-08-21 15:10:37',507.595000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7038,5,5,'2019-08-21 15:10:37',508.154000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7039,5,5,'2019-08-21 15:10:37',508.986000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7040,5,5,'2019-08-21 15:10:37',509.298000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7041,5,5,'2019-08-21 15:10:37',509.869000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7042,5,5,'2019-08-21 15:10:37',510.784000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7043,5,5,'2019-08-21 15:10:37',511.684000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7044,5,5,'2019-08-21 15:10:37',512.616000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7045,5,5,'2019-08-21 15:10:37',512.966000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7046,5,5,'2019-08-21 15:10:37',513.415000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7047,5,5,'2019-08-21 15:10:37',514.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7048,5,5,'2019-08-21 15:10:37',515.163000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7049,5,5,'2019-08-21 15:10:37',516.096000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7050,5,5,'2019-08-21 15:10:37',516.442000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7051,5,5,'2019-08-21 15:10:37',516.994000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7052,5,5,'2019-08-21 15:10:37',517.977000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7053,5,5,'2019-08-21 15:10:37',518.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7054,5,5,'2019-08-21 15:10:37',519.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7055,5,5,'2019-08-21 15:10:37',520.110000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7056,5,5,'2019-08-21 15:10:37',520.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7057,5,5,'2019-08-21 15:10:37',521.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7058,5,5,'2019-08-21 15:10:37',522.035000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7059,5,5,'2019-08-21 15:10:37',522.488000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7060,5,5,'2019-08-21 15:10:37',523.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7061,5,5,'2019-08-21 15:10:37',524.337000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7062,5,5,'2019-08-21 15:10:37',525.202000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7063,5,5,'2019-08-21 15:10:37',525.471000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7064,5,5,'2019-08-21 15:10:37',526.151000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7065,5,5,'2019-08-21 15:10:37',527.017000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7066,5,5,'2019-08-21 15:10:37',527.386000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7067,5,5,'2019-08-21 15:10:37',527.866000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7068,5,5,'2019-08-21 15:10:37',528.323000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7069,5,5,'2019-08-21 15:10:37',528.865000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7070,5,5,'2019-08-21 15:10:37',529.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7071,5,5,'2019-08-21 15:10:37',529.730000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7072,5,5,'2019-08-21 15:10:37',530.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7073,5,5,'2019-08-21 15:10:37',531.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7074,5,5,'2019-08-21 15:10:37',532.644000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7075,5,5,'2019-08-21 15:10:37',533.410000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7076,5,5,'2019-08-21 15:10:37',534.375000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7077,5,5,'2019-08-21 15:10:37',535.324000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7078,5,5,'2019-08-21 15:10:37',536.273000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7079,5,5,'2019-08-21 15:10:37',536.687000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7080,5,5,'2019-08-21 15:10:37',537.206000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7081,5,5,'2019-08-21 15:10:37',537.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7082,5,5,'2019-08-21 15:10:37',538.171000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7083,5,5,'2019-08-21 15:10:37',539.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7084,5,5,'2019-08-21 15:10:37',540.103000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7085,5,5,'2019-08-21 15:10:37',541.002000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7086,5,5,'2019-08-21 15:10:37',541.817000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7087,5,5,'2019-08-21 15:10:37',542.179000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7088,5,5,'2019-08-21 15:10:37',542.633000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7089,5,5,'2019-08-21 15:10:37',543.532000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7090,5,5,'2019-08-21 15:10:37',544.043000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7091,5,5,'2019-08-21 15:10:37',544.331000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7092,5,5,'2019-08-21 15:10:37',544.657000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7093,5,5,'2019-08-21 15:10:37',545.197000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7094,5,5,'2019-08-21 15:10:37',546.129000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7095,5,5,'2019-08-21 15:10:37',546.962000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7096,5,5,'2019-08-21 15:10:37',547.268000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7097,5,5,'2019-08-21 15:10:37',547.811000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7098,5,5,'2019-08-21 15:10:37',548.810000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7099,5,5,'2019-08-21 15:10:37',549.809000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7100,5,5,'2019-08-21 15:10:37',550.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7101,5,5,'2019-08-21 15:10:37',550.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7102,5,5,'2019-08-21 15:10:37',551.474000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7103,5,5,'2019-08-21 15:10:37',551.843000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7104,5,5,'2019-08-21 15:10:37',552.406000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7105,5,5,'2019-08-21 15:10:37',553.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7106,5,5,'2019-08-21 15:10:37',554.037000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7107,5,5,'2019-08-21 15:10:37',555.020000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7108,5,5,'2019-08-21 15:10:37',555.852000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7109,5,5,'2019-08-21 15:10:37',556.226000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7110,5,5,'2019-08-21 15:10:37',556.701000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7111,5,5,'2019-08-21 15:10:37',557.617000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7112,5,5,'2019-08-21 15:10:37',558.565000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7113,5,5,'2019-08-21 15:10:37',559.515000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7114,5,5,'2019-08-21 15:10:37',559.763000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7115,5,5,'2019-08-21 15:10:37',560.464000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7116,5,5,'2019-08-21 15:10:37',560.973000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7117,5,5,'2019-08-21 15:10:37',561.379000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7118,5,5,'2019-08-21 15:10:37',562.245000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7119,5,5,'2019-08-21 15:10:37',563.011000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7120,5,5,'2019-08-21 15:10:37',563.894000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7121,5,5,'2019-08-21 15:10:37',564.237000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7122,5,5,'2019-08-21 15:10:37',564.842000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7123,5,5,'2019-08-21 15:10:37',565.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7124,5,5,'2019-08-21 15:10:37',566.142000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7125,5,5,'2019-08-21 15:10:37',566.674000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7126,5,5,'2019-08-21 15:10:37',567.522000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7127,5,5,'2019-08-21 15:10:37',568.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7128,5,5,'2019-08-21 15:10:37',569.421000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7129,5,5,'2019-08-21 15:10:37',569.770000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7130,5,5,'2019-08-21 15:10:37',570.270000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7131,5,5,'2019-08-21 15:10:37',571.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7132,5,5,'2019-08-21 15:10:37',571.935000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7133,5,5,'2019-08-21 15:10:37',572.269000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7134,5,5,'2019-08-21 15:10:37',572.700000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7135,5,5,'2019-08-21 15:10:37',573.125000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7136,5,5,'2019-08-21 15:10:37',573.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7137,5,5,'2019-08-21 15:10:37',574.365000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7138,5,5,'2019-08-21 15:10:37',575.281000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7139,5,5,'2019-08-21 15:10:37',576.263000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7140,5,5,'2019-08-21 15:10:37',576.562000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7141,5,5,'2019-08-21 15:10:37',577.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7142,5,5,'2019-08-21 15:10:37',577.589000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7143,5,5,'2019-08-21 15:10:37',578.062000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7144,5,5,'2019-08-21 15:10:37',579.060000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7145,5,5,'2019-08-21 15:10:37',579.959000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7146,5,5,'2019-08-21 15:10:37',580.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7147,5,5,'2019-08-21 15:10:37',581.840000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7148,5,5,'2019-08-21 15:10:37',582.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7149,5,5,'2019-08-21 15:10:37',583.722000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7150,5,5,'2019-08-21 15:10:37',584.038000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7151,5,5,'2019-08-21 15:10:37',584.587000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7152,5,5,'2019-08-21 15:10:37',585.387000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7153,5,5,'2019-08-21 15:10:37',585.752000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7154,5,5,'2019-08-21 15:10:37',586.202000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7155,5,5,'2019-08-21 15:10:37',587.118000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7156,5,5,'2019-08-21 15:10:37',587.505000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7157,5,5,'2019-08-21 15:10:37',587.900000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7158,5,5,'2019-08-21 15:10:37',588.200000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7159,5,5,'2019-08-21 15:10:37',588.816000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7160,5,5,'2019-08-21 15:10:37',589.698000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7161,5,5,'2019-08-21 15:10:37',590.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7162,5,5,'2019-08-21 15:10:37',591.546000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7163,5,5,'2019-08-21 15:10:37',592.412000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7164,5,5,'2019-08-21 15:10:37',593.211000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7165,5,5,'2019-08-21 15:10:37',594.077000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7166,5,5,'2019-08-21 15:10:37',594.942000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7167,5,5,'2019-08-21 15:10:37',595.305000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7168,5,5,'2019-08-21 15:10:37',595.709000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7169,5,5,'2019-08-21 15:10:37',596.110000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7170,5,5,'2019-08-21 15:10:37',596.674000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7171,5,5,'2019-08-21 15:10:37',597.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7172,5,5,'2019-08-21 15:10:37',598.372000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7173,5,5,'2019-08-21 15:10:37',599.305000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7174,5,5,'2019-08-21 15:10:37',600.120000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7175,5,5,'2019-08-21 15:10:37',600.504000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7176,5,5,'2019-08-21 15:10:37',600.970000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7177,5,5,'2019-08-21 15:10:37',601.311000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7178,5,5,'2019-08-21 15:10:37',601.901000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7179,5,5,'2019-08-21 15:10:37',602.668000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7180,5,5,'2019-08-21 15:10:37',603.583000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7181,5,5,'2019-08-21 15:10:37',604.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7182,5,5,'2019-08-21 15:10:37',604.449000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7183,5,5,'2019-08-21 15:10:37',605.215000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7184,5,5,'2019-08-21 15:10:37',606.014000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7185,5,5,'2019-08-21 15:10:37',606.349000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7186,5,5,'2019-08-21 15:10:37',606.963000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7187,5,5,'2019-08-21 15:10:37',607.762000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7188,5,5,'2019-08-21 15:10:37',608.711000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7189,5,5,'2019-08-21 15:10:37',609.594000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7190,5,5,'2019-08-21 15:10:37',609.956000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7191,5,5,'2019-08-21 15:10:37',610.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7192,5,5,'2019-08-21 15:10:37',610.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7193,5,5,'2019-08-21 15:10:37',611.325000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7194,5,5,'2019-08-21 15:10:37',612.141000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7195,5,5,'2019-08-21 15:10:37',612.956000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7196,5,5,'2019-08-21 15:10:37',613.789000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7197,5,5,'2019-08-21 15:10:37',614.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7198,5,5,'2019-08-21 15:10:37',614.638000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7199,5,5,'2019-08-21 15:10:37',614.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7200,5,5,'2019-08-21 15:10:37',615.471000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7201,5,5,'2019-08-21 15:10:37',616.402000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7202,5,5,'2019-08-21 15:10:37',617.318000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7203,5,5,'2019-08-21 15:10:37',618.117000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7204,5,5,'2019-08-21 15:10:37',619.017000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7205,5,5,'2019-08-21 15:10:37',619.799000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7206,5,5,'2019-08-21 15:10:37',620.145000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7207,5,5,'2019-08-21 15:10:37',620.665000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7208,5,5,'2019-08-21 15:10:37',621.031000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7209,5,5,'2019-08-21 15:10:37',621.447000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7210,5,5,'2019-08-21 15:10:37',622.362000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7211,5,5,'2019-08-21 15:10:37',645.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7212,5,5,'2019-08-21 15:10:37',675.044000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7213,5,5,'2019-08-21 15:10:37',675.494000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7214,5,5,'2019-08-21 15:10:37',675.993000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7215,5,5,'2019-08-21 15:10:37',676.858000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7216,5,5,'2019-08-21 15:10:37',677.791000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7217,5,5,'2019-08-21 15:10:37',678.154000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7218,5,5,'2019-08-21 15:10:37',678.689000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7219,5,5,'2019-08-21 15:10:37',679.489000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7220,5,5,'2019-08-21 15:10:37',680.305000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7221,5,5,'2019-08-21 15:10:37',680.794000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7222,5,5,'2019-08-21 15:10:37',681.237000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7223,5,5,'2019-08-21 15:10:37',681.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7224,5,5,'2019-08-21 15:10:37',682.103000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7225,5,5,'2019-08-21 15:10:37',682.952000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7226,5,5,'2019-08-21 15:10:37',683.718000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7227,5,5,'2019-08-21 15:10:37',684.616000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7228,5,5,'2019-08-21 15:10:37',685.482000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7229,5,5,'2019-08-21 15:10:37',685.752000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7230,5,5,'2019-08-21 15:10:37',686.331000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7231,5,5,'2019-08-21 15:10:37',687.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7232,5,5,'2019-08-21 15:10:37',688.113000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7233,5,5,'2019-08-21 15:10:37',688.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7234,5,5,'2019-08-21 15:10:37',689.978000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7235,5,5,'2019-08-21 15:10:37',690.236000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7236,5,5,'2019-08-21 15:10:37',690.877000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7237,5,5,'2019-08-21 15:10:37',691.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7238,5,5,'2019-08-21 15:10:37',692.070000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7239,5,5,'2019-08-21 15:10:37',692.808000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7240,5,5,'2019-08-21 15:10:37',693.657000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7241,5,5,'2019-08-21 15:10:37',694.423000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7242,5,5,'2019-08-21 15:10:37',694.650000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7243,5,5,'2019-08-21 15:10:37',695.405000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7244,5,5,'2019-08-21 15:10:37',696.254000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7245,5,5,'2019-08-21 15:10:37',696.575000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7246,5,5,'2019-08-21 15:10:37',697.187000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7247,5,5,'2019-08-21 15:10:37',698.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7248,5,5,'2019-08-21 15:10:37',698.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7249,5,5,'2019-08-21 15:10:37',699.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7250,5,5,'2019-08-21 15:10:37',699.833000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7251,5,5,'2019-08-21 15:10:37',700.649000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7252,5,5,'2019-08-21 15:10:37',701.498000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7253,5,5,'2019-08-21 15:10:37',702.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7254,5,5,'2019-08-21 15:10:37',702.671000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7255,5,5,'2019-08-21 15:10:37',703.347000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7256,5,5,'2019-08-21 15:10:37',704.146000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7257,5,5,'2019-08-21 15:10:37',704.445000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7258,5,5,'2019-08-21 15:10:37',704.911000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7259,5,5,'2019-08-21 15:10:37',705.910000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7260,5,5,'2019-08-21 15:10:37',706.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7261,5,5,'2019-08-21 15:10:37',707.196000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7262,5,5,'2019-08-21 15:10:37',707.824000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7263,5,5,'2019-08-21 15:10:37',708.591000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7264,5,5,'2019-08-21 15:10:37',708.909000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7265,5,5,'2019-08-21 15:10:37',709.473000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7266,5,5,'2019-08-21 15:10:37',710.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7267,5,5,'2019-08-21 15:10:37',711.138000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7268,5,5,'2019-08-21 15:10:37',711.986000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7269,5,5,'2019-08-21 15:10:37',712.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7270,5,5,'2019-08-21 15:10:37',713.232000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7271,5,5,'2019-08-21 15:10:37',713.835000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7272,5,5,'2019-08-21 15:10:37',714.750000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7273,5,5,'2019-08-21 15:10:37',715.683000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7274,5,5,'2019-08-21 15:10:37',716.465000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7275,5,5,'2019-08-21 15:10:37',716.779000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7276,5,5,'2019-08-21 15:10:37',717.281000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7277,5,5,'2019-08-21 15:10:37',718.146000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7278,5,5,'2019-08-21 15:10:37',719.146000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7279,5,5,'2019-08-21 15:10:37',719.928000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7280,5,5,'2019-08-21 15:10:37',720.175000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7281,5,5,'2019-08-21 15:10:37',720.711000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7282,5,5,'2019-08-21 15:10:37',721.560000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7283,5,5,'2019-08-21 15:10:37',721.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7284,5,5,'2019-08-21 15:10:37',722.559000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7285,5,5,'2019-08-21 15:10:37',723.475000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7286,5,5,'2019-08-21 15:10:37',724.456000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7287,5,5,'2019-08-21 15:10:37',725.455000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7288,5,5,'2019-08-21 15:10:37',725.768000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7289,5,5,'2019-08-21 15:10:37',726.305000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7290,5,5,'2019-08-21 15:10:37',726.664000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7291,5,5,'2019-08-21 15:10:37',727.287000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7292,5,5,'2019-08-21 15:10:37',728.086000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7293,5,5,'2019-08-21 15:10:37',728.885000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7294,5,5,'2019-08-21 15:10:37',729.817000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7295,5,5,'2019-08-21 15:10:37',730.161000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7296,5,5,'2019-08-21 15:10:37',730.717000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7297,5,5,'2019-08-21 15:10:37',731.219000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7298,5,5,'2019-08-21 15:10:37',731.698000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7299,5,5,'2019-08-21 15:10:37',732.465000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7300,5,5,'2019-08-21 15:10:37',733.230000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7301,5,5,'2019-08-21 15:10:37',734.112000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7302,5,5,'2019-08-21 15:10:37',734.995000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7303,5,5,'2019-08-21 15:10:37',735.271000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7304,5,5,'2019-08-21 15:10:37',735.911000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7305,5,5,'2019-08-21 15:10:37',736.318000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7306,5,5,'2019-08-21 15:10:37',736.677000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7307,5,5,'2019-08-21 15:10:37',737.525000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7308,5,5,'2019-08-21 15:10:37',738.375000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7309,5,5,'2019-08-21 15:10:37',739.141000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7310,5,5,'2019-08-21 15:10:37',740.073000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7311,5,5,'2019-08-21 15:10:37',741.071000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7312,5,5,'2019-08-21 15:10:37',741.438000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7313,5,5,'2019-08-21 15:10:37',742.004000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7314,5,5,'2019-08-21 15:10:37',742.243000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7315,5,5,'2019-08-21 15:10:37',742.803000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7316,5,5,'2019-08-21 15:10:37',743.802000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7317,5,5,'2019-08-21 15:10:37',744.585000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7318,5,5,'2019-08-21 15:10:37',745.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7319,5,5,'2019-08-21 15:10:37',746.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7320,5,5,'2019-08-21 15:10:37',746.546000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7321,5,5,'2019-08-21 15:10:37',747.182000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7322,5,5,'2019-08-21 15:10:37',748.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7323,5,5,'2019-08-21 15:10:37',748.451000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7324,5,5,'2019-08-21 15:10:37',749.062000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7325,5,5,'2019-08-21 15:10:37',749.438000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7326,5,5,'2019-08-21 15:10:37',749.995000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7327,5,5,'2019-08-21 15:10:37',750.961000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7328,5,5,'2019-08-21 15:10:37',751.927000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7329,5,5,'2019-08-21 15:10:37',752.842000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7330,5,5,'2019-08-21 15:10:37',753.725000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7331,5,5,'2019-08-21 15:10:37',754.003000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7332,5,5,'2019-08-21 15:10:37',754.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7333,5,5,'2019-08-21 15:10:37',755.340000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7334,5,5,'2019-08-21 15:10:37',756.238000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7335,5,5,'2019-08-21 15:10:37',756.543000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7336,5,5,'2019-08-21 15:10:37',757.004000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7337,5,5,'2019-08-21 15:10:37',757.439000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7338,5,5,'2019-08-21 15:10:37',757.870000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7339,5,5,'2019-08-21 15:10:37',758.652000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7340,5,5,'2019-08-21 15:10:37',759.568000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7341,5,5,'2019-08-21 15:10:37',760.467000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7342,5,5,'2019-08-21 15:10:37',761.333000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7343,5,5,'2019-08-21 15:10:37',762.099000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7344,5,5,'2019-08-21 15:10:37',762.468000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7345,5,5,'2019-08-21 15:10:37',763.048000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7346,5,5,'2019-08-21 15:10:37',763.274000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7347,5,5,'2019-08-21 15:10:37',764.014000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7348,5,5,'2019-08-21 15:10:37',764.995000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7349,5,5,'2019-08-21 15:10:37',765.994000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7350,5,5,'2019-08-21 15:10:37',766.811000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7351,5,5,'2019-08-21 15:10:37',767.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7352,5,5,'2019-08-21 15:10:37',768.061000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7353,5,5,'2019-08-21 15:10:37',768.492000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7354,5,5,'2019-08-21 15:10:37',769.374000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7355,5,5,'2019-08-21 15:10:37',769.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7356,5,5,'2019-08-21 15:10:37',770.189000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7357,5,5,'2019-08-21 15:10:37',771.188000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7358,5,5,'2019-08-21 15:10:37',771.955000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7359,5,5,'2019-08-21 15:10:37',772.887000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7360,5,5,'2019-08-21 15:10:37',773.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7361,5,5,'2019-08-21 15:10:37',773.770000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7362,5,5,'2019-08-21 15:10:37',774.066000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7363,5,5,'2019-08-21 15:10:37',774.701000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7364,5,5,'2019-08-21 15:10:37',775.601000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7365,5,5,'2019-08-21 15:10:37',776.616000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7366,5,5,'2019-08-21 15:10:37',777.499000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7367,5,5,'2019-08-21 15:10:37',777.825000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7368,5,5,'2019-08-21 15:10:37',778.348000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7369,5,5,'2019-08-21 15:10:37',779.264000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7370,5,5,'2019-08-21 15:10:37',780.146000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7371,5,5,'2019-08-21 15:10:37',780.476000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7372,5,5,'2019-08-21 15:10:37',781.028000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7373,5,5,'2019-08-21 15:10:37',782.011000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7374,5,5,'2019-08-21 15:10:37',782.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7375,5,5,'2019-08-21 15:10:37',783.708000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7376,5,5,'2019-08-21 15:10:37',784.042000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7377,5,5,'2019-08-21 15:10:37',784.690000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7378,5,5,'2019-08-21 15:10:37',785.606000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7379,5,5,'2019-08-21 15:10:37',785.937000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7380,5,5,'2019-08-21 15:10:37',786.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7381,5,5,'2019-08-21 15:10:37',787.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7382,5,5,'2019-08-21 15:10:37',787.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7383,5,5,'2019-08-21 15:10:37',788.403000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7384,5,5,'2019-08-21 15:10:37',788.799000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7385,5,5,'2019-08-21 15:10:37',789.336000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7386,5,5,'2019-08-21 15:10:37',790.218000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7387,5,5,'2019-08-21 15:10:37',791.117000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7388,5,5,'2019-08-21 15:10:37',792.100000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7389,5,5,'2019-08-21 15:10:37',792.882000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7390,5,5,'2019-08-21 15:10:37',793.881000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7391,5,5,'2019-08-21 15:10:37',794.663000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7392,5,5,'2019-08-21 15:10:37',795.047000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7393,5,5,'2019-08-21 15:10:37',795.579000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7394,5,5,'2019-08-21 15:10:37',795.993000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7395,5,5,'2019-08-21 15:10:37',796.395000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7396,5,5,'2019-08-21 15:10:37',797.193000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7397,5,5,'2019-08-21 15:10:37',797.977000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7398,5,5,'2019-08-21 15:10:37',798.858000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7399,5,5,'2019-08-21 15:10:37',799.158000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7400,5,5,'2019-08-21 15:10:37',799.857000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7401,5,5,'2019-08-21 15:10:37',800.673000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7402,5,5,'2019-08-21 15:10:37',801.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7403,5,5,'2019-08-21 15:10:37',801.818000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7404,5,5,'2019-08-21 15:10:37',802.421000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7405,5,5,'2019-08-21 15:10:37',802.815000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7406,5,5,'2019-08-21 15:10:37',803.204000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7407,5,5,'2019-08-21 15:10:37',804.152000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7408,5,5,'2019-08-21 15:10:37',805.102000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7409,5,5,'2019-08-21 15:10:37',805.517000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7410,5,5,'2019-08-21 15:10:37',806.051000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7411,5,5,'2019-08-21 15:10:37',806.967000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7412,5,5,'2019-08-21 15:10:37',807.932000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7413,5,5,'2019-08-21 15:10:37',808.814000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7414,5,5,'2019-08-21 15:10:37',809.175000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7415,5,5,'2019-08-21 15:10:37',809.630000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7416,5,5,'2019-08-21 15:10:37',810.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7417,5,5,'2019-08-21 15:10:37',811.378000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7418,5,5,'2019-08-21 15:10:37',811.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7419,5,5,'2019-08-21 15:10:37',812.294000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7420,5,5,'2019-08-21 15:10:37',813.243000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7421,5,5,'2019-08-21 15:10:37',814.009000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7422,5,5,'2019-08-21 15:10:37',814.344000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7423,5,5,'2019-08-21 15:10:37',814.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7424,5,5,'2019-08-21 15:10:37',815.923000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7425,5,5,'2019-08-21 15:10:37',816.772000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7426,5,5,'2019-08-21 15:10:37',817.095000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7427,5,5,'2019-08-21 15:10:37',817.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7428,5,5,'2019-08-21 15:10:37',818.570000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7429,5,5,'2019-08-21 15:10:37',818.999000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7430,5,5,'2019-08-21 15:10:37',819.386000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7431,5,5,'2019-08-21 15:10:37',820.385000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7432,5,5,'2019-08-21 15:10:37',821.334000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7433,5,5,'2019-08-21 15:10:37',822.250000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7434,5,5,'2019-08-21 15:10:37',822.557000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7435,5,5,'2019-08-21 15:10:37',823.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7436,5,5,'2019-08-21 15:10:37',823.981000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7437,5,5,'2019-08-21 15:10:37',824.360000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7438,5,5,'2019-08-21 15:10:37',824.830000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7439,5,5,'2019-08-21 15:10:37',825.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7440,5,5,'2019-08-21 15:10:37',826.396000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7441,5,5,'2019-08-21 15:10:37',827.344000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7442,5,5,'2019-08-21 15:10:37',828.210000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7443,5,5,'2019-08-21 15:10:37',828.502000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7444,5,5,'2019-08-21 15:10:37',829.159000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7445,5,5,'2019-08-21 15:10:37',829.925000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7446,5,5,'2019-08-21 15:10:37',830.740000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7447,5,5,'2019-08-21 15:10:37',831.031000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7448,5,5,'2019-08-21 15:10:37',831.673000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7449,5,5,'2019-08-21 15:10:37',832.029000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7450,5,5,'2019-08-21 15:10:37',832.555000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7451,5,5,'2019-08-21 15:10:37',833.471000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7452,5,5,'2019-08-21 15:10:37',834.437000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7453,5,5,'2019-08-21 15:10:37',834.860000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7454,5,5,'2019-08-21 15:10:37',835.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7455,5,5,'2019-08-21 15:10:37',836.334000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7456,5,5,'2019-08-21 15:10:37',837.267000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7457,5,5,'2019-08-21 15:10:37',838.099000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7458,5,5,'2019-08-21 15:10:37',838.458000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7459,5,5,'2019-08-21 15:10:37',839.064000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7460,5,5,'2019-08-21 15:10:37',839.964000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7461,5,5,'2019-08-21 15:10:37',840.433000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7462,5,5,'2019-08-21 15:10:37',840.963000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7463,5,5,'2019-08-21 15:10:37',841.319000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7464,5,5,'2019-08-21 15:10:37',841.845000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7465,5,5,'2019-08-21 15:10:37',842.694000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7466,5,5,'2019-08-21 15:10:37',843.693000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7467,5,5,'2019-08-21 15:10:37',844.592000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7468,5,5,'2019-08-21 15:10:37',845.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7469,5,5,'2019-08-21 15:10:37',846.507000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7470,5,5,'2019-08-21 15:10:37',846.852000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7471,5,5,'2019-08-21 15:10:37',847.455000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7472,5,5,'2019-08-21 15:10:37',848.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7473,5,5,'2019-08-21 15:10:37',849.237000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7474,5,5,'2019-08-21 15:10:37',849.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7475,5,5,'2019-08-21 15:10:37',850.069000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7476,5,5,'2019-08-21 15:10:37',850.952000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7477,5,5,'2019-08-21 15:10:37',851.751000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7478,5,5,'2019-08-21 15:10:37',852.717000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7479,5,5,'2019-08-21 15:10:37',853.615000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7480,5,5,'2019-08-21 15:10:37',854.398000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7481,5,5,'2019-08-21 15:10:37',854.763000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7482,5,5,'2019-08-21 15:10:37',855.247000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7483,5,5,'2019-08-21 15:10:37',855.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7484,5,5,'2019-08-21 15:10:37',856.046000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7485,5,5,'2019-08-21 15:10:37',856.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7486,5,5,'2019-08-21 15:10:37',857.302000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7487,5,5,'2019-08-21 15:10:37',857.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7488,5,5,'2019-08-21 15:10:37',858.710000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7489,5,5,'2019-08-21 15:10:37',859.593000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7490,5,5,'2019-08-21 15:10:37',860.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7491,5,5,'2019-08-21 15:10:37',860.392000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7492,5,5,'2019-08-21 15:10:37',861.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7493,5,5,'2019-08-21 15:10:37',862.140000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7494,5,5,'2019-08-21 15:10:37',862.955000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7495,5,5,'2019-08-21 15:10:37',863.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7496,5,5,'2019-08-21 15:10:37',863.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7497,5,5,'2019-08-21 15:10:37',864.245000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7498,5,5,'2019-08-21 15:10:37',864.820000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7499,5,5,'2019-08-21 15:10:37',865.818000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7500,5,5,'2019-08-21 15:10:37',866.701000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7501,5,5,'2019-08-21 15:10:37',867.700000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7502,5,5,'2019-08-21 15:10:37',868.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7503,5,5,'2019-08-21 15:10:37',868.599000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7504,5,5,'2019-08-21 15:10:37',869.548000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7505,5,5,'2019-08-21 15:10:37',869.918000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7506,5,5,'2019-08-21 15:10:37',870.364000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7507,5,5,'2019-08-21 15:10:37',871.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7508,5,5,'2019-08-21 15:10:37',872.245000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7509,5,5,'2019-08-21 15:10:37',872.568000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7510,5,5,'2019-08-21 15:10:37',873.044000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7511,5,5,'2019-08-21 15:10:37',874.026000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7512,5,5,'2019-08-21 15:10:37',874.482000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7513,5,5,'2019-08-21 15:10:37',874.859000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7514,5,5,'2019-08-21 15:10:37',875.791000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7515,5,5,'2019-08-21 15:10:37',876.707000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7516,5,5,'2019-08-21 15:10:37',877.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7517,5,5,'2019-08-21 15:10:37',877.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7518,5,5,'2019-08-21 15:10:37',878.339000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7519,5,5,'2019-08-21 15:10:37',879.287000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7520,5,5,'2019-08-21 15:10:37',880.253000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7521,5,5,'2019-08-21 15:10:37',880.620000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7522,5,5,'2019-08-21 15:10:37',881.202000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7523,5,5,'2019-08-21 15:10:37',882.051000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7524,5,5,'2019-08-21 15:10:37',882.934000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7525,5,5,'2019-08-21 15:10:37',883.916000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7526,5,5,'2019-08-21 15:10:37',884.881000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7527,5,5,'2019-08-21 15:10:37',885.830000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7528,5,5,'2019-08-21 15:10:37',886.172000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7529,5,5,'2019-08-21 15:10:37',886.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7530,5,5,'2019-08-21 15:10:37',887.129000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7531,5,5,'2019-08-21 15:10:37',887.812000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7532,5,5,'2019-08-21 15:10:37',888.660000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7533,5,5,'2019-08-21 15:10:37',889.560000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7534,5,5,'2019-08-21 15:10:37',890.342000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7535,5,5,'2019-08-21 15:10:37',890.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7536,5,5,'2019-08-21 15:10:37',891.291000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7537,5,5,'2019-08-21 15:10:37',891.634000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7538,5,5,'2019-08-21 15:10:37',892.073000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7539,5,5,'2019-08-21 15:10:37',892.906000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7540,5,5,'2019-08-21 15:10:37',893.738000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7541,5,5,'2019-08-21 15:10:37',894.737000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7542,5,5,'2019-08-21 15:10:37',895.603000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7543,5,5,'2019-08-21 15:10:37',895.967000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7544,5,5,'2019-08-21 15:10:37',896.485000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7545,5,5,'2019-08-21 15:10:37',897.385000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7546,5,5,'2019-08-21 15:10:37',898.283000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7547,5,5,'2019-08-21 15:10:37',898.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7548,5,5,'2019-08-21 15:10:37',899.049000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7549,5,5,'2019-08-21 15:10:37',899.932000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7550,5,5,'2019-08-21 15:10:37',900.914000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7551,5,5,'2019-08-21 15:10:37',901.287000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7552,5,5,'2019-08-21 15:10:37',901.696000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7553,5,5,'2019-08-21 15:10:37',902.053000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7554,5,5,'2019-08-21 15:10:37',902.512000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7555,5,5,'2019-08-21 15:10:37',903.428000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7556,5,5,'2019-08-21 15:10:37',904.394000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7557,5,5,'2019-08-21 15:10:37',905.376000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7558,5,5,'2019-08-21 15:10:37',905.771000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7559,5,5,'2019-08-21 15:10:37',906.291000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7560,5,5,'2019-08-21 15:10:37',907.057000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7561,5,5,'2019-08-21 15:10:37',907.434000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7562,5,5,'2019-08-21 15:10:37',907.923000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7563,5,5,'2019-08-21 15:10:37',908.738000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7564,5,5,'2019-08-21 15:10:37',909.571000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7565,5,5,'2019-08-21 15:10:37',910.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7566,5,5,'2019-08-21 15:10:37',911.286000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7567,5,5,'2019-08-21 15:10:37',911.687000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7568,5,5,'2019-08-21 15:10:37',912.102000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7569,5,5,'2019-08-21 15:10:37',912.884000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7570,5,5,'2019-08-21 15:10:37',913.198000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7571,5,5,'2019-08-21 15:10:37',913.767000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7572,5,5,'2019-08-21 15:10:37',914.649000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7573,5,5,'2019-08-21 15:10:37',915.515000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7574,5,5,'2019-08-21 15:10:37',916.020000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7575,5,5,'2019-08-21 15:10:37',916.330000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7576,5,5,'2019-08-21 15:10:37',917.213000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7577,5,5,'2019-08-21 15:10:37',918.012000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7578,5,5,'2019-08-21 15:10:37',918.397000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7579,5,5,'2019-08-21 15:10:37',918.861000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7580,5,5,'2019-08-21 15:10:37',919.677000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7581,5,5,'2019-08-21 15:10:37',920.492000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7582,5,5,'2019-08-21 15:10:37',921.475000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7583,5,5,'2019-08-21 15:10:37',922.273000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7584,5,5,'2019-08-21 15:10:37',922.721000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7585,5,5,'2019-08-21 15:10:37',923.206000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7586,5,5,'2019-08-21 15:10:37',923.627000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7587,5,5,'2019-08-21 15:10:37',924.139000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7588,5,5,'2019-08-21 15:10:37',925.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7589,5,5,'2019-08-21 15:10:37',925.986000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7590,5,5,'2019-08-21 15:10:37',926.919000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7591,5,5,'2019-08-21 15:10:37',927.768000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7592,5,5,'2019-08-21 15:10:37',928.684000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7593,5,5,'2019-08-21 15:10:37',929.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7594,5,5,'2019-08-21 15:10:37',929.466000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7595,5,5,'2019-08-21 15:10:37',930.006000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7596,5,5,'2019-08-21 15:10:37',930.299000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7597,5,5,'2019-08-21 15:10:37',930.641000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7598,5,5,'2019-08-21 15:10:37',931.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7599,5,5,'2019-08-21 15:10:37',932.246000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7600,5,5,'2019-08-21 15:10:37',933.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7601,5,5,'2019-08-21 15:10:37',933.861000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7602,5,5,'2019-08-21 15:10:37',934.228000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7603,5,5,'2019-08-21 15:10:37',934.644000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7604,5,5,'2019-08-21 15:10:37',935.409000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7605,5,5,'2019-08-21 15:10:37',935.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7606,5,5,'2019-08-21 15:10:37',936.209000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7607,5,5,'2019-08-21 15:10:37',937.124000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7608,5,5,'2019-08-21 15:10:37',937.957000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7609,5,5,'2019-08-21 15:10:37',938.872000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7610,5,5,'2019-08-21 15:10:37',939.267000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7611,5,5,'2019-08-21 15:10:37',939.838000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7612,5,5,'2019-08-21 15:10:37',977.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7613,5,5,'2019-08-21 15:10:37',999.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7614,5,5,'2019-08-21 15:10:37',1000.624000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7615,5,5,'2019-08-21 15:10:37',1000.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7616,5,5,'2019-08-21 15:10:37',1001.407000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7617,5,5,'2019-08-21 15:10:37',1002.189000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7618,5,5,'2019-08-21 15:10:37',1003.005000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7619,5,5,'2019-08-21 15:10:37',1003.292000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7620,5,5,'2019-08-21 15:10:37',1004.021000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7621,5,5,'2019-08-21 15:10:37',1004.920000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7622,5,5,'2019-08-21 15:10:37',1005.197000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7623,5,5,'2019-08-21 15:10:37',1005.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7624,5,5,'2019-08-21 15:10:37',1006.651000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7625,5,5,'2019-08-21 15:10:37',1007.566000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7626,5,5,'2019-08-21 15:10:37',1008.466000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7627,5,5,'2019-08-21 15:10:37',1008.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7628,5,5,'2019-08-21 15:10:37',1009.248000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7629,5,5,'2019-08-21 15:10:37',1010.247000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7630,5,5,'2019-08-21 15:10:37',1010.689000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7631,5,5,'2019-08-21 15:10:37',1011.196000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7632,5,5,'2019-08-21 15:10:37',1012.045000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7633,5,5,'2019-08-21 15:10:37',1012.372000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7634,5,5,'2019-08-21 15:10:37',1012.861000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7635,5,5,'2019-08-21 15:10:37',1013.860000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7636,5,5,'2019-08-21 15:10:37',1014.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7637,5,5,'2019-08-21 15:10:37',1015.658000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7638,5,5,'2019-08-21 15:10:37',1016.607000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7639,5,5,'2019-08-21 15:10:37',1016.887000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7640,5,5,'2019-08-21 15:10:37',1017.439000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7641,5,5,'2019-08-21 15:10:37',1018.222000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7642,5,5,'2019-08-21 15:10:37',1019.121000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7643,5,5,'2019-08-21 15:10:37',1019.971000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7644,5,5,'2019-08-21 15:10:37',1020.263000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7645,5,5,'2019-08-21 15:10:37',1020.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7646,5,5,'2019-08-21 15:10:37',1021.651000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7647,5,5,'2019-08-21 15:10:37',1022.518000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7648,5,5,'2019-08-21 15:10:37',1022.883000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7649,5,5,'2019-08-21 15:10:37',1023.300000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7650,5,5,'2019-08-21 15:10:37',1023.900000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7651,5,5,'2019-08-21 15:10:37',1024.266000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7652,5,5,'2019-08-21 15:10:37',1025.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7653,5,5,'2019-08-21 15:10:37',1026.030000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7654,5,5,'2019-08-21 15:10:37',1026.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7655,5,5,'2019-08-21 15:10:37',1027.115000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7656,5,5,'2019-08-21 15:10:37',1027.628000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7657,5,5,'2019-08-21 15:10:37',1028.461000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7658,5,5,'2019-08-21 15:10:37',1029.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7659,5,5,'2019-08-21 15:10:37',1029.694000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7660,5,5,'2019-08-21 15:10:37',1030.325000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7661,5,5,'2019-08-21 15:10:37',1031.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7662,5,5,'2019-08-21 15:10:37',1031.924000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7663,5,5,'2019-08-21 15:10:37',1032.772000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7664,5,5,'2019-08-21 15:10:37',1033.605000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7665,5,5,'2019-08-21 15:10:37',1034.008000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7666,5,5,'2019-08-21 15:10:37',1034.454000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7667,5,5,'2019-08-21 15:10:37',1035.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7668,5,5,'2019-08-21 15:10:37',1035.580000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7669,5,5,'2019-08-21 15:10:37',1036.219000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7670,5,5,'2019-08-21 15:10:37',1037.018000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7671,5,5,'2019-08-21 15:10:37',1037.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7672,5,5,'2019-08-21 15:10:37',1038.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7673,5,5,'2019-08-21 15:10:37',1038.732000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7674,5,5,'2019-08-21 15:10:37',1039.648000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7675,5,5,'2019-08-21 15:10:37',1040.033000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7676,5,5,'2019-08-21 15:10:37',1040.631000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7677,5,5,'2019-08-21 15:10:37',1041.446000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7678,5,5,'2019-08-21 15:10:37',1041.848000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7679,5,5,'2019-08-21 15:10:37',1042.346000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7680,5,5,'2019-08-21 15:10:37',1043.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7681,5,5,'2019-08-21 15:10:37',1044.210000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7682,5,5,'2019-08-21 15:10:37',1044.518000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7683,5,5,'2019-08-21 15:10:37',1044.993000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7684,5,5,'2019-08-21 15:10:37',1045.775000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7685,5,5,'2019-08-21 15:10:37',1046.657000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7686,5,5,'2019-08-21 15:10:37',1047.590000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7687,5,5,'2019-08-21 15:10:37',1047.914000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7688,5,5,'2019-08-21 15:10:37',1048.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7689,5,5,'2019-08-21 15:10:37',1049.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7690,5,5,'2019-08-21 15:10:37',1050.070000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7691,5,5,'2019-08-21 15:10:37',1050.474000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7692,5,5,'2019-08-21 15:10:37',1050.853000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7693,5,5,'2019-08-21 15:10:37',1051.835000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7694,5,5,'2019-08-21 15:10:37',1052.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7695,5,5,'2019-08-21 15:10:37',1053.043000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7696,5,5,'2019-08-21 15:10:37',1053.518000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7697,5,5,'2019-08-21 15:10:37',1054.332000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7698,5,5,'2019-08-21 15:10:37',1055.265000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7699,5,5,'2019-08-21 15:10:37',1056.081000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7700,5,5,'2019-08-21 15:10:37',1056.510000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7701,5,5,'2019-08-21 15:10:37',1056.963000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7702,5,5,'2019-08-21 15:10:37',1057.929000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7703,5,5,'2019-08-21 15:10:37',1058.694000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7704,5,5,'2019-08-21 15:10:37',1059.660000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7705,5,5,'2019-08-21 15:10:37',1060.609000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7706,5,5,'2019-08-21 15:10:37',1060.974000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7707,5,5,'2019-08-21 15:10:37',1061.508000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7708,5,5,'2019-08-21 15:10:37',1062.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7709,5,5,'2019-08-21 15:10:37',1062.324000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7710,5,5,'2019-08-21 15:10:37',1062.697000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7711,5,5,'2019-08-21 15:10:37',1063.156000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7712,5,5,'2019-08-21 15:10:37',1063.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7713,5,5,'2019-08-21 15:10:37',1064.904000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7714,5,5,'2019-08-21 15:10:37',1065.854000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7715,5,5,'2019-08-21 15:10:37',1066.836000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7716,5,5,'2019-08-21 15:10:37',1067.161000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7717,5,5,'2019-08-21 15:10:37',1067.651000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7718,5,5,'2019-08-21 15:10:37',1068.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7719,5,5,'2019-08-21 15:10:37',1068.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7720,5,5,'2019-08-21 15:10:37',1069.350000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7721,5,5,'2019-08-21 15:10:37',1070.182000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7722,5,5,'2019-08-21 15:10:37',1071.081000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7723,5,5,'2019-08-21 15:10:37',1071.946000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7724,5,5,'2019-08-21 15:10:37',1072.442000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7725,5,5,'2019-08-21 15:10:37',1072.945000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7726,5,5,'2019-08-21 15:10:37',1073.728000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7727,5,5,'2019-08-21 15:10:37',1074.577000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7728,5,5,'2019-08-21 15:10:37',1074.961000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7729,5,5,'2019-08-21 15:10:37',1075.393000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7730,5,5,'2019-08-21 15:10:37',1076.325000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7731,5,5,'2019-08-21 15:10:37',1076.855000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7732,5,5,'2019-08-21 15:10:37',1077.174000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7733,5,5,'2019-08-21 15:10:37',1077.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7734,5,5,'2019-08-21 15:10:37',1078.468000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7735,5,5,'2019-08-21 15:10:37',1078.956000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7736,5,5,'2019-08-21 15:10:37',1079.821000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7737,5,5,'2019-08-21 15:10:37',1080.242000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7738,5,5,'2019-08-21 15:10:37',1080.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7739,5,5,'2019-08-21 15:10:37',1081.586000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7740,5,5,'2019-08-21 15:10:37',1082.585000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7741,5,5,'2019-08-21 15:10:37',1083.501000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7742,5,5,'2019-08-21 15:10:37',1083.940000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7743,5,5,'2019-08-21 15:10:37',1084.300000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7744,5,5,'2019-08-21 15:10:37',1085.065000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7745,5,5,'2019-08-21 15:10:37',1085.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7746,5,5,'2019-08-21 15:10:37',1086.119000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7747,5,5,'2019-08-21 15:10:37',1086.697000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7748,5,5,'2019-08-21 15:10:37',1087.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7749,5,5,'2019-08-21 15:10:37',1088.495000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7750,5,5,'2019-08-21 15:10:37',1089.294000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7751,5,5,'2019-08-21 15:10:37',1090.177000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7752,5,5,'2019-08-21 15:10:37',1091.042000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7753,5,5,'2019-08-21 15:10:37',1091.377000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7754,5,5,'2019-08-21 15:10:37',1092.058000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7755,5,5,'2019-08-21 15:10:37',1092.495000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7756,5,5,'2019-08-21 15:10:37',1093.057000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7757,5,5,'2019-08-21 15:10:37',1093.956000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7758,5,5,'2019-08-21 15:10:37',1094.889000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7759,5,5,'2019-08-21 15:10:37',1095.754000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7760,5,5,'2019-08-21 15:10:37',1096.520000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7761,5,5,'2019-08-21 15:10:37',1096.930000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7762,5,5,'2019-08-21 15:10:37',1097.353000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7763,5,5,'2019-08-21 15:10:37',1097.847000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7764,5,5,'2019-08-21 15:10:37',1098.201000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7765,5,5,'2019-08-21 15:10:37',1098.967000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7766,5,5,'2019-08-21 15:10:37',1099.883000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7767,5,5,'2019-08-21 15:10:37',1100.715000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7768,5,5,'2019-08-21 15:10:37',1101.581000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7769,5,5,'2019-08-21 15:10:37',1101.958000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7770,5,5,'2019-08-21 15:10:37',1102.563000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7771,5,5,'2019-08-21 15:10:37',1103.445000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7772,5,5,'2019-08-21 15:10:37',1103.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7773,5,5,'2019-08-21 15:10:37',1104.278000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7774,5,5,'2019-08-21 15:10:37',1105.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7775,5,5,'2019-08-21 15:10:37',1105.596000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7776,5,5,'2019-08-21 15:10:37',1105.993000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7777,5,5,'2019-08-21 15:10:37',1106.892000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7778,5,5,'2019-08-21 15:10:37',1107.774000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7779,5,5,'2019-08-21 15:10:37',1108.115000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7780,5,5,'2019-08-21 15:10:37',1108.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7781,5,5,'2019-08-21 15:10:37',1109.405000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7782,5,5,'2019-08-21 15:10:37',1110.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7783,5,5,'2019-08-21 15:10:37',1110.188000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7784,5,5,'2019-08-21 15:10:37',1110.745000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7785,5,5,'2019-08-21 15:10:37',1111.171000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7786,5,5,'2019-08-21 15:10:37',1112.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7787,5,5,'2019-08-21 15:10:37',1112.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7788,5,5,'2019-08-21 15:10:37',1112.852000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7789,5,5,'2019-08-21 15:10:37',1113.701000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7790,5,5,'2019-08-21 15:10:37',1114.517000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7791,5,5,'2019-08-21 15:10:37',1115.282000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7792,5,5,'2019-08-21 15:10:37',1116.231000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7793,5,5,'2019-08-21 15:10:37',1116.600000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7794,5,5,'2019-08-21 15:10:37',1117.014000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7795,5,5,'2019-08-21 15:10:37',1117.376000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7796,5,5,'2019-08-21 15:10:37',1117.996000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7797,5,5,'2019-08-21 15:10:37',1118.896000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7798,5,5,'2019-08-21 15:10:37',1119.728000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7799,5,5,'2019-08-21 15:10:37',1120.693000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7800,5,5,'2019-08-21 15:10:37',1121.593000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7801,5,5,'2019-08-21 15:10:37',1122.002000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7802,5,5,'2019-08-21 15:10:37',1122.541000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7803,5,5,'2019-08-21 15:10:37',1122.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7804,5,5,'2019-08-21 15:10:37',1123.424000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7805,5,5,'2019-08-21 15:10:37',1124.206000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7806,5,5,'2019-08-21 15:10:37',1125.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7807,5,5,'2019-08-21 15:10:37',1126.121000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7808,5,5,'2019-08-21 15:10:37',1126.970000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7809,5,5,'2019-08-21 15:10:37',1127.282000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7810,5,5,'2019-08-21 15:10:37',1127.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7811,5,5,'2019-08-21 15:10:37',1128.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7812,5,5,'2019-08-21 15:10:37',1128.868000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7813,5,5,'2019-08-21 15:10:37',1129.684000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7814,5,5,'2019-08-21 15:10:37',1130.532000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7815,5,5,'2019-08-21 15:10:37',1130.950000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7816,5,5,'2019-08-21 15:10:37',1131.432000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7817,5,5,'2019-08-21 15:10:37',1131.877000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7818,5,5,'2019-08-21 15:10:37',1132.314000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7819,5,5,'2019-08-21 15:10:37',1133.213000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7820,5,5,'2019-08-21 15:10:37',1134.162000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7821,5,5,'2019-08-21 15:10:37',1135.178000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7822,5,5,'2019-08-21 15:10:37',1136.109000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7823,5,5,'2019-08-21 15:10:37',1136.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7824,5,5,'2019-08-21 15:10:37',1137.299000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7825,5,5,'2019-08-21 15:10:37',1137.675000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7826,5,5,'2019-08-21 15:10:37',1138.474000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7827,5,5,'2019-08-21 15:10:37',1139.423000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7828,5,5,'2019-08-21 15:10:37',1140.422000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7829,5,5,'2019-08-21 15:10:37',1140.725000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7830,5,5,'2019-08-21 15:10:37',1141.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7831,5,5,'2019-08-21 15:10:37',1142.203000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7832,5,5,'2019-08-21 15:10:37',1143.119000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7833,5,5,'2019-08-21 15:10:37',1143.466000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7834,5,5,'2019-08-21 15:10:37',1143.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7835,5,5,'2019-08-21 15:10:37',1144.333000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7836,5,5,'2019-08-21 15:10:37',1144.784000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7837,5,5,'2019-08-21 15:10:37',1145.782000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7838,5,5,'2019-08-21 15:10:37',1146.748000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7839,5,5,'2019-08-21 15:10:37',1147.530000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7840,5,5,'2019-08-21 15:10:37',1148.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7841,5,5,'2019-08-21 15:10:37',1148.918000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7842,5,5,'2019-08-21 15:10:37',1149.495000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7843,5,5,'2019-08-21 15:10:37',1150.411000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7844,5,5,'2019-08-21 15:10:37',1150.792000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7845,5,5,'2019-08-21 15:10:37',1151.227000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7846,5,5,'2019-08-21 15:10:37',1152.126000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7847,5,5,'2019-08-21 15:10:37',1152.991000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7848,5,5,'2019-08-21 15:10:37',1153.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7849,5,5,'2019-08-21 15:10:37',1154.329000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7850,5,5,'2019-08-21 15:10:37',1154.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7851,5,5,'2019-08-21 15:10:37',1155.589000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7852,5,5,'2019-08-21 15:10:37',1155.972000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7853,5,5,'2019-08-21 15:10:37',1156.388000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7854,5,5,'2019-08-21 15:10:37',1157.287000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7855,5,5,'2019-08-21 15:10:37',1157.726000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7856,5,5,'2019-08-21 15:10:37',1158.186000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7857,5,5,'2019-08-21 15:10:37',1159.019000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7858,5,5,'2019-08-21 15:10:37',1159.867000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7859,5,5,'2019-08-21 15:10:37',1160.767000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7860,5,5,'2019-08-21 15:10:37',1161.212000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7861,5,5,'2019-08-21 15:10:37',1161.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7862,5,5,'2019-08-21 15:10:37',1162.531000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7863,5,5,'2019-08-21 15:10:37',1163.497000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7864,5,5,'2019-08-21 15:10:37',1163.872000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7865,5,5,'2019-08-21 15:10:37',1164.412000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7866,5,5,'2019-08-21 15:10:37',1165.229000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7867,5,5,'2019-08-21 15:10:37',1165.615000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7868,5,5,'2019-08-21 15:10:37',1166.077000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7869,5,5,'2019-08-21 15:10:37',1166.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7870,5,5,'2019-08-21 15:10:37',1167.842000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7871,5,5,'2019-08-21 15:10:37',1168.824000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7872,5,5,'2019-08-21 15:10:37',1169.640000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7873,5,5,'2019-08-21 15:10:37',1170.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7874,5,5,'2019-08-21 15:10:37',1171.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7875,5,5,'2019-08-21 15:10:37',1171.723000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7876,5,5,'2019-08-21 15:10:37',1172.354000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7877,5,5,'2019-08-21 15:10:37',1172.720000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7878,5,5,'2019-08-21 15:10:37',1173.136000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7879,5,5,'2019-08-21 15:10:37',1173.516000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7880,5,5,'2019-08-21 15:10:37',1174.085000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7881,5,5,'2019-08-21 15:10:37',1174.917000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7882,5,5,'2019-08-21 15:10:37',1175.899000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7883,5,5,'2019-08-21 15:10:37',1176.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7884,5,5,'2019-08-21 15:10:37',1176.716000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7885,5,5,'2019-08-21 15:10:37',1177.631000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7886,5,5,'2019-08-21 15:10:37',1178.414000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7887,5,5,'2019-08-21 15:10:37',1179.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7888,5,5,'2019-08-21 15:10:37',1180.262000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7889,5,5,'2019-08-21 15:10:37',1180.560000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7890,5,5,'2019-08-21 15:10:37',1181.061000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7891,5,5,'2019-08-21 15:10:37',1182.043000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7892,5,5,'2019-08-21 15:10:37',1182.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7893,5,5,'2019-08-21 15:10:37',1183.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7894,5,5,'2019-08-21 15:10:37',1183.708000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7895,5,5,'2019-08-21 15:10:37',1184.674000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7896,5,5,'2019-08-21 15:10:37',1185.605000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7897,5,5,'2019-08-21 15:10:37',1186.052000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7898,5,5,'2019-08-21 15:10:37',1186.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7899,5,5,'2019-08-21 15:10:37',1187.454000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7900,5,5,'2019-08-21 15:10:37',1188.419000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7901,5,5,'2019-08-21 15:10:37',1188.813000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7902,5,5,'2019-08-21 15:10:37',1189.235000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7903,5,5,'2019-08-21 15:10:37',1190.067000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7904,5,5,'2019-08-21 15:10:37',1191.000000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7905,5,5,'2019-08-21 15:10:37',1191.898000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7906,5,5,'2019-08-21 15:10:37',1192.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7907,5,5,'2019-08-21 15:10:37',1193.217000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7908,5,5,'2019-08-21 15:10:37',1193.697000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7909,5,5,'2019-08-21 15:10:37',1194.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7910,5,5,'2019-08-21 15:10:37',1194.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7911,5,5,'2019-08-21 15:10:37',1195.528000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7912,5,5,'2019-08-21 15:10:37',1196.494000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7913,5,5,'2019-08-21 15:10:37',1196.915000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7914,5,5,'2019-08-21 15:10:37',1197.293000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7915,5,5,'2019-08-21 15:10:37',1197.862000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7916,5,5,'2019-08-21 15:10:37',1198.192000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7917,5,5,'2019-08-21 15:10:37',1199.174000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7918,5,5,'2019-08-21 15:10:37',1200.156000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7919,5,5,'2019-08-21 15:10:37',1200.624000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7920,5,5,'2019-08-21 15:10:37',1201.089000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7921,5,5,'2019-08-21 15:10:37',1202.071000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7922,5,5,'2019-08-21 15:10:37',1202.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7923,5,5,'2019-08-21 15:10:37',1203.786000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7924,5,5,'2019-08-21 15:10:37',1204.141000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7925,5,5,'2019-08-21 15:10:37',1204.668000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7926,5,5,'2019-08-21 15:10:37',1205.534000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7927,5,5,'2019-08-21 15:10:37',1206.449000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7928,5,5,'2019-08-21 15:10:37',1206.892000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7929,5,5,'2019-08-21 15:10:37',1207.398000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7930,5,5,'2019-08-21 15:10:37',1208.164000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7931,5,5,'2019-08-21 15:10:37',1209.097000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7932,5,5,'2019-08-21 15:10:37',1209.461000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7933,5,5,'2019-08-21 15:10:37',1210.013000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7934,5,5,'2019-08-21 15:10:37',1210.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7935,5,5,'2019-08-21 15:10:37',1211.588000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7936,5,5,'2019-08-21 15:10:37',1211.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7937,5,5,'2019-08-21 15:10:37',1212.810000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7938,5,5,'2019-08-21 15:10:37',1213.608000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7939,5,5,'2019-08-21 15:10:37',1213.926000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7940,5,5,'2019-08-21 15:10:37',1214.491000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7941,5,5,'2019-08-21 15:10:37',1215.373000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7942,5,5,'2019-08-21 15:10:37',1216.272000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7943,5,5,'2019-08-21 15:10:37',1217.071000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7944,5,5,'2019-08-21 15:10:37',1218.087000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7945,5,5,'2019-08-21 15:10:37',1218.440000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7946,5,5,'2019-08-21 15:10:37',1219.086000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7947,5,5,'2019-08-21 15:10:37',1219.458000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7948,5,5,'2019-08-21 15:10:37',1219.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7949,5,5,'2019-08-21 15:10:37',1220.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7950,5,5,'2019-08-21 15:10:37',1221.600000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7951,5,5,'2019-08-21 15:10:37',1221.937000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7952,5,5,'2019-08-21 15:10:37',1222.532000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7953,5,5,'2019-08-21 15:10:37',1223.414000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7954,5,5,'2019-08-21 15:10:37',1223.529000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7955,5,5,'2019-08-21 15:10:37',1224.214000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7956,5,5,'2019-08-21 15:10:37',1225.146000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7957,5,5,'2019-08-21 15:10:37',1226.128000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7958,5,5,'2019-08-21 15:10:37',1227.011000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7959,5,5,'2019-08-21 15:10:37',1227.459000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7960,5,5,'2019-08-21 15:10:37',1228.010000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7961,5,5,'2019-08-21 15:10:37',1228.958000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7962,5,5,'2019-08-21 15:10:37',1229.725000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7963,5,5,'2019-08-21 15:10:37',1230.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7964,5,5,'2019-08-21 15:10:37',1230.540000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7965,5,5,'2019-08-21 15:10:37',1231.473000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7966,5,5,'2019-08-21 15:10:37',1232.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7967,5,5,'2019-08-21 15:10:37',1233.420000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7968,5,5,'2019-08-21 15:10:37',1233.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7969,5,5,'2019-08-21 15:10:37',1234.353000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7970,5,5,'2019-08-21 15:10:37',1235.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7971,5,5,'2019-08-21 15:10:37',1236.018000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7972,5,5,'2019-08-21 15:10:37',1236.367000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7973,5,5,'2019-08-21 15:10:37',1236.933000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7974,5,5,'2019-08-21 15:10:37',1237.915000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7975,5,5,'2019-08-21 15:10:37',1238.748000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7976,5,5,'2019-08-21 15:10:37',1239.078000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7977,5,5,'2019-08-21 15:10:37',1239.696000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7978,5,5,'2019-08-21 15:10:37',1240.479000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7979,5,5,'2019-08-21 15:10:37',1241.361000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7980,5,5,'2019-08-21 15:10:37',1242.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7981,5,5,'2019-08-21 15:10:37',1242.524000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7982,5,5,'2019-08-21 15:10:37',1242.960000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7983,5,5,'2019-08-21 15:10:37',1243.726000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7984,5,5,'2019-08-21 15:10:37',1244.207000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7985,5,5,'2019-08-21 15:10:37',1244.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7986,5,5,'2019-08-21 15:10:37',1245.690000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7987,5,5,'2019-08-21 15:10:37',1246.489000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7988,5,5,'2019-08-21 15:10:37',1247.422000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7989,5,5,'2019-08-21 15:10:37',1247.744000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7990,5,5,'2019-08-21 15:10:37',1248.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7991,5,5,'2019-08-21 15:10:37',1249.253000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7992,5,5,'2019-08-21 15:10:37',1250.152000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7993,5,5,'2019-08-21 15:10:37',1250.951000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7994,5,5,'2019-08-21 15:10:37',1251.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7995,5,5,'2019-08-21 15:10:37',1251.917000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7996,5,5,'2019-08-21 15:10:37',1252.410000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7997,5,5,'2019-08-21 15:10:37',1252.916000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7998,5,5,'2019-08-21 15:10:37',1253.897000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (7999,5,5,'2019-08-21 15:10:37',1254.863000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8000,5,5,'2019-08-21 15:10:37',1255.680000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8001,5,5,'2019-08-21 15:10:37',1256.445000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8002,5,5,'2019-08-21 15:10:37',1256.895000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8003,5,5,'2019-08-21 15:10:37',1257.395000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8004,5,5,'2019-08-21 15:10:37',1257.872000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8005,5,5,'2019-08-21 15:10:37',1258.177000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8006,5,5,'2019-08-21 15:10:37',1258.942000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8007,5,5,'2019-08-21 15:10:37',1259.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8008,5,5,'2019-08-21 15:10:37',1260.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8009,5,5,'2019-08-21 15:10:37',1260.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8010,5,5,'2019-08-21 15:10:37',1261.522000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8011,5,5,'2019-08-21 15:10:37',1262.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8012,5,5,'2019-08-21 15:10:37',1263.221000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8013,5,5,'2019-08-21 15:10:37',1263.565000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8014,6,6,'2019-08-21 15:10:44',0.645000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8015,6,6,'2019-08-21 15:10:44',19.205000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8016,6,6,'2019-08-21 15:10:44',19.616000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8017,6,6,'2019-08-21 15:10:44',20.154000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8018,6,6,'2019-08-21 15:10:44',21.120000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8019,6,6,'2019-08-21 15:10:44',21.969000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8020,6,6,'2019-08-21 15:10:44',22.868000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8021,6,6,'2019-08-21 15:10:44',23.190000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8022,6,6,'2019-08-21 15:10:44',23.667000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8023,6,6,'2019-08-21 15:10:44',24.482000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8024,6,6,'2019-08-21 15:10:44',24.855000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8025,6,6,'2019-08-21 15:10:44',25.332000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8026,6,6,'2019-08-21 15:10:44',26.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8027,6,6,'2019-08-21 15:10:44',26.931000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8028,6,6,'2019-08-21 15:10:44',27.299000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8029,6,6,'2019-08-21 15:10:44',27.929000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8030,6,6,'2019-08-21 15:10:44',28.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8031,6,6,'2019-08-21 15:10:44',29.943000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8032,6,6,'2019-08-21 15:10:44',30.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8033,6,6,'2019-08-21 15:10:44',31.875000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8034,6,6,'2019-08-21 15:10:44',32.707000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8035,6,6,'2019-08-21 15:10:44',33.144000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8036,6,6,'2019-08-21 15:10:44',33.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8037,6,6,'2019-08-21 15:10:44',33.991000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8038,6,6,'2019-08-21 15:10:44',34.539000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8039,6,6,'2019-08-21 15:10:44',34.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8040,6,6,'2019-08-21 15:10:44',35.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8041,6,6,'2019-08-21 15:10:44',36.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8042,6,6,'2019-08-21 15:10:44',37.519000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8043,6,6,'2019-08-21 15:10:44',37.908000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8044,6,6,'2019-08-21 15:10:44',38.484000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8045,6,6,'2019-08-21 15:10:44',39.417000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8046,6,6,'2019-08-21 15:10:44',40.415000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8047,6,6,'2019-08-21 15:10:44',41.364000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8048,6,6,'2019-08-21 15:10:44',42.214000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8049,6,6,'2019-08-21 15:10:44',42.996000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8050,6,6,'2019-08-21 15:10:44',43.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8051,6,6,'2019-08-21 15:10:44',43.945000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8052,6,6,'2019-08-21 15:10:44',44.877000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8053,6,6,'2019-08-21 15:10:44',45.308000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8054,6,6,'2019-08-21 15:10:44',45.876000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8055,6,6,'2019-08-21 15:10:44',46.709000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8056,6,6,'2019-08-21 15:10:44',47.064000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8057,6,6,'2019-08-21 15:10:44',47.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8058,6,6,'2019-08-21 15:10:44',48.673000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8059,6,6,'2019-08-21 15:10:44',49.489000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8060,6,6,'2019-08-21 15:10:44',49.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8061,6,6,'2019-08-21 15:10:44',50.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8062,6,6,'2019-08-21 15:10:44',51.470000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8063,6,6,'2019-08-21 15:10:44',52.303000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8064,6,6,'2019-08-21 15:10:44',53.252000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8065,6,6,'2019-08-21 15:10:44',54.101000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8066,6,6,'2019-08-21 15:10:44',55.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8067,6,6,'2019-08-21 15:10:44',55.463000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8068,6,6,'2019-08-21 15:10:44',55.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8069,6,6,'2019-08-21 15:10:44',56.392000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8070,6,6,'2019-08-21 15:10:44',56.964000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8071,6,6,'2019-08-21 15:10:44',57.880000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8072,6,6,'2019-08-21 15:10:44',58.310000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8073,6,6,'2019-08-21 15:10:44',58.695000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8074,6,6,'2019-08-21 15:10:44',59.678000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8075,6,6,'2019-08-21 15:10:44',60.710000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8076,6,6,'2019-08-21 15:10:44',61.476000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8077,6,6,'2019-08-21 15:10:44',61.833000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8078,6,6,'2019-08-21 15:10:44',62.458000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8079,6,6,'2019-08-21 15:10:44',63.341000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8080,6,6,'2019-08-21 15:10:44',64.123000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8081,6,6,'2019-08-21 15:10:44',65.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8082,6,6,'2019-08-21 15:10:44',65.987000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8083,6,6,'2019-08-21 15:10:44',66.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8084,6,6,'2019-08-21 15:10:44',66.837000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8085,6,6,'2019-08-21 15:10:44',67.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8086,6,6,'2019-08-21 15:10:44',67.902000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8087,6,6,'2019-08-21 15:10:44',68.817000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8088,6,6,'2019-08-21 15:10:44',69.183000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8089,6,6,'2019-08-21 15:10:44',69.783000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8090,6,6,'2019-08-21 15:10:44',70.600000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8091,6,6,'2019-08-21 15:10:44',70.929000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8092,6,6,'2019-08-21 15:10:44',71.498000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8093,6,6,'2019-08-21 15:10:44',72.331000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8094,6,6,'2019-08-21 15:10:44',73.296000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8095,6,6,'2019-08-21 15:10:44',74.195000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8096,6,6,'2019-08-21 15:10:44',74.532000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8097,6,6,'2019-08-21 15:10:44',75.011000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8098,6,6,'2019-08-21 15:10:44',75.794000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8099,6,6,'2019-08-21 15:10:44',76.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8100,6,6,'2019-08-21 15:10:44',77.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8101,6,6,'2019-08-21 15:10:44',77.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8102,6,6,'2019-08-21 15:10:44',78.524000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8103,6,6,'2019-08-21 15:10:44',79.390000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8104,6,6,'2019-08-21 15:10:44',80.205000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8105,6,6,'2019-08-21 15:10:44',81.071000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8106,6,6,'2019-08-21 15:10:44',81.417000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8107,6,6,'2019-08-21 15:10:44',82.087000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8108,6,6,'2019-08-21 15:10:44',83.069000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8109,6,6,'2019-08-21 15:10:44',83.365000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8110,6,6,'2019-08-21 15:10:44',83.968000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8111,6,6,'2019-08-21 15:10:44',84.967000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8112,6,6,'2019-08-21 15:10:44',85.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8113,6,6,'2019-08-21 15:10:44',85.816000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8114,6,6,'2019-08-21 15:10:44',86.748000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8115,6,6,'2019-08-21 15:10:44',87.681000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8116,6,6,'2019-08-21 15:10:44',88.080000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8117,6,6,'2019-08-21 15:10:44',88.663000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8118,6,6,'2019-08-21 15:10:44',89.662000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8119,6,6,'2019-08-21 15:10:44',90.661000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8120,6,6,'2019-08-21 15:10:44',91.493000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8121,6,6,'2019-08-21 15:10:44',91.825000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8122,6,6,'2019-08-21 15:10:44',92.259000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8123,6,6,'2019-08-21 15:10:44',92.612000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8124,6,6,'2019-08-21 15:10:44',93.092000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8125,6,6,'2019-08-21 15:10:44',93.907000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8126,6,6,'2019-08-21 15:10:44',94.823000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8127,6,6,'2019-08-21 15:10:44',95.622000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8128,6,6,'2019-08-21 15:10:44',96.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8129,6,6,'2019-08-21 15:10:44',97.470000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8130,6,6,'2019-08-21 15:10:44',97.882000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8131,6,6,'2019-08-21 15:10:44',98.336000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8132,6,6,'2019-08-21 15:10:44',98.689000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8133,6,6,'2019-08-21 15:10:44',99.284000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8134,6,6,'2019-08-21 15:10:44',100.067000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8135,6,6,'2019-08-21 15:10:44',100.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8136,6,6,'2019-08-21 15:10:44',101.032000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8137,6,6,'2019-08-21 15:10:44',101.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8138,6,6,'2019-08-21 15:10:44',102.304000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8139,6,6,'2019-08-21 15:10:44',102.798000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8140,6,6,'2019-08-21 15:10:44',103.746000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8141,6,6,'2019-08-21 15:10:44',104.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8142,6,6,'2019-08-21 15:10:44',105.578000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8143,6,6,'2019-08-21 15:10:44',106.576000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8144,6,6,'2019-08-21 15:10:44',107.525000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8145,6,6,'2019-08-21 15:10:44',108.524000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8146,6,6,'2019-08-21 15:10:44',109.424000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8147,6,6,'2019-08-21 15:10:44',109.794000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8148,6,6,'2019-08-21 15:10:44',110.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8149,6,6,'2019-08-21 15:10:44',110.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8150,6,6,'2019-08-21 15:10:44',111.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8151,6,6,'2019-08-21 15:10:44',112.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8152,6,6,'2019-08-21 15:10:44',113.036000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8153,6,6,'2019-08-21 15:10:44',113.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8154,6,6,'2019-08-21 15:10:44',114.734000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8155,6,6,'2019-08-21 15:10:44',115.094000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8156,6,6,'2019-08-21 15:10:44',115.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8157,6,6,'2019-08-21 15:10:44',116.032000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8158,6,6,'2019-08-21 15:10:44',116.466000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8159,6,6,'2019-08-21 15:10:44',117.314000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8160,6,6,'2019-08-21 15:10:44',117.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8161,6,6,'2019-08-21 15:10:44',118.313000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8162,6,6,'2019-08-21 15:10:44',119.130000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8163,6,6,'2019-08-21 15:10:44',119.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8164,6,6,'2019-08-21 15:10:44',119.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8165,6,6,'2019-08-21 15:10:44',120.928000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8166,6,6,'2019-08-21 15:10:44',121.710000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8167,6,6,'2019-08-21 15:10:44',122.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8168,6,6,'2019-08-21 15:10:44',122.526000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8169,6,6,'2019-08-21 15:10:44',123.458000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8170,6,6,'2019-08-21 15:10:44',124.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8171,6,6,'2019-08-21 15:10:44',124.643000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8172,6,6,'2019-08-21 15:10:44',125.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8173,6,6,'2019-08-21 15:10:44',125.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8174,6,6,'2019-08-21 15:10:44',126.838000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8175,6,6,'2019-08-21 15:10:44',127.620000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8176,6,6,'2019-08-21 15:10:44',128.065000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8177,6,6,'2019-08-21 15:10:44',128.453000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8178,6,6,'2019-08-21 15:10:44',129.269000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8179,6,6,'2019-08-21 15:10:44',130.151000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8180,6,6,'2019-08-21 15:10:44',130.488000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8181,6,6,'2019-08-21 15:10:44',130.934000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8182,6,6,'2019-08-21 15:10:44',131.883000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8183,6,6,'2019-08-21 15:10:44',132.881000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8184,6,6,'2019-08-21 15:10:44',133.233000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8185,6,6,'2019-08-21 15:10:44',133.647000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8186,6,6,'2019-08-21 15:10:44',134.529000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8187,6,6,'2019-08-21 15:10:44',134.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8188,6,6,'2019-08-21 15:10:44',135.295000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8189,6,6,'2019-08-21 15:10:44',136.244000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8190,6,6,'2019-08-21 15:10:44',137.077000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8191,6,6,'2019-08-21 15:10:44',137.876000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8192,6,6,'2019-08-21 15:10:44',138.210000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8193,6,6,'2019-08-21 15:10:44',138.691000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8194,6,6,'2019-08-21 15:10:44',139.508000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8195,6,6,'2019-08-21 15:10:44',140.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8196,6,6,'2019-08-21 15:10:44',140.693000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8197,6,6,'2019-08-21 15:10:44',141.223000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8198,6,6,'2019-08-21 15:10:44',142.071000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8199,6,6,'2019-08-21 15:10:44',142.854000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8200,6,6,'2019-08-21 15:10:44',143.736000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8201,6,6,'2019-08-21 15:10:44',144.024000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8202,6,6,'2019-08-21 15:10:44',144.651000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8203,6,6,'2019-08-21 15:10:44',145.468000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8204,6,6,'2019-08-21 15:10:44',146.434000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8205,6,6,'2019-08-21 15:10:44',146.761000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8206,6,6,'2019-08-21 15:10:44',147.432000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8207,6,6,'2019-08-21 15:10:44',148.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8208,6,6,'2019-08-21 15:10:44',149.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8209,6,6,'2019-08-21 15:10:44',150.146000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8210,6,6,'2019-08-21 15:10:44',150.506000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8211,6,6,'2019-08-21 15:10:44',151.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8212,6,6,'2019-08-21 15:10:44',152.011000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8213,6,6,'2019-08-21 15:10:44',152.343000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8214,6,6,'2019-08-21 15:10:44',152.926000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8215,6,6,'2019-08-21 15:10:44',153.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8216,6,6,'2019-08-21 15:10:44',154.874000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8217,6,6,'2019-08-21 15:10:44',155.260000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8218,6,6,'2019-08-21 15:10:44',155.890000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8219,6,6,'2019-08-21 15:10:44',156.400000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8220,6,6,'2019-08-21 15:10:44',156.771000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8221,6,6,'2019-08-21 15:10:44',157.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8222,6,6,'2019-08-21 15:10:44',158.670000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8223,6,6,'2019-08-21 15:10:44',159.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8224,6,6,'2019-08-21 15:10:44',159.619000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8225,6,6,'2019-08-21 15:10:44',160.484000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8226,6,6,'2019-08-21 15:10:44',161.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8227,6,6,'2019-08-21 15:10:44',162.332000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8228,6,6,'2019-08-21 15:10:44',162.710000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8229,6,6,'2019-08-21 15:10:44',163.198000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8230,6,6,'2019-08-21 15:10:44',164.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8231,6,6,'2019-08-21 15:10:44',165.079000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8232,6,6,'2019-08-21 15:10:44',166.012000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8233,6,6,'2019-08-21 15:10:44',166.354000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8234,6,6,'2019-08-21 15:10:44',166.961000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8235,6,6,'2019-08-21 15:10:44',167.826000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8236,6,6,'2019-08-21 15:10:44',168.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8237,6,6,'2019-08-21 15:10:44',168.742000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8238,6,6,'2019-08-21 15:10:44',169.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8239,6,6,'2019-08-21 15:10:44',170.341000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8240,6,6,'2019-08-21 15:10:44',170.654000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8241,6,6,'2019-08-21 15:10:44',171.140000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8242,6,6,'2019-08-21 15:10:44',171.988000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8243,6,6,'2019-08-21 15:10:44',172.290000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8244,6,6,'2019-08-21 15:10:44',172.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8245,6,6,'2019-08-21 15:10:44',173.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8246,6,6,'2019-08-21 15:10:44',174.752000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8247,6,6,'2019-08-21 15:10:44',175.106000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8248,6,6,'2019-08-21 15:10:44',175.718000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8249,6,6,'2019-08-21 15:10:44',176.717000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8250,6,6,'2019-08-21 15:10:44',177.024000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8251,6,6,'2019-08-21 15:10:44',177.583000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8252,6,6,'2019-08-21 15:10:44',178.448000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8253,6,6,'2019-08-21 15:10:44',179.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8254,6,6,'2019-08-21 15:10:44',180.146000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8255,6,6,'2019-08-21 15:10:44',180.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8256,6,6,'2019-08-21 15:10:44',181.324000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8257,6,6,'2019-08-21 15:10:44',181.861000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8258,6,6,'2019-08-21 15:10:44',182.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8259,6,6,'2019-08-21 15:10:44',183.626000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8260,6,6,'2019-08-21 15:10:44',184.559000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8261,6,6,'2019-08-21 15:10:44',184.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8262,6,6,'2019-08-21 15:10:44',185.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8263,6,6,'2019-08-21 15:10:44',186.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8264,6,6,'2019-08-21 15:10:44',186.489000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8265,6,6,'2019-08-21 15:10:44',187.472000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8266,6,6,'2019-08-21 15:10:44',188.471000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8267,6,6,'2019-08-21 15:10:44',189.437000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8268,6,6,'2019-08-21 15:10:44',189.794000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8269,6,6,'2019-08-21 15:10:44',190.219000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8270,6,6,'2019-08-21 15:10:44',191.034000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8271,6,6,'2019-08-21 15:10:44',191.358000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8272,6,6,'2019-08-21 15:10:44',191.851000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8273,6,6,'2019-08-21 15:10:44',192.649000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8274,6,6,'2019-08-21 15:10:44',193.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8275,6,6,'2019-08-21 15:10:44',193.632000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8276,6,6,'2019-08-21 15:10:44',194.464000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8277,6,6,'2019-08-21 15:10:44',195.297000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8278,6,6,'2019-08-21 15:10:44',196.195000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8279,6,6,'2019-08-21 15:10:44',196.467000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8280,6,6,'2019-08-21 15:10:44',197.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8281,6,6,'2019-08-21 15:10:44',197.547000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8282,6,6,'2019-08-21 15:10:44',197.960000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8283,6,6,'2019-08-21 15:10:44',198.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8284,6,6,'2019-08-21 15:10:44',199.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8285,6,6,'2019-08-21 15:10:44',200.391000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8286,6,6,'2019-08-21 15:10:44',201.157000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8287,6,6,'2019-08-21 15:10:44',201.514000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8288,6,6,'2019-08-21 15:10:44',202.039000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8289,6,6,'2019-08-21 15:10:44',203.005000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8290,6,6,'2019-08-21 15:10:44',203.301000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8291,6,6,'2019-08-21 15:10:44',203.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8292,6,6,'2019-08-21 15:10:44',204.902000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8293,6,6,'2019-08-21 15:10:44',205.686000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8294,6,6,'2019-08-21 15:10:44',206.551000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8295,6,6,'2019-08-21 15:10:44',206.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8296,6,6,'2019-08-21 15:10:44',207.384000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8297,6,6,'2019-08-21 15:10:44',208.299000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8298,6,6,'2019-08-21 15:10:44',209.132000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8299,6,6,'2019-08-21 15:10:44',209.418000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8300,6,6,'2019-08-21 15:10:44',210.047000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8301,6,6,'2019-08-21 15:10:44',211.013000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8302,6,6,'2019-08-21 15:10:44',211.812000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8303,6,6,'2019-08-21 15:10:44',212.578000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8304,6,6,'2019-08-21 15:10:44',213.377000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8305,6,6,'2019-08-21 15:10:44',213.719000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8306,6,6,'2019-08-21 15:10:44',214.310000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8307,6,6,'2019-08-21 15:10:44',215.274000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8308,6,6,'2019-08-21 15:10:44',216.107000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8309,6,6,'2019-08-21 15:10:44',216.434000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8310,6,6,'2019-08-21 15:10:44',217.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8311,6,6,'2019-08-21 15:10:44',218.038000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8312,6,6,'2019-08-21 15:10:44',218.921000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8313,6,6,'2019-08-21 15:10:44',219.220000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8314,6,6,'2019-08-21 15:10:44',219.736000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8315,6,6,'2019-08-21 15:10:44',220.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8316,6,6,'2019-08-21 15:10:44',221.635000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8317,6,6,'2019-08-21 15:10:44',221.915000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8318,6,6,'2019-08-21 15:10:44',222.566000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8319,6,6,'2019-08-21 15:10:44',223.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8320,6,6,'2019-08-21 15:10:44',223.383000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8321,6,6,'2019-08-21 15:10:44',224.365000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8322,6,6,'2019-08-21 15:10:44',225.280000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8323,6,6,'2019-08-21 15:10:44',226.046000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8324,6,6,'2019-08-21 15:10:44',226.862000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8325,6,6,'2019-08-21 15:10:44',227.245000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8326,6,6,'2019-08-21 15:10:44',227.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8327,6,6,'2019-08-21 15:10:44',228.627000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8328,6,6,'2019-08-21 15:10:44',229.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8329,6,6,'2019-08-21 15:10:44',229.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8330,6,6,'2019-08-21 15:10:44',230.541000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8331,6,6,'2019-08-21 15:10:44',231.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8332,6,6,'2019-08-21 15:10:44',231.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8333,6,6,'2019-08-21 15:10:44',232.156000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8334,6,6,'2019-08-21 15:10:44',233.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8335,6,6,'2019-08-21 15:10:44',234.088000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8336,6,6,'2019-08-21 15:10:44',234.402000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8337,6,6,'2019-08-21 15:10:44',235.020000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8338,6,6,'2019-08-21 15:10:44',235.803000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8339,6,6,'2019-08-21 15:10:44',236.635000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8340,6,6,'2019-08-21 15:10:44',236.986000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8341,6,6,'2019-08-21 15:10:44',237.400000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8342,6,6,'2019-08-21 15:10:44',238.350000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8343,6,6,'2019-08-21 15:10:44',239.282000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8344,6,6,'2019-08-21 15:10:44',239.631000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8345,6,6,'2019-08-21 15:10:44',240.181000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8346,6,6,'2019-08-21 15:10:44',241.130000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8347,6,6,'2019-08-21 15:10:44',241.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8348,6,6,'2019-08-21 15:10:44',241.995000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8349,6,6,'2019-08-21 15:10:44',242.895000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8350,6,6,'2019-08-21 15:10:44',243.877000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8351,6,6,'2019-08-21 15:10:44',244.709000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8352,6,6,'2019-08-21 15:10:44',245.072000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8353,6,6,'2019-08-21 15:10:44',245.708000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8354,6,6,'2019-08-21 15:10:44',246.591000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8355,6,6,'2019-08-21 15:10:44',246.970000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8356,6,6,'2019-08-21 15:10:44',247.423000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8357,6,6,'2019-08-21 15:10:44',248.222000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8358,6,6,'2019-08-21 15:10:44',249.038000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8359,6,6,'2019-08-21 15:10:44',249.987000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8360,6,6,'2019-08-21 15:10:44',250.902000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8361,6,6,'2019-08-21 15:10:44',251.260000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8362,6,6,'2019-08-21 15:10:44',251.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8363,6,6,'2019-08-21 15:10:44',252.270000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8364,6,6,'2019-08-21 15:10:44',252.733000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8365,6,6,'2019-08-21 15:10:44',253.666000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8366,6,6,'2019-08-21 15:10:44',253.955000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8367,6,6,'2019-08-21 15:10:44',254.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8368,6,6,'2019-08-21 15:10:44',255.548000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8369,6,6,'2019-08-21 15:10:44',255.863000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8370,6,6,'2019-08-21 15:10:44',256.330000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8371,6,6,'2019-08-21 15:10:44',257.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8372,6,6,'2019-08-21 15:10:44',258.161000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8373,6,6,'2019-08-21 15:10:44',258.488000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8374,6,6,'2019-08-21 15:10:44',259.044000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8375,6,6,'2019-08-21 15:10:44',259.876000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8376,6,6,'2019-08-21 15:10:44',260.775000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8377,6,6,'2019-08-21 15:10:44',261.112000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8378,6,6,'2019-08-21 15:10:44',261.707000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8379,6,6,'2019-08-21 15:10:44',262.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8380,6,6,'2019-08-21 15:10:44',262.849000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8381,6,6,'2019-08-21 15:10:44',263.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8382,6,6,'2019-08-21 15:10:44',264.404000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8383,6,6,'2019-08-21 15:10:44',265.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8384,6,6,'2019-08-21 15:10:44',265.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8385,6,6,'2019-08-21 15:10:44',266.918000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8386,6,6,'2019-08-21 15:10:44',267.768000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8387,6,6,'2019-08-21 15:10:44',268.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8388,6,6,'2019-08-21 15:10:44',268.767000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8389,6,6,'2019-08-21 15:10:44',269.178000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8390,6,6,'2019-08-21 15:10:44',269.682000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8391,6,6,'2019-08-21 15:10:44',270.481000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8392,6,6,'2019-08-21 15:10:44',270.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8393,6,6,'2019-08-21 15:10:44',271.347000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8394,6,6,'2019-08-21 15:10:44',272.213000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8395,6,6,'2019-08-21 15:10:44',272.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8396,6,6,'2019-08-21 15:10:44',273.878000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8397,6,6,'2019-08-21 15:10:44',274.810000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8398,6,6,'2019-08-21 15:10:44',275.113000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8399,6,6,'2019-08-21 15:10:44',275.742000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8400,6,6,'2019-08-21 15:10:44',276.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8401,6,6,'2019-08-21 15:10:44',277.490000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8402,6,6,'2019-08-21 15:10:44',277.850000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8403,6,6,'2019-08-21 15:10:44',278.456000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8404,6,6,'2019-08-21 15:10:44',279.321000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8405,6,6,'2019-08-21 15:10:44',279.636000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8406,6,6,'2019-08-21 15:10:44',280.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8407,6,6,'2019-08-21 15:10:44',281.069000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8408,6,6,'2019-08-21 15:10:44',281.869000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8409,6,6,'2019-08-21 15:10:44',282.734000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8410,6,6,'2019-08-21 15:10:44',283.048000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8411,6,6,'2019-08-21 15:10:44',283.617000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8412,6,6,'2019-08-21 15:10:44',284.499000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8413,6,6,'2019-08-21 15:10:44',284.805000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8414,6,6,'2019-08-21 15:10:44',285.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8415,6,6,'2019-08-21 15:10:44',298.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8416,6,6,'2019-08-21 15:10:44',316.221000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8417,6,6,'2019-08-21 15:10:44',317.202000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8418,6,6,'2019-08-21 15:10:44',318.151000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8419,6,6,'2019-08-21 15:10:44',318.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8420,6,6,'2019-08-21 15:10:44',319.134000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8421,6,6,'2019-08-21 15:10:44',319.999000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8422,6,6,'2019-08-21 15:10:44',320.408000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8423,6,6,'2019-08-21 15:10:44',320.998000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8424,6,6,'2019-08-21 15:10:44',321.798000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8425,6,6,'2019-08-21 15:10:44',322.613000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8426,6,6,'2019-08-21 15:10:44',323.396000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8427,6,6,'2019-08-21 15:10:44',323.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8428,6,6,'2019-08-21 15:10:44',324.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8429,6,6,'2019-08-21 15:10:44',324.647000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8430,6,6,'2019-08-21 15:10:44',325.011000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8431,6,6,'2019-08-21 15:10:44',326.010000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8432,6,6,'2019-08-21 15:10:44',326.925000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8433,6,6,'2019-08-21 15:10:44',327.242000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8434,6,6,'2019-08-21 15:10:44',327.708000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8435,6,6,'2019-08-21 15:10:44',328.160000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8436,6,6,'2019-08-21 15:10:44',328.507000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8437,6,6,'2019-08-21 15:10:44',329.272000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8438,6,6,'2019-08-21 15:10:44',330.255000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8439,6,6,'2019-08-21 15:10:44',331.154000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8440,6,6,'2019-08-21 15:10:44',332.103000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8441,6,6,'2019-08-21 15:10:44',332.985000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8442,6,6,'2019-08-21 15:10:44',333.319000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8443,6,6,'2019-08-21 15:10:44',333.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8444,6,6,'2019-08-21 15:10:44',334.278000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8445,6,6,'2019-08-21 15:10:44',334.950000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8446,6,6,'2019-08-21 15:10:44',335.782000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8447,6,6,'2019-08-21 15:10:44',336.665000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8448,6,6,'2019-08-21 15:10:44',337.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8449,6,6,'2019-08-21 15:10:44',338.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8450,6,6,'2019-08-21 15:10:44',339.411000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8451,6,6,'2019-08-21 15:10:44',340.211000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8452,6,6,'2019-08-21 15:10:44',340.557000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8453,6,6,'2019-08-21 15:10:44',341.076000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8454,6,6,'2019-08-21 15:10:44',341.976000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8455,6,6,'2019-08-21 15:10:44',342.253000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8456,6,6,'2019-08-21 15:10:44',342.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8457,6,6,'2019-08-21 15:10:44',343.292000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8458,6,6,'2019-08-21 15:10:44',343.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8459,6,6,'2019-08-21 15:10:44',344.439000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8460,6,6,'2019-08-21 15:10:44',345.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8461,6,6,'2019-08-21 15:10:44',346.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8462,6,6,'2019-08-21 15:10:44',347.054000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8463,6,6,'2019-08-21 15:10:44',347.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8464,6,6,'2019-08-21 15:10:44',348.019000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8465,6,6,'2019-08-21 15:10:44',349.018000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8466,6,6,'2019-08-21 15:10:44',349.339000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8467,6,6,'2019-08-21 15:10:44',350.000000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8468,6,6,'2019-08-21 15:10:44',350.966000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8469,6,6,'2019-08-21 15:10:44',351.748000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8470,6,6,'2019-08-21 15:10:44',352.146000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8471,6,6,'2019-08-21 15:10:44',352.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8472,6,6,'2019-08-21 15:10:44',353.513000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8473,6,6,'2019-08-21 15:10:44',353.912000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8474,6,6,'2019-08-21 15:10:44',354.495000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8475,6,6,'2019-08-21 15:10:44',355.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8476,6,6,'2019-08-21 15:10:44',355.578000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8477,6,6,'2019-08-21 15:10:44',356.077000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8478,6,6,'2019-08-21 15:10:44',357.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8479,6,6,'2019-08-21 15:10:44',357.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8480,6,6,'2019-08-21 15:10:44',358.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8481,6,6,'2019-08-21 15:10:44',359.523000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8482,6,6,'2019-08-21 15:10:44',360.322000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8483,6,6,'2019-08-21 15:10:44',361.138000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8484,6,6,'2019-08-21 15:10:44',361.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8485,6,6,'2019-08-21 15:10:44',361.954000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8486,6,6,'2019-08-21 15:10:44',362.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8487,6,6,'2019-08-21 15:10:44',362.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8488,6,6,'2019-08-21 15:10:44',363.686000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8489,6,6,'2019-08-21 15:10:44',364.107000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8490,6,6,'2019-08-21 15:10:44',364.634000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8491,6,6,'2019-08-21 15:10:44',365.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8492,6,6,'2019-08-21 15:10:44',366.565000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8493,6,6,'2019-08-21 15:10:44',367.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8494,6,6,'2019-08-21 15:10:44',367.884000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8495,6,6,'2019-08-21 15:10:44',368.396000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8496,6,6,'2019-08-21 15:10:44',369.179000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8497,6,6,'2019-08-21 15:10:44',369.945000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8498,6,6,'2019-08-21 15:10:44',370.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8499,6,6,'2019-08-21 15:10:44',371.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8500,6,6,'2019-08-21 15:10:44',371.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8501,6,6,'2019-08-21 15:10:44',372.858000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8502,6,6,'2019-08-21 15:10:44',373.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8503,6,6,'2019-08-21 15:10:44',373.791000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8504,6,6,'2019-08-21 15:10:44',374.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8505,6,6,'2019-08-21 15:10:44',375.672000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8506,6,6,'2019-08-21 15:10:44',375.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8507,6,6,'2019-08-21 15:10:44',376.571000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8508,6,6,'2019-08-21 15:10:44',377.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8509,6,6,'2019-08-21 15:10:44',378.436000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8510,6,6,'2019-08-21 15:10:44',379.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8511,6,6,'2019-08-21 15:10:44',379.765000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8512,6,6,'2019-08-21 15:10:44',380.200000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8513,6,6,'2019-08-21 15:10:44',380.966000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8514,6,6,'2019-08-21 15:10:44',381.882000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8515,6,6,'2019-08-21 15:10:44',382.681000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8516,6,6,'2019-08-21 15:10:44',383.580000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8517,6,6,'2019-08-21 15:10:44',384.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8518,6,6,'2019-08-21 15:10:44',384.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8519,6,6,'2019-08-21 15:10:44',384.883000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8520,6,6,'2019-08-21 15:10:44',385.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8521,6,6,'2019-08-21 15:10:44',385.690000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8522,6,6,'2019-08-21 15:10:44',386.077000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8523,6,6,'2019-08-21 15:10:44',387.060000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8524,6,6,'2019-08-21 15:10:44',388.025000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8525,6,6,'2019-08-21 15:10:44',388.874000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8526,6,6,'2019-08-21 15:10:44',389.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8527,6,6,'2019-08-21 15:10:44',389.823000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8528,6,6,'2019-08-21 15:10:44',390.723000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8529,6,6,'2019-08-21 15:10:44',391.604000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8530,6,6,'2019-08-21 15:10:44',392.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8531,6,6,'2019-08-21 15:10:44',393.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8532,6,6,'2019-08-21 15:10:44',394.368000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8533,6,6,'2019-08-21 15:10:44',394.715000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8534,6,6,'2019-08-21 15:10:44',395.301000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8535,6,6,'2019-08-21 15:10:44',395.664000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8536,6,6,'2019-08-21 15:10:44',396.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8537,6,6,'2019-08-21 15:10:44',397.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8538,6,6,'2019-08-21 15:10:44',397.521000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8539,6,6,'2019-08-21 15:10:44',397.947000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8540,6,6,'2019-08-21 15:10:44',398.747000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8541,6,6,'2019-08-21 15:10:44',399.729000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8542,6,6,'2019-08-21 15:10:44',400.678000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8543,6,6,'2019-08-21 15:10:44',401.064000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8544,6,6,'2019-08-21 15:10:44',401.561000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8545,6,6,'2019-08-21 15:10:44',402.359000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8546,6,6,'2019-08-21 15:10:44',403.192000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8547,6,6,'2019-08-21 15:10:44',403.669000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8548,6,6,'2019-08-21 15:10:44',404.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8549,6,6,'2019-08-21 15:10:44',404.924000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8550,6,6,'2019-08-21 15:10:44',405.314000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8551,6,6,'2019-08-21 15:10:44',405.905000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8552,6,6,'2019-08-21 15:10:44',406.854000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8553,6,6,'2019-08-21 15:10:44',407.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8554,6,6,'2019-08-21 15:10:44',408.553000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8555,6,6,'2019-08-21 15:10:44',408.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8556,6,6,'2019-08-21 15:10:44',409.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8557,6,6,'2019-08-21 15:10:44',410.551000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8558,6,6,'2019-08-21 15:10:44',410.856000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8559,6,6,'2019-08-21 15:10:44',411.483000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8560,6,6,'2019-08-21 15:10:44',412.365000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8561,6,6,'2019-08-21 15:10:44',412.734000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8562,6,6,'2019-08-21 15:10:44',413.281000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8563,6,6,'2019-08-21 15:10:44',413.733000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8564,6,6,'2019-08-21 15:10:44',414.130000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8565,6,6,'2019-08-21 15:10:44',415.013000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8566,6,6,'2019-08-21 15:10:44',415.961000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8567,6,6,'2019-08-21 15:10:44',416.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8568,6,6,'2019-08-21 15:10:44',417.727000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8569,6,6,'2019-08-21 15:10:44',418.575000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8570,6,6,'2019-08-21 15:10:44',418.892000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8571,6,6,'2019-08-21 15:10:44',419.441000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8572,6,6,'2019-08-21 15:10:44',420.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8573,6,6,'2019-08-21 15:10:44',421.022000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8574,6,6,'2019-08-21 15:10:44',421.805000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8575,6,6,'2019-08-21 15:10:44',422.122000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8576,6,6,'2019-08-21 15:10:44',422.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8577,6,6,'2019-08-21 15:10:44',423.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8578,6,6,'2019-08-21 15:10:44',424.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8579,6,6,'2019-08-21 15:10:44',425.135000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8580,6,6,'2019-08-21 15:10:44',425.483000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8581,6,6,'2019-08-21 15:10:44',425.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8582,6,6,'2019-08-21 15:10:44',426.767000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8583,6,6,'2019-08-21 15:10:44',427.058000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8584,6,6,'2019-08-21 15:10:44',427.731000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8585,6,6,'2019-08-21 15:10:44',428.681000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8586,6,6,'2019-08-21 15:10:44',429.087000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8587,6,6,'2019-08-21 15:10:44',429.680000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8588,6,6,'2019-08-21 15:10:44',430.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8589,6,6,'2019-08-21 15:10:44',431.345000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8590,6,6,'2019-08-21 15:10:44',431.742000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8591,6,6,'2019-08-21 15:10:44',432.127000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8592,6,6,'2019-08-21 15:10:44',433.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8593,6,6,'2019-08-21 15:10:44',434.092000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8594,6,6,'2019-08-21 15:10:44',435.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8595,6,6,'2019-08-21 15:10:44',435.446000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8596,6,6,'2019-08-21 15:10:44',435.989000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8597,6,6,'2019-08-21 15:10:44',436.789000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8598,6,6,'2019-08-21 15:10:44',437.787000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8599,6,6,'2019-08-21 15:10:44',438.061000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8600,6,6,'2019-08-21 15:10:44',438.620000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8601,6,6,'2019-08-21 15:10:44',439.469000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8602,6,6,'2019-08-21 15:10:44',440.385000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8603,6,6,'2019-08-21 15:10:44',440.746000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8604,6,6,'2019-08-21 15:10:44',441.384000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8605,6,6,'2019-08-21 15:10:44',442.350000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8606,6,6,'2019-08-21 15:10:44',442.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8607,6,6,'2019-08-21 15:10:44',443.148000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8608,6,6,'2019-08-21 15:10:44',443.931000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8609,6,6,'2019-08-21 15:10:44',444.797000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8610,6,6,'2019-08-21 15:10:44',445.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8611,6,6,'2019-08-21 15:10:44',446.645000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8612,6,6,'2019-08-21 15:10:44',446.894000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8613,6,6,'2019-08-21 15:10:44',447.493000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8614,6,6,'2019-08-21 15:10:44',447.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8615,6,6,'2019-08-21 15:10:44',448.310000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8616,6,6,'2019-08-21 15:10:44',449.108000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8617,6,6,'2019-08-21 15:10:44',449.925000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8618,6,6,'2019-08-21 15:10:44',450.690000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8619,6,6,'2019-08-21 15:10:44',451.103000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8620,6,6,'2019-08-21 15:10:44',451.656000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8621,6,6,'2019-08-21 15:10:44',452.472000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8622,6,6,'2019-08-21 15:10:44',452.829000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8623,6,6,'2019-08-21 15:10:44',453.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8624,6,6,'2019-08-21 15:10:44',454.369000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8625,6,6,'2019-08-21 15:10:44',454.777000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8626,6,6,'2019-08-21 15:10:44',455.186000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8627,6,6,'2019-08-21 15:10:44',455.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8628,6,6,'2019-08-21 15:10:44',455.968000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8629,6,6,'2019-08-21 15:10:44',456.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8630,6,6,'2019-08-21 15:10:44',457.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8631,6,6,'2019-08-21 15:10:44',458.498000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8632,6,6,'2019-08-21 15:10:44',459.431000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8633,6,6,'2019-08-21 15:10:44',460.330000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8634,6,6,'2019-08-21 15:10:44',460.672000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8635,6,6,'2019-08-21 15:10:44',461.328000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8636,6,6,'2019-08-21 15:10:44',462.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8637,6,6,'2019-08-21 15:10:44',462.520000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8638,6,6,'2019-08-21 15:10:44',462.993000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8639,6,6,'2019-08-21 15:10:44',463.942000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8640,6,6,'2019-08-21 15:10:44',464.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8641,6,6,'2019-08-21 15:10:44',465.823000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8642,6,6,'2019-08-21 15:10:44',466.606000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8643,6,6,'2019-08-21 15:10:44',467.472000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8644,6,6,'2019-08-21 15:10:44',467.839000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8645,6,6,'2019-08-21 15:10:44',468.271000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8646,6,6,'2019-08-21 15:10:44',469.170000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8647,6,6,'2019-08-21 15:10:44',469.475000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8648,6,6,'2019-08-21 15:10:44',470.086000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8649,6,6,'2019-08-21 15:10:44',470.575000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8650,6,6,'2019-08-21 15:10:44',470.852000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8651,6,6,'2019-08-21 15:10:44',471.801000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8652,6,6,'2019-08-21 15:10:44',472.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8653,6,6,'2019-08-21 15:10:44',473.499000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8654,6,6,'2019-08-21 15:10:44',473.765000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8655,6,6,'2019-08-21 15:10:44',474.314000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8656,6,6,'2019-08-21 15:10:44',475.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8657,6,6,'2019-08-21 15:10:44',476.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8658,6,6,'2019-08-21 15:10:44',476.511000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8659,6,6,'2019-08-21 15:10:44',476.928000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8660,6,6,'2019-08-21 15:10:44',477.439000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8661,6,6,'2019-08-21 15:10:44',477.860000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8662,6,6,'2019-08-21 15:10:44',478.743000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8663,6,6,'2019-08-21 15:10:44',479.575000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8664,6,6,'2019-08-21 15:10:44',480.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8665,6,6,'2019-08-21 15:10:44',481.273000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8666,6,6,'2019-08-21 15:10:44',481.598000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8667,6,6,'2019-08-21 15:10:44',482.223000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8668,6,6,'2019-08-21 15:10:44',483.088000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8669,6,6,'2019-08-21 15:10:44',483.344000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8670,6,6,'2019-08-21 15:10:44',484.021000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8671,6,6,'2019-08-21 15:10:44',484.920000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8672,6,6,'2019-08-21 15:10:44',485.802000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8673,6,6,'2019-08-21 15:10:44',486.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8674,6,6,'2019-08-21 15:10:44',486.968000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8675,6,6,'2019-08-21 15:10:44',487.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8676,6,6,'2019-08-21 15:10:44',488.565000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8677,6,6,'2019-08-21 15:10:44',489.548000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8678,6,6,'2019-08-21 15:10:44',489.845000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8679,6,6,'2019-08-21 15:10:44',490.446000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8680,6,6,'2019-08-21 15:10:44',491.279000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8681,6,6,'2019-08-21 15:10:44',491.683000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8682,6,6,'2019-08-21 15:10:44',492.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8683,6,6,'2019-08-21 15:10:44',492.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8684,6,6,'2019-08-21 15:10:44',492.994000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8685,6,6,'2019-08-21 15:10:44',493.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8686,6,6,'2019-08-21 15:10:44',494.792000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8687,6,6,'2019-08-21 15:10:44',495.675000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8688,6,6,'2019-08-21 15:10:44',496.640000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8689,6,6,'2019-08-21 15:10:44',497.423000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8690,6,6,'2019-08-21 15:10:44',498.305000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8691,6,6,'2019-08-21 15:10:44',498.728000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8692,6,6,'2019-08-21 15:10:44',499.154000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8693,6,6,'2019-08-21 15:10:44',499.556000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8694,6,6,'2019-08-21 15:10:44',499.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8695,6,6,'2019-08-21 15:10:44',500.886000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8696,6,6,'2019-08-21 15:10:44',501.685000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8697,6,6,'2019-08-21 15:10:44',502.517000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8698,6,6,'2019-08-21 15:10:44',502.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8699,6,6,'2019-08-21 15:10:44',503.449000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8700,6,6,'2019-08-21 15:10:44',503.876000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8701,6,6,'2019-08-21 15:10:44',504.298000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8702,6,6,'2019-08-21 15:10:44',505.081000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8703,6,6,'2019-08-21 15:10:44',506.013000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8704,6,6,'2019-08-21 15:10:44',506.896000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8705,6,6,'2019-08-21 15:10:44',507.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8706,6,6,'2019-08-21 15:10:44',508.644000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8707,6,6,'2019-08-21 15:10:44',509.609000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8708,6,6,'2019-08-21 15:10:44',510.392000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8709,6,6,'2019-08-21 15:10:44',510.780000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8710,6,6,'2019-08-21 15:10:44',511.190000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8711,6,6,'2019-08-21 15:10:44',511.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8712,6,6,'2019-08-21 15:10:44',512.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8713,6,6,'2019-08-21 15:10:44',513.072000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8714,6,6,'2019-08-21 15:10:44',513.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8715,6,6,'2019-08-21 15:10:44',514.754000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8716,6,6,'2019-08-21 15:10:44',515.669000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8717,6,6,'2019-08-21 15:10:44',516.060000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8718,6,6,'2019-08-21 15:10:44',516.452000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8719,6,6,'2019-08-21 15:10:44',517.060000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8720,6,6,'2019-08-21 15:10:44',517.434000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8721,6,6,'2019-08-21 15:10:44',517.897000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8722,6,6,'2019-08-21 15:10:44',518.316000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8723,6,6,'2019-08-21 15:10:44',519.148000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8724,6,6,'2019-08-21 15:10:44',519.981000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8725,6,6,'2019-08-21 15:10:44',520.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8726,6,6,'2019-08-21 15:10:44',521.513000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8727,6,6,'2019-08-21 15:10:44',521.945000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8728,6,6,'2019-08-21 15:10:44',522.495000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8729,6,6,'2019-08-21 15:10:44',523.327000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8730,6,6,'2019-08-21 15:10:44',523.712000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8731,6,6,'2019-08-21 15:10:44',524.110000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8732,6,6,'2019-08-21 15:10:44',524.650000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8733,6,6,'2019-08-21 15:10:44',525.025000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8734,6,6,'2019-08-21 15:10:44',525.941000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8735,6,6,'2019-08-21 15:10:44',526.757000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8736,6,6,'2019-08-21 15:10:44',527.557000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8737,6,6,'2019-08-21 15:10:44',528.538000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8738,6,6,'2019-08-21 15:10:44',528.870000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8739,6,6,'2019-08-21 15:10:44',529.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8740,6,6,'2019-08-21 15:10:44',529.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8741,6,6,'2019-08-21 15:10:44',530.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8742,6,6,'2019-08-21 15:10:44',531.252000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8743,6,6,'2019-08-21 15:10:44',532.252000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8744,6,6,'2019-08-21 15:10:44',533.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8745,6,6,'2019-08-21 15:10:44',534.032000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8746,6,6,'2019-08-21 15:10:44',534.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8747,6,6,'2019-08-21 15:10:44',535.209000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8748,6,6,'2019-08-21 15:10:44',535.647000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8749,6,6,'2019-08-21 15:10:44',536.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8750,6,6,'2019-08-21 15:10:44',537.479000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8751,6,6,'2019-08-21 15:10:44',537.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8752,6,6,'2019-08-21 15:10:44',538.428000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8753,6,6,'2019-08-21 15:10:44',539.293000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8754,6,6,'2019-08-21 15:10:44',540.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8755,6,6,'2019-08-21 15:10:44',540.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8756,6,6,'2019-08-21 15:10:44',540.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8757,6,6,'2019-08-21 15:10:44',541.674000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8758,6,6,'2019-08-21 15:10:44',542.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8759,6,6,'2019-08-21 15:10:44',542.640000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8760,6,6,'2019-08-21 15:10:44',543.589000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8761,6,6,'2019-08-21 15:10:44',544.571000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8762,6,6,'2019-08-21 15:10:44',545.370000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8763,6,6,'2019-08-21 15:10:44',546.303000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8764,6,6,'2019-08-21 15:10:44',547.218000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8765,6,6,'2019-08-21 15:10:44',547.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8766,6,6,'2019-08-21 15:10:44',548.051000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8767,6,6,'2019-08-21 15:10:44',548.463000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8768,6,6,'2019-08-21 15:10:44',548.999000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8769,6,6,'2019-08-21 15:10:44',549.998000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8770,6,6,'2019-08-21 15:10:44',550.897000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8771,6,6,'2019-08-21 15:10:44',551.249000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8772,6,6,'2019-08-21 15:10:44',551.780000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8773,6,6,'2019-08-21 15:10:44',552.579000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8774,6,6,'2019-08-21 15:10:44',553.478000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8775,6,6,'2019-08-21 15:10:44',553.712000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8776,6,6,'2019-08-21 15:10:44',554.377000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8777,6,6,'2019-08-21 15:10:44',555.260000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8778,6,6,'2019-08-21 15:10:44',555.519000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8779,6,6,'2019-08-21 15:10:44',556.092000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8780,6,6,'2019-08-21 15:10:44',557.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8781,6,6,'2019-08-21 15:10:44',557.265000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8782,6,6,'2019-08-21 15:10:44',557.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8783,6,6,'2019-08-21 15:10:44',558.955000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8784,6,6,'2019-08-21 15:10:44',559.888000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8785,6,6,'2019-08-21 15:10:44',560.753000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8786,6,6,'2019-08-21 15:10:44',561.686000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8787,6,6,'2019-08-21 15:10:44',562.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8788,6,6,'2019-08-21 15:10:44',562.918000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8789,6,6,'2019-08-21 15:10:44',563.567000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8790,6,6,'2019-08-21 15:10:44',563.917000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8791,6,6,'2019-08-21 15:10:44',564.482000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8792,6,6,'2019-08-21 15:10:44',565.365000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8793,6,6,'2019-08-21 15:10:44',566.131000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8794,6,6,'2019-08-21 15:10:44',566.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8795,6,6,'2019-08-21 15:10:44',566.896000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8796,6,6,'2019-08-21 15:10:44',567.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8797,6,6,'2019-08-21 15:10:44',568.157000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8798,6,6,'2019-08-21 15:10:44',568.828000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8799,6,6,'2019-08-21 15:10:44',569.660000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8800,6,6,'2019-08-21 15:10:44',570.476000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8801,6,6,'2019-08-21 15:10:44',571.325000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8802,6,6,'2019-08-21 15:10:44',572.107000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8803,6,6,'2019-08-21 15:10:44',573.023000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8804,6,6,'2019-08-21 15:10:44',573.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8805,6,6,'2019-08-21 15:10:44',573.806000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8806,6,6,'2019-08-21 15:10:44',574.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8807,6,6,'2019-08-21 15:10:44',574.771000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8808,6,6,'2019-08-21 15:10:44',575.637000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8809,6,6,'2019-08-21 15:10:44',576.142000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8810,6,6,'2019-08-21 15:10:44',576.470000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8811,6,6,'2019-08-21 15:10:44',577.385000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8812,6,6,'2019-08-21 15:10:44',578.185000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8813,6,6,'2019-08-21 15:10:44',578.514000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8814,6,6,'2019-08-21 15:10:44',579.150000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8815,6,6,'2019-08-21 15:10:44',580.065000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8816,6,6,'2019-08-21 15:10:44',597.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8817,6,6,'2019-08-21 15:10:44',617.542000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8818,6,6,'2019-08-21 15:10:44',618.100000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8819,6,6,'2019-08-21 15:10:44',618.507000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8820,6,6,'2019-08-21 15:10:44',619.373000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8821,6,6,'2019-08-21 15:10:44',620.322000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8822,6,6,'2019-08-21 15:10:44',620.633000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8823,6,6,'2019-08-21 15:10:44',621.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8824,6,6,'2019-08-21 15:10:44',622.087000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8825,6,6,'2019-08-21 15:10:44',623.069000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8826,6,6,'2019-08-21 15:10:44',624.068000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8827,6,6,'2019-08-21 15:10:44',624.834000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8828,6,6,'2019-08-21 15:10:44',625.227000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8829,6,6,'2019-08-21 15:10:44',625.633000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8830,6,6,'2019-08-21 15:10:44',626.582000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8831,6,6,'2019-08-21 15:10:44',627.480000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8832,6,6,'2019-08-21 15:10:44',627.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8833,6,6,'2019-08-21 15:10:44',628.413000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8834,6,6,'2019-08-21 15:10:44',629.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8835,6,6,'2019-08-21 15:10:44',629.995000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8836,6,6,'2019-08-21 15:10:44',630.860000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8837,6,6,'2019-08-21 15:10:44',631.263000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8838,6,6,'2019-08-21 15:10:44',631.710000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8839,6,6,'2019-08-21 15:10:44',632.476000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8840,6,6,'2019-08-21 15:10:44',632.979000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8841,6,6,'2019-08-21 15:10:44',633.391000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8842,6,6,'2019-08-21 15:10:44',634.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8843,6,6,'2019-08-21 15:10:44',634.786000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8844,6,6,'2019-08-21 15:10:44',635.389000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8845,6,6,'2019-08-21 15:10:44',635.836000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8846,6,6,'2019-08-21 15:10:44',636.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8847,6,6,'2019-08-21 15:10:44',637.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8848,6,6,'2019-08-21 15:10:44',638.053000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8849,6,6,'2019-08-21 15:10:44',639.002000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8850,6,6,'2019-08-21 15:10:44',639.369000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8851,6,6,'2019-08-21 15:10:44',639.867000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8852,6,6,'2019-08-21 15:10:44',640.717000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8853,6,6,'2019-08-21 15:10:44',641.516000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8854,6,6,'2019-08-21 15:10:44',642.432000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8855,6,6,'2019-08-21 15:10:44',642.730000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8856,6,6,'2019-08-21 15:10:44',643.347000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8857,6,6,'2019-08-21 15:10:44',644.296000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8858,6,6,'2019-08-21 15:10:44',644.618000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8859,6,6,'2019-08-21 15:10:44',645.161000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8860,6,6,'2019-08-21 15:10:44',646.044000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8861,6,6,'2019-08-21 15:10:44',646.876000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8862,6,6,'2019-08-21 15:10:44',647.775000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8863,6,6,'2019-08-21 15:10:44',648.558000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8864,6,6,'2019-08-21 15:10:44',648.949000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8865,6,6,'2019-08-21 15:10:44',649.374000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8866,6,6,'2019-08-21 15:10:44',650.223000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8867,6,6,'2019-08-21 15:10:44',651.139000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8868,6,6,'2019-08-21 15:10:44',651.921000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8869,6,6,'2019-08-21 15:10:44',652.301000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8870,6,6,'2019-08-21 15:10:44',652.786000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8871,6,6,'2019-08-21 15:10:44',653.351000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8872,6,6,'2019-08-21 15:10:44',653.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8873,6,6,'2019-08-21 15:10:44',654.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8874,6,6,'2019-08-21 15:10:44',654.814000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8875,6,6,'2019-08-21 15:10:44',655.217000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8876,6,6,'2019-08-21 15:10:44',656.017000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8877,6,6,'2019-08-21 15:10:44',656.389000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8878,6,6,'2019-08-21 15:10:44',657.032000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8879,6,6,'2019-08-21 15:10:44',658.048000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8880,6,6,'2019-08-21 15:10:44',658.880000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8881,6,6,'2019-08-21 15:10:44',659.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8882,6,6,'2019-08-21 15:10:44',660.205000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8883,6,6,'2019-08-21 15:10:44',660.645000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8884,6,6,'2019-08-21 15:10:44',660.981000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8885,6,6,'2019-08-21 15:10:44',661.410000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8886,6,6,'2019-08-21 15:10:44',662.276000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8887,6,6,'2019-08-21 15:10:44',663.158000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8888,6,6,'2019-08-21 15:10:44',663.991000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8889,6,6,'2019-08-21 15:10:44',664.957000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8890,6,6,'2019-08-21 15:10:44',665.272000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8891,6,6,'2019-08-21 15:10:44',665.855000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8892,6,6,'2019-08-21 15:10:44',666.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8893,6,6,'2019-08-21 15:10:44',667.737000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8894,6,6,'2019-08-21 15:10:44',668.099000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8895,6,6,'2019-08-21 15:10:44',668.520000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8896,6,6,'2019-08-21 15:10:44',669.302000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8897,6,6,'2019-08-21 15:10:44',670.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8898,6,6,'2019-08-21 15:10:44',671.066000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8899,6,6,'2019-08-21 15:10:44',671.865000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8900,6,6,'2019-08-21 15:10:44',672.237000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8901,6,6,'2019-08-21 15:10:44',672.715000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8902,6,6,'2019-08-21 15:10:44',673.681000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8903,6,6,'2019-08-21 15:10:44',674.463000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8904,6,6,'2019-08-21 15:10:44',674.792000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8905,6,6,'2019-08-21 15:10:44',675.429000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8906,6,6,'2019-08-21 15:10:44',676.228000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8907,6,6,'2019-08-21 15:10:44',677.160000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8908,6,6,'2019-08-21 15:10:44',677.976000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8909,6,6,'2019-08-21 15:10:44',678.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8910,6,6,'2019-08-21 15:10:44',678.958000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8911,6,6,'2019-08-21 15:10:44',679.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8912,6,6,'2019-08-21 15:10:44',679.840000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8913,6,6,'2019-08-21 15:10:44',680.806000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8914,6,6,'2019-08-21 15:10:44',681.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8915,6,6,'2019-08-21 15:10:44',681.788000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8916,6,6,'2019-08-21 15:10:44',682.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8917,6,6,'2019-08-21 15:10:44',683.636000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8918,6,6,'2019-08-21 15:10:44',683.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8919,6,6,'2019-08-21 15:10:44',684.419000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8920,6,6,'2019-08-21 15:10:44',685.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8921,6,6,'2019-08-21 15:10:44',686.250000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8922,6,6,'2019-08-21 15:10:44',686.612000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8923,6,6,'2019-08-21 15:10:44',687.149000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8924,6,6,'2019-08-21 15:10:44',688.064000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8925,6,6,'2019-08-21 15:10:44',688.359000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8926,6,6,'2019-08-21 15:10:44',688.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8927,6,6,'2019-08-21 15:10:44',689.663000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8928,6,6,'2019-08-21 15:10:44',690.495000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8929,6,6,'2019-08-21 15:10:44',691.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8930,6,6,'2019-08-21 15:10:44',692.477000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8931,6,6,'2019-08-21 15:10:44',692.871000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8932,6,6,'2019-08-21 15:10:44',693.426000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8933,6,6,'2019-08-21 15:10:44',693.891000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8934,6,6,'2019-08-21 15:10:44',694.241000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8935,6,6,'2019-08-21 15:10:44',695.224000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8936,6,6,'2019-08-21 15:10:44',696.122000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8937,6,6,'2019-08-21 15:10:44',697.005000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8938,6,6,'2019-08-21 15:10:44',697.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8939,6,6,'2019-08-21 15:10:44',697.971000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8940,6,6,'2019-08-21 15:10:44',698.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8941,6,6,'2019-08-21 15:10:44',699.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8942,6,6,'2019-08-21 15:10:44',700.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8943,6,6,'2019-08-21 15:10:44',700.685000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8944,6,6,'2019-08-21 15:10:44',701.450000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8945,6,6,'2019-08-21 15:10:44',702.232000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8946,6,6,'2019-08-21 15:10:44',703.182000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8947,6,6,'2019-08-21 15:10:44',703.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8948,6,6,'2019-08-21 15:10:44',703.947000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8949,6,6,'2019-08-21 15:10:44',704.480000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8950,6,6,'2019-08-21 15:10:44',704.729000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8951,6,6,'2019-08-21 15:10:44',705.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8952,6,6,'2019-08-21 15:10:44',706.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8953,6,6,'2019-08-21 15:10:44',707.443000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8954,6,6,'2019-08-21 15:10:44',707.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8955,6,6,'2019-08-21 15:10:44',708.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8956,6,6,'2019-08-21 15:10:44',709.358000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8957,6,6,'2019-08-21 15:10:44',710.141000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8958,6,6,'2019-08-21 15:10:44',710.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8959,6,6,'2019-08-21 15:10:44',711.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8960,6,6,'2019-08-21 15:10:44',711.672000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8961,6,6,'2019-08-21 15:10:44',712.538000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8962,6,6,'2019-08-21 15:10:44',713.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8963,6,6,'2019-08-21 15:10:44',713.697000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8964,6,6,'2019-08-21 15:10:44',714.253000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8965,6,6,'2019-08-21 15:10:44',715.068000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8966,6,6,'2019-08-21 15:10:44',715.383000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8967,6,6,'2019-08-21 15:10:44',715.901000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8968,6,6,'2019-08-21 15:10:44',716.800000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8969,6,6,'2019-08-21 15:10:44',717.749000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8970,6,6,'2019-08-21 15:10:44',718.731000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8971,6,6,'2019-08-21 15:10:44',719.158000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8972,6,6,'2019-08-21 15:10:44',719.514000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8973,6,6,'2019-08-21 15:10:44',719.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8974,6,6,'2019-08-21 15:10:44',720.479000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8975,6,6,'2019-08-21 15:10:44',721.245000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8976,6,6,'2019-08-21 15:10:44',722.194000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8977,6,6,'2019-08-21 15:10:44',722.977000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8978,6,6,'2019-08-21 15:10:44',723.792000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8979,6,6,'2019-08-21 15:10:44',724.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8980,6,6,'2019-08-21 15:10:44',725.013000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8981,6,6,'2019-08-21 15:10:44',725.657000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8982,6,6,'2019-08-21 15:10:44',726.072000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8983,6,6,'2019-08-21 15:10:44',726.439000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8984,6,6,'2019-08-21 15:10:44',727.405000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8985,6,6,'2019-08-21 15:10:44',728.371000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8986,6,6,'2019-08-21 15:10:44',729.336000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8987,6,6,'2019-08-21 15:10:44',730.302000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8988,6,6,'2019-08-21 15:10:44',730.636000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8989,6,6,'2019-08-21 15:10:44',731.201000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8990,6,6,'2019-08-21 15:10:44',732.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8991,6,6,'2019-08-21 15:10:44',732.866000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8992,6,6,'2019-08-21 15:10:44',733.169000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8993,6,6,'2019-08-21 15:10:44',733.665000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8994,6,6,'2019-08-21 15:10:44',734.598000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8995,6,6,'2019-08-21 15:10:44',734.896000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8996,6,6,'2019-08-21 15:10:44',735.380000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8997,6,6,'2019-08-21 15:10:44',736.212000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8998,6,6,'2019-08-21 15:10:44',737.194000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (8999,6,6,'2019-08-21 15:10:44',737.470000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9000,6,6,'2019-08-21 15:10:44',738.026000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9001,6,6,'2019-08-21 15:10:44',738.893000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9002,6,6,'2019-08-21 15:10:44',739.675000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9003,6,6,'2019-08-21 15:10:44',740.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9004,6,6,'2019-08-21 15:10:44',740.558000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9005,6,6,'2019-08-21 15:10:44',741.557000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9006,6,6,'2019-08-21 15:10:44',741.841000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9007,6,6,'2019-08-21 15:10:44',742.455000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9008,6,6,'2019-08-21 15:10:44',742.891000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9009,6,6,'2019-08-21 15:10:44',743.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9010,6,6,'2019-08-21 15:10:44',744.270000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9011,6,6,'2019-08-21 15:10:44',744.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9012,6,6,'2019-08-21 15:10:44',745.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9013,6,6,'2019-08-21 15:10:44',745.852000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9014,6,6,'2019-08-21 15:10:44',746.834000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9015,6,6,'2019-08-21 15:10:44',747.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9016,6,6,'2019-08-21 15:10:44',748.565000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9017,6,6,'2019-08-21 15:10:44',748.917000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9018,6,6,'2019-08-21 15:10:44',749.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9019,6,6,'2019-08-21 15:10:44',750.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9020,6,6,'2019-08-21 15:10:44',750.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9021,6,6,'2019-08-21 15:10:44',751.146000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9022,6,6,'2019-08-21 15:10:44',751.929000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9023,6,6,'2019-08-21 15:10:44',752.927000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9024,6,6,'2019-08-21 15:10:44',753.228000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9025,6,6,'2019-08-21 15:10:44',753.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9026,6,6,'2019-08-21 15:10:44',754.775000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9027,6,6,'2019-08-21 15:10:44',755.155000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9028,6,6,'2019-08-21 15:10:44',755.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9029,6,6,'2019-08-21 15:10:44',756.573000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9030,6,6,'2019-08-21 15:10:44',757.572000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9031,6,6,'2019-08-21 15:10:44',758.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9032,6,6,'2019-08-21 15:10:44',759.153000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9033,6,6,'2019-08-21 15:10:44',759.557000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9034,6,6,'2019-08-21 15:10:44',760.103000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9035,6,6,'2019-08-21 15:10:44',760.985000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9036,6,6,'2019-08-21 15:10:44',762.001000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9037,6,6,'2019-08-21 15:10:44',762.434000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9038,6,6,'2019-08-21 15:10:44',762.949000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9039,6,6,'2019-08-21 15:10:44',763.413000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9040,6,6,'2019-08-21 15:10:44',763.948000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9041,6,6,'2019-08-21 15:10:44',764.947000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9042,6,6,'2019-08-21 15:10:44',765.813000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9043,6,6,'2019-08-21 15:10:44',766.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9044,6,6,'2019-08-21 15:10:44',766.795000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9045,6,6,'2019-08-21 15:10:44',767.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9046,6,6,'2019-08-21 15:10:44',768.360000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9047,6,6,'2019-08-21 15:10:44',768.793000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9048,6,6,'2019-08-21 15:10:44',769.276000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9049,6,6,'2019-08-21 15:10:44',770.125000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9050,6,6,'2019-08-21 15:10:44',770.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9051,6,6,'2019-08-21 15:10:44',771.939000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9052,6,6,'2019-08-21 15:10:44',772.872000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9053,6,6,'2019-08-21 15:10:44',773.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9054,6,6,'2019-08-21 15:10:44',773.888000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9055,6,6,'2019-08-21 15:10:44',774.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9056,6,6,'2019-08-21 15:10:44',774.804000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9057,6,6,'2019-08-21 15:10:44',775.569000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9058,6,6,'2019-08-21 15:10:44',776.451000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9059,6,6,'2019-08-21 15:10:44',777.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9060,6,6,'2019-08-21 15:10:44',778.466000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9061,6,6,'2019-08-21 15:10:44',778.857000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9062,6,6,'2019-08-21 15:10:44',779.465000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9063,6,6,'2019-08-21 15:10:44',780.280000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9064,6,6,'2019-08-21 15:10:44',781.047000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9065,6,6,'2019-08-21 15:10:44',781.462000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9066,6,6,'2019-08-21 15:10:44',781.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9067,6,6,'2019-08-21 15:10:44',782.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9068,6,6,'2019-08-21 15:10:44',783.370000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9069,6,6,'2019-08-21 15:10:44',783.794000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9070,6,6,'2019-08-21 15:10:44',784.632000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9071,6,6,'2019-08-21 15:10:44',784.709000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9072,6,6,'2019-08-21 15:10:44',785.559000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9073,6,6,'2019-08-21 15:10:44',786.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9074,6,6,'2019-08-21 15:10:44',787.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9075,6,6,'2019-08-21 15:10:44',787.620000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9076,6,6,'2019-08-21 15:10:44',788.172000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9077,6,6,'2019-08-21 15:10:44',789.055000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9078,6,6,'2019-08-21 15:10:44',790.054000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9079,6,6,'2019-08-21 15:10:44',791.053000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9080,6,6,'2019-08-21 15:10:44',792.067000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9081,6,6,'2019-08-21 15:10:44',792.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9082,6,6,'2019-08-21 15:10:44',793.050000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9083,6,6,'2019-08-21 15:10:44',794.049000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9084,6,6,'2019-08-21 15:10:44',794.394000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9085,6,6,'2019-08-21 15:10:44',795.048000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9086,6,6,'2019-08-21 15:10:44',795.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9087,6,6,'2019-08-21 15:10:44',796.797000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9088,6,6,'2019-08-21 15:10:44',797.119000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9089,6,6,'2019-08-21 15:10:44',797.628000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9090,6,6,'2019-08-21 15:10:44',798.627000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9091,6,6,'2019-08-21 15:10:44',798.906000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9092,6,6,'2019-08-21 15:10:44',799.593000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9093,6,6,'2019-08-21 15:10:44',799.976000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9094,6,6,'2019-08-21 15:10:44',800.459000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9095,6,6,'2019-08-21 15:10:44',801.291000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9096,6,6,'2019-08-21 15:10:44',802.257000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9097,6,6,'2019-08-21 15:10:44',803.223000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9098,6,6,'2019-08-21 15:10:44',804.055000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9099,6,6,'2019-08-21 15:10:44',804.987000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9100,6,6,'2019-08-21 15:10:44',805.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9101,6,6,'2019-08-21 15:10:44',806.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9102,6,6,'2019-08-21 15:10:44',806.669000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9103,6,6,'2019-08-21 15:10:44',807.567000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9104,6,6,'2019-08-21 15:10:44',807.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9105,6,6,'2019-08-21 15:10:44',808.450000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9106,6,6,'2019-08-21 15:10:44',809.382000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9107,6,6,'2019-08-21 15:10:44',810.165000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9108,6,6,'2019-08-21 15:10:44',810.947000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9109,6,6,'2019-08-21 15:10:44',811.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9110,6,6,'2019-08-21 15:10:44',811.779000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9111,6,6,'2019-08-21 15:10:44',812.695000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9112,6,6,'2019-08-21 15:10:44',813.544000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9113,6,6,'2019-08-21 15:10:44',813.877000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9114,6,6,'2019-08-21 15:10:44',814.377000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9115,6,6,'2019-08-21 15:10:44',815.242000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9116,6,6,'2019-08-21 15:10:44',816.142000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9117,6,6,'2019-08-21 15:10:44',817.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9118,6,6,'2019-08-21 15:10:44',817.840000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9119,6,6,'2019-08-21 15:10:44',818.177000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9120,6,6,'2019-08-21 15:10:44',818.722000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9121,6,6,'2019-08-21 15:10:44',819.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9122,6,6,'2019-08-21 15:10:44',819.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9123,6,6,'2019-08-21 15:10:44',820.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9124,6,6,'2019-08-21 15:10:44',820.486000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9125,6,6,'2019-08-21 15:10:44',821.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9126,6,6,'2019-08-21 15:10:44',822.385000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9127,6,6,'2019-08-21 15:10:44',823.267000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9128,6,6,'2019-08-21 15:10:44',824.282000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9129,6,6,'2019-08-21 15:10:44',824.658000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9130,6,6,'2019-08-21 15:10:44',825.082000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9131,6,6,'2019-08-21 15:10:44',825.947000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9132,6,6,'2019-08-21 15:10:44',826.880000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9133,6,6,'2019-08-21 15:10:44',827.252000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9134,6,6,'2019-08-21 15:10:44',827.862000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9135,6,6,'2019-08-21 15:10:44',828.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9136,6,6,'2019-08-21 15:10:44',829.710000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9137,6,6,'2019-08-21 15:10:44',830.019000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9138,6,6,'2019-08-21 15:10:44',830.643000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9139,6,6,'2019-08-21 15:10:44',831.508000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9140,6,6,'2019-08-21 15:10:44',832.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9141,6,6,'2019-08-21 15:10:44',833.223000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9142,6,6,'2019-08-21 15:10:44',833.743000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9143,6,6,'2019-08-21 15:10:44',834.122000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9144,6,6,'2019-08-21 15:10:44',835.088000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9145,6,6,'2019-08-21 15:10:44',835.379000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9146,6,6,'2019-08-21 15:10:44',836.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9147,6,6,'2019-08-21 15:10:44',837.035000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9148,6,6,'2019-08-21 15:10:44',837.438000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9149,6,6,'2019-08-21 15:10:44',837.852000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9150,6,6,'2019-08-21 15:10:44',838.700000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9151,6,6,'2019-08-21 15:10:44',839.699000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9152,6,6,'2019-08-21 15:10:44',840.599000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9153,6,6,'2019-08-21 15:10:44',840.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9154,6,6,'2019-08-21 15:10:44',841.580000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9155,6,6,'2019-08-21 15:10:44',842.479000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9156,6,6,'2019-08-21 15:10:44',842.869000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9157,6,6,'2019-08-21 15:10:44',843.361000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9158,6,6,'2019-08-21 15:10:44',844.311000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9159,6,6,'2019-08-21 15:10:44',844.666000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9160,6,6,'2019-08-21 15:10:44',845.093000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9161,6,6,'2019-08-21 15:10:44',846.042000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9162,6,6,'2019-08-21 15:10:44',846.808000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9163,6,6,'2019-08-21 15:10:44',847.690000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9164,6,6,'2019-08-21 15:10:44',848.689000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9165,6,6,'2019-08-21 15:10:44',849.655000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9166,6,6,'2019-08-21 15:10:44',850.487000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9167,6,6,'2019-08-21 15:10:44',850.813000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9168,6,6,'2019-08-21 15:10:44',851.403000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9169,6,6,'2019-08-21 15:10:44',851.752000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9170,6,6,'2019-08-21 15:10:44',852.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9171,6,6,'2019-08-21 15:10:44',853.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9172,6,6,'2019-08-21 15:10:44',853.367000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9173,6,6,'2019-08-21 15:10:44',853.983000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9174,6,6,'2019-08-21 15:10:44',854.326000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9175,6,6,'2019-08-21 15:10:44',854.800000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9176,6,6,'2019-08-21 15:10:44',855.731000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9177,6,6,'2019-08-21 15:10:44',856.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9178,6,6,'2019-08-21 15:10:44',857.430000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9179,6,6,'2019-08-21 15:10:44',857.789000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9180,6,6,'2019-08-21 15:10:44',858.379000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9181,6,6,'2019-08-21 15:10:44',858.769000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9182,6,6,'2019-08-21 15:10:44',859.261000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9183,6,6,'2019-08-21 15:10:44',860.127000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9184,6,6,'2019-08-21 15:10:44',860.926000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9185,6,6,'2019-08-21 15:10:44',861.842000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9186,6,6,'2019-08-21 15:10:44',862.657000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9187,6,6,'2019-08-21 15:10:44',863.640000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9188,6,6,'2019-08-21 15:10:44',863.978000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9189,6,6,'2019-08-21 15:10:44',864.556000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9190,6,6,'2019-08-21 15:10:44',864.946000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9191,6,6,'2019-08-21 15:10:44',865.538000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9192,6,6,'2019-08-21 15:10:44',866.520000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9193,6,6,'2019-08-21 15:10:44',867.436000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9194,6,6,'2019-08-21 15:10:44',868.251000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9195,6,6,'2019-08-21 15:10:44',869.051000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9196,6,6,'2019-08-21 15:10:44',869.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9197,6,6,'2019-08-21 15:10:44',870.665000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9198,6,6,'2019-08-21 15:10:44',870.973000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9199,6,6,'2019-08-21 15:10:44',871.647000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9200,6,6,'2019-08-21 15:10:44',872.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9201,6,6,'2019-08-21 15:10:44',872.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9202,6,6,'2019-08-21 15:10:44',873.479000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9203,6,6,'2019-08-21 15:10:44',874.278000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9204,6,6,'2019-08-21 15:10:44',874.617000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9205,6,6,'2019-08-21 15:10:44',875.061000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9206,6,6,'2019-08-21 15:10:44',875.876000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9207,6,6,'2019-08-21 15:10:44',876.792000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9208,6,6,'2019-08-21 15:10:44',877.574000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9209,6,6,'2019-08-21 15:10:44',877.928000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9210,6,6,'2019-08-21 15:10:44',878.540000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9211,6,6,'2019-08-21 15:10:44',879.339000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9212,6,6,'2019-08-21 15:10:44',880.222000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9213,6,6,'2019-08-21 15:10:44',881.021000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9214,6,6,'2019-08-21 15:10:44',881.411000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9215,6,6,'2019-08-21 15:10:44',881.820000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9216,6,6,'2019-08-21 15:10:44',882.299000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9217,6,6,'2019-08-21 15:10:44',882.785000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9218,6,6,'2019-08-21 15:10:44',900.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9219,6,6,'2019-08-21 15:10:44',921.277000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9220,6,6,'2019-08-21 15:10:44',921.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9221,6,6,'2019-08-21 15:10:44',922.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9222,6,6,'2019-08-21 15:10:44',922.858000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9223,6,6,'2019-08-21 15:10:44',923.674000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9224,6,6,'2019-08-21 15:10:44',924.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9225,6,6,'2019-08-21 15:10:44',924.640000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9226,6,6,'2019-08-21 15:10:44',925.472000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9227,6,6,'2019-08-21 15:10:44',926.471000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9228,6,6,'2019-08-21 15:10:44',926.926000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9229,6,6,'2019-08-21 15:10:44',927.420000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9230,6,6,'2019-08-21 15:10:44',928.202000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9231,6,6,'2019-08-21 15:10:44',928.552000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9232,6,6,'2019-08-21 15:10:44',928.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9233,6,6,'2019-08-21 15:10:44',929.751000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9234,6,6,'2019-08-21 15:10:44',930.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9235,6,6,'2019-08-21 15:10:44',931.532000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9236,6,6,'2019-08-21 15:10:44',932.465000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9237,6,6,'2019-08-21 15:10:44',932.761000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9238,6,6,'2019-08-21 15:10:44',933.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9239,6,6,'2019-08-21 15:10:44',933.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9240,6,6,'2019-08-21 15:10:44',934.096000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9241,6,6,'2019-08-21 15:10:44',934.979000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9242,6,6,'2019-08-21 15:10:44',935.978000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9243,6,6,'2019-08-21 15:10:44',936.926000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9244,6,6,'2019-08-21 15:10:44',937.825000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9245,6,6,'2019-08-21 15:10:44',938.725000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9246,6,6,'2019-08-21 15:10:44',939.121000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9247,6,6,'2019-08-21 15:10:44',939.606000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9248,6,6,'2019-08-21 15:10:44',939.989000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9249,6,6,'2019-08-21 15:10:44',940.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9250,6,6,'2019-08-21 15:10:44',941.455000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9251,6,6,'2019-08-21 15:10:44',942.304000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9252,6,6,'2019-08-21 15:10:44',943.319000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9253,6,6,'2019-08-21 15:10:44',943.734000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9254,6,6,'2019-08-21 15:10:44',944.118000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9255,6,6,'2019-08-21 15:10:44',944.935000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9256,6,6,'2019-08-21 15:10:44',945.783000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9257,6,6,'2019-08-21 15:10:44',946.167000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9258,6,6,'2019-08-21 15:10:44',946.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9259,6,6,'2019-08-21 15:10:44',947.698000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9260,6,6,'2019-08-21 15:10:44',948.186000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9261,6,6,'2019-08-21 15:10:44',948.680000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9262,6,6,'2019-08-21 15:10:44',949.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9263,6,6,'2019-08-21 15:10:44',950.479000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9264,6,6,'2019-08-21 15:10:44',951.477000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9265,6,6,'2019-08-21 15:10:44',951.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9266,6,6,'2019-08-21 15:10:44',952.310000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9267,6,6,'2019-08-21 15:10:44',953.325000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9268,6,6,'2019-08-21 15:10:44',953.668000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9269,6,6,'2019-08-21 15:10:44',954.091000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9270,6,6,'2019-08-21 15:10:44',955.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9271,6,6,'2019-08-21 15:10:44',955.806000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9272,6,6,'2019-08-21 15:10:44',956.222000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9273,6,6,'2019-08-21 15:10:44',956.571000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9274,6,6,'2019-08-21 15:10:44',957.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9275,6,6,'2019-08-21 15:10:44',958.386000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9276,6,6,'2019-08-21 15:10:44',959.202000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9277,6,6,'2019-08-21 15:10:44',959.583000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9278,6,6,'2019-08-21 15:10:44',960.201000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9279,6,6,'2019-08-21 15:10:44',961.000000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9280,6,6,'2019-08-21 15:10:44',961.799000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9281,6,6,'2019-08-21 15:10:44',962.798000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9282,6,6,'2019-08-21 15:10:44',963.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9283,6,6,'2019-08-21 15:10:44',963.697000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9284,6,6,'2019-08-21 15:10:44',964.156000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9285,6,6,'2019-08-21 15:10:44',964.479000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9286,6,6,'2019-08-21 15:10:44',965.278000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9287,6,6,'2019-08-21 15:10:44',965.640000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9288,6,6,'2019-08-21 15:10:44',966.228000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9289,6,6,'2019-08-21 15:10:44',967.094000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9290,6,6,'2019-08-21 15:10:44',968.009000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9291,6,6,'2019-08-21 15:10:44',968.825000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9292,6,6,'2019-08-21 15:10:44',969.674000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9293,6,6,'2019-08-21 15:10:44',970.071000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9294,6,6,'2019-08-21 15:10:44',970.522000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9295,6,6,'2019-08-21 15:10:44',971.422000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9296,6,6,'2019-08-21 15:10:44',972.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9297,6,6,'2019-08-21 15:10:44',972.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9298,6,6,'2019-08-21 15:10:44',973.236000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9299,6,6,'2019-08-21 15:10:44',974.119000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9300,6,6,'2019-08-21 15:10:44',975.068000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9301,6,6,'2019-08-21 15:10:44',975.382000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9302,6,6,'2019-08-21 15:10:44',976.066000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9303,6,6,'2019-08-21 15:10:44',976.916000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9304,6,6,'2019-08-21 15:10:44',977.815000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9305,6,6,'2019-08-21 15:10:44',978.077000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9306,6,6,'2019-08-21 15:10:44',978.581000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9307,6,6,'2019-08-21 15:10:44',979.513000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9308,6,6,'2019-08-21 15:10:44',980.429000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9309,6,6,'2019-08-21 15:10:44',981.194000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9310,6,6,'2019-08-21 15:10:44',982.160000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9311,6,6,'2019-08-21 15:10:44',982.519000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9312,6,6,'2019-08-21 15:10:44',983.043000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9313,6,6,'2019-08-21 15:10:44',983.478000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9314,6,6,'2019-08-21 15:10:44',983.925000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9315,6,6,'2019-08-21 15:10:44',984.874000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9316,6,6,'2019-08-21 15:10:44',985.335000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9317,6,6,'2019-08-21 15:10:44',985.723000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9318,6,6,'2019-08-21 15:10:44',986.589000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9319,6,6,'2019-08-21 15:10:44',987.438000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9320,6,6,'2019-08-21 15:10:44',987.808000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9321,6,6,'2019-08-21 15:10:44',988.403000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9322,6,6,'2019-08-21 15:10:44',989.336000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9323,6,6,'2019-08-21 15:10:44',990.335000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9324,6,6,'2019-08-21 15:10:44',991.300000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9325,6,6,'2019-08-21 15:10:44',992.315000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9326,6,6,'2019-08-21 15:10:44',992.593000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9327,6,6,'2019-08-21 15:10:44',993.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9328,6,6,'2019-08-21 15:10:44',993.582000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9329,6,6,'2019-08-21 15:10:44',994.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9330,6,6,'2019-08-21 15:10:44',995.013000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9331,6,6,'2019-08-21 15:10:44',995.879000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9332,6,6,'2019-08-21 15:10:44',996.761000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9333,6,6,'2019-08-21 15:10:44',997.186000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9334,6,6,'2019-08-21 15:10:44',997.543000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9335,6,6,'2019-08-21 15:10:44',998.310000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9336,6,6,'2019-08-21 15:10:44',999.225000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9337,6,6,'2019-08-21 15:10:44',999.508000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9338,6,6,'2019-08-21 15:10:44',1000.091000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9339,6,6,'2019-08-21 15:10:44',1000.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9340,6,6,'2019-08-21 15:10:44',1001.365000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9341,6,6,'2019-08-21 15:10:44',1001.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9342,6,6,'2019-08-21 15:10:44',1002.821000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9343,6,6,'2019-08-21 15:10:44',1003.172000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9344,6,6,'2019-08-21 15:10:44',1003.770000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9345,6,6,'2019-08-21 15:10:44',1004.652000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9346,6,6,'2019-08-21 15:10:44',1005.468000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9347,6,6,'2019-08-21 15:10:44',1006.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9348,6,6,'2019-08-21 15:10:44',1007.333000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9349,6,6,'2019-08-21 15:10:44',1007.645000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9350,6,6,'2019-08-21 15:10:44',1008.115000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9351,6,6,'2019-08-21 15:10:44',1008.573000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9352,6,6,'2019-08-21 15:10:44',1009.031000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9353,6,6,'2019-08-21 15:10:44',1010.029000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9354,6,6,'2019-08-21 15:10:44',1011.012000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9355,6,6,'2019-08-21 15:10:44',1011.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9356,6,6,'2019-08-21 15:10:44',1012.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9357,6,6,'2019-08-21 15:10:44',1012.811000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9358,6,6,'2019-08-21 15:10:44',1013.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9359,6,6,'2019-08-21 15:10:44',1014.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9360,6,6,'2019-08-21 15:10:44',1015.391000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9361,6,6,'2019-08-21 15:10:44',1015.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9362,6,6,'2019-08-21 15:10:44',1016.239000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9363,6,6,'2019-08-21 15:10:44',1017.022000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9364,6,6,'2019-08-21 15:10:44',1017.921000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9365,6,6,'2019-08-21 15:10:44',1018.294000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9366,6,6,'2019-08-21 15:10:44',1018.704000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9367,6,6,'2019-08-21 15:10:44',1019.553000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9368,6,6,'2019-08-21 15:10:44',1020.418000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9369,6,6,'2019-08-21 15:10:44',1021.218000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9370,6,6,'2019-08-21 15:10:44',1021.484000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9371,6,6,'2019-08-21 15:10:44',1022.149000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9372,6,6,'2019-08-21 15:10:44',1022.534000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9373,6,6,'2019-08-21 15:10:44',1022.999000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9374,6,6,'2019-08-21 15:10:44',1023.798000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9375,6,6,'2019-08-21 15:10:44',1024.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9376,6,6,'2019-08-21 15:10:44',1025.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9377,6,6,'2019-08-21 15:10:44',1026.379000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9378,6,6,'2019-08-21 15:10:44',1026.703000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9379,6,6,'2019-08-21 15:10:44',1027.311000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9380,6,6,'2019-08-21 15:10:44',1028.210000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9381,6,6,'2019-08-21 15:10:44',1029.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9382,6,6,'2019-08-21 15:10:44',1030.124000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9383,6,6,'2019-08-21 15:10:44',1030.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9384,6,6,'2019-08-21 15:10:44',1030.891000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9385,6,6,'2019-08-21 15:10:44',1031.890000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9386,6,6,'2019-08-21 15:10:44',1032.205000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9387,6,6,'2019-08-21 15:10:44',1032.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9388,6,6,'2019-08-21 15:10:44',1033.587000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9389,6,6,'2019-08-21 15:10:44',1034.553000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9390,6,6,'2019-08-21 15:10:44',1034.940000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9391,6,6,'2019-08-21 15:10:44',1035.452000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9392,6,6,'2019-08-21 15:10:44',1035.778000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9393,6,6,'2019-08-21 15:10:44',1036.234000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9394,6,6,'2019-08-21 15:10:44',1037.250000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9395,6,6,'2019-08-21 15:10:44',1038.232000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9396,6,6,'2019-08-21 15:10:44',1038.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9397,6,6,'2019-08-21 15:10:44',1039.231000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9398,6,6,'2019-08-21 15:10:44',1040.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9399,6,6,'2019-08-21 15:10:44',1041.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9400,6,6,'2019-08-21 15:10:44',1041.861000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9401,6,6,'2019-08-21 15:10:44',1042.198000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9402,6,6,'2019-08-21 15:10:44',1042.711000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9403,6,6,'2019-08-21 15:10:44',1043.560000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9404,6,6,'2019-08-21 15:10:44',1043.874000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9405,6,6,'2019-08-21 15:10:44',1044.459000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9406,6,6,'2019-08-21 15:10:44',1045.241000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9407,6,6,'2019-08-21 15:10:44',1046.207000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9408,6,6,'2019-08-21 15:10:44',1047.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9409,6,6,'2019-08-21 15:10:44',1047.922000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9410,6,6,'2019-08-21 15:10:44',1048.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9411,6,6,'2019-08-21 15:10:44',1048.820000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9412,6,6,'2019-08-21 15:10:44',1049.234000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9413,6,6,'2019-08-21 15:10:44',1049.670000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9414,6,6,'2019-08-21 15:10:44',1050.519000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9415,6,6,'2019-08-21 15:10:44',1050.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9416,6,6,'2019-08-21 15:10:44',1051.501000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9417,6,6,'2019-08-21 15:10:44',1052.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9418,6,6,'2019-08-21 15:10:44',1053.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9419,6,6,'2019-08-21 15:10:44',1054.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9420,6,6,'2019-08-21 15:10:44',1055.030000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9421,6,6,'2019-08-21 15:10:44',1055.913000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9422,6,6,'2019-08-21 15:10:44',1056.745000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9423,6,6,'2019-08-21 15:10:44',1057.512000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9424,6,6,'2019-08-21 15:10:44',1057.876000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9425,6,6,'2019-08-21 15:10:44',1058.427000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9426,6,6,'2019-08-21 15:10:44',1058.754000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9427,6,6,'2019-08-21 15:10:44',1059.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9428,6,6,'2019-08-21 15:10:44',1060.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9429,6,6,'2019-08-21 15:10:44',1060.611000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9430,6,6,'2019-08-21 15:10:44',1061.008000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9431,6,6,'2019-08-21 15:10:44',1061.823000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9432,6,6,'2019-08-21 15:10:44',1062.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9433,6,6,'2019-08-21 15:10:44',1063.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9434,6,6,'2019-08-21 15:10:44',1063.802000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9435,6,6,'2019-08-21 15:10:44',1064.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9436,6,6,'2019-08-21 15:10:44',1064.750000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9437,6,6,'2019-08-21 15:10:44',1065.120000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9438,6,6,'2019-08-21 15:10:44',1065.527000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9439,6,6,'2019-08-21 15:10:44',1066.035000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9440,6,6,'2019-08-21 15:10:44',1066.918000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9441,6,6,'2019-08-21 15:10:44',1067.750000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9442,6,6,'2019-08-21 15:10:44',1068.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9443,6,6,'2019-08-21 15:10:44',1069.481000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9444,6,6,'2019-08-21 15:10:44',1070.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9445,6,6,'2019-08-21 15:10:44',1070.706000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9446,6,6,'2019-08-21 15:10:44',1071.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9447,6,6,'2019-08-21 15:10:44',1072.028000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9448,6,6,'2019-08-21 15:10:44',1072.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9449,6,6,'2019-08-21 15:10:44',1073.159000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9450,6,6,'2019-08-21 15:10:44',1073.760000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9451,6,6,'2019-08-21 15:10:44',1074.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9452,6,6,'2019-08-21 15:10:44',1075.525000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9453,6,6,'2019-08-21 15:10:44',1076.440000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9454,6,6,'2019-08-21 15:10:44',1077.406000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9455,6,6,'2019-08-21 15:10:44',1078.289000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9456,6,6,'2019-08-21 15:10:44',1078.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9457,6,6,'2019-08-21 15:10:44',1079.071000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9458,6,6,'2019-08-21 15:10:44',1079.499000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9459,6,6,'2019-08-21 15:10:44',1079.920000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9460,6,6,'2019-08-21 15:10:44',1080.919000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9461,6,6,'2019-08-21 15:10:44',1081.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9462,6,6,'2019-08-21 15:10:44',1081.868000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9463,6,6,'2019-08-21 15:10:44',1082.834000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9464,6,6,'2019-08-21 15:10:44',1083.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9465,6,6,'2019-08-21 15:10:44',1083.749000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9466,6,6,'2019-08-21 15:10:44',1084.615000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9467,6,6,'2019-08-21 15:10:44',1085.381000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9468,6,6,'2019-08-21 15:10:44',1086.229000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9469,6,6,'2019-08-21 15:10:44',1086.534000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9470,6,6,'2019-08-21 15:10:44',1087.029000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9471,6,6,'2019-08-21 15:10:44',1087.928000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9472,6,6,'2019-08-21 15:10:44',1088.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9473,6,6,'2019-08-21 15:10:44',1089.078000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9474,6,6,'2019-08-21 15:10:44',1089.793000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9475,6,6,'2019-08-21 15:10:44',1090.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9476,6,6,'2019-08-21 15:10:44',1091.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9477,6,6,'2019-08-21 15:10:44',1091.844000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9478,6,6,'2019-08-21 15:10:44',1092.406000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9479,6,6,'2019-08-21 15:10:44',1093.239000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9480,6,6,'2019-08-21 15:10:44',1093.521000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9481,6,6,'2019-08-21 15:10:44',1094.038000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9482,6,6,'2019-08-21 15:10:44',1094.870000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9483,6,6,'2019-08-21 15:10:44',1095.853000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9484,6,6,'2019-08-21 15:10:44',1096.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9485,6,6,'2019-08-21 15:10:44',1096.835000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9486,6,6,'2019-08-21 15:10:44',1097.701000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9487,6,6,'2019-08-21 15:10:44',1098.583000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9488,6,6,'2019-08-21 15:10:44',1098.971000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9489,6,6,'2019-08-21 15:10:44',1099.499000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9490,6,6,'2019-08-21 15:10:44',1100.397000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9491,6,6,'2019-08-21 15:10:44',1100.748000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9492,6,6,'2019-08-21 15:10:44',1101.214000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9493,6,6,'2019-08-21 15:10:44',1102.213000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9494,6,6,'2019-08-21 15:10:44',1102.534000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9495,6,6,'2019-08-21 15:10:44',1103.178000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9496,6,6,'2019-08-21 15:10:44',1103.585000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9497,6,6,'2019-08-21 15:10:44',1104.110000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9498,6,6,'2019-08-21 15:10:44',1104.893000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9499,6,6,'2019-08-21 15:10:44',1105.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9500,6,6,'2019-08-21 15:10:44',1106.774000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9501,6,6,'2019-08-21 15:10:44',1107.606000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9502,6,6,'2019-08-21 15:10:44',1108.506000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9503,6,6,'2019-08-21 15:10:44',1109.404000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9504,6,6,'2019-08-21 15:10:44',1109.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9505,6,6,'2019-08-21 15:10:44',1110.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9506,6,6,'2019-08-21 15:10:44',1110.701000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9507,6,6,'2019-08-21 15:10:44',1111.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9508,6,6,'2019-08-21 15:10:44',1112.185000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9509,6,6,'2019-08-21 15:10:44',1113.167000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9510,6,6,'2019-08-21 15:10:44',1113.559000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9511,6,6,'2019-08-21 15:10:44',1113.966000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9512,6,6,'2019-08-21 15:10:44',1114.749000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9513,6,6,'2019-08-21 15:10:44',1115.133000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9514,6,6,'2019-08-21 15:10:44',1115.548000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9515,6,6,'2019-08-21 15:10:44',1116.447000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9516,6,6,'2019-08-21 15:10:44',1117.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9517,6,6,'2019-08-21 15:10:44',1118.411000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9518,6,6,'2019-08-21 15:10:44',1119.244000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9519,6,6,'2019-08-21 15:10:44',1120.210000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9520,6,6,'2019-08-21 15:10:44',1120.574000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9521,6,6,'2019-08-21 15:10:44',1121.042000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9522,6,6,'2019-08-21 15:10:44',1121.412000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9523,6,6,'2019-08-21 15:10:44',1121.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9524,6,6,'2019-08-21 15:10:44',1122.973000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9525,6,6,'2019-08-21 15:10:44',1123.756000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9526,6,6,'2019-08-21 15:10:44',1124.688000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9527,6,6,'2019-08-21 15:10:44',1125.471000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9528,6,6,'2019-08-21 15:10:44',1125.793000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9529,6,6,'2019-08-21 15:10:44',1126.419000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9530,6,6,'2019-08-21 15:10:44',1127.219000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9531,6,6,'2019-08-21 15:10:44',1127.550000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9532,6,6,'2019-08-21 15:10:44',1128.218000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9533,6,6,'2019-08-21 15:10:44',1129.083000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9534,6,6,'2019-08-21 15:10:44',1129.898000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9535,6,6,'2019-08-21 15:10:44',1130.698000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9536,6,6,'2019-08-21 15:10:44',1131.580000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9537,6,6,'2019-08-21 15:10:44',1131.931000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9538,6,6,'2019-08-21 15:10:44',1132.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9539,6,6,'2019-08-21 15:10:44',1132.859000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9540,6,6,'2019-08-21 15:10:44',1133.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9541,6,6,'2019-08-21 15:10:44',1133.778000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9542,6,6,'2019-08-21 15:10:44',1134.327000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9543,6,6,'2019-08-21 15:10:44',1135.127000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9544,6,6,'2019-08-21 15:10:44',1135.976000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9545,6,6,'2019-08-21 15:10:44',1136.322000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9546,6,6,'2019-08-21 15:10:44',1136.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9547,6,6,'2019-08-21 15:10:44',1137.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9548,6,6,'2019-08-21 15:10:44',1138.522000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9549,6,6,'2019-08-21 15:10:44',1139.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9550,6,6,'2019-08-21 15:10:44',1140.171000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9551,6,6,'2019-08-21 15:10:44',1141.021000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9552,6,6,'2019-08-21 15:10:44',1141.592000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9553,6,6,'2019-08-21 15:10:44',1141.919000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9554,6,6,'2019-08-21 15:10:44',1142.735000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9555,6,6,'2019-08-21 15:10:44',1143.085000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9556,6,6,'2019-08-21 15:10:44',1143.667000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9557,6,6,'2019-08-21 15:10:44',1144.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9558,6,6,'2019-08-21 15:10:44',1145.382000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9559,6,6,'2019-08-21 15:10:44',1145.730000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9560,6,6,'2019-08-21 15:10:44',1146.364000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9561,6,6,'2019-08-21 15:10:44',1147.363000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9562,6,6,'2019-08-21 15:10:44',1148.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9563,6,6,'2019-08-21 15:10:44',1148.698000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9564,6,6,'2019-08-21 15:10:44',1149.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9565,6,6,'2019-08-21 15:10:44',1149.546000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9566,6,6,'2019-08-21 15:10:44',1149.993000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9567,6,6,'2019-08-21 15:10:44',1150.942000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9568,6,6,'2019-08-21 15:10:44',1151.858000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9569,6,6,'2019-08-21 15:10:44',1152.707000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9570,6,6,'2019-08-21 15:10:44',1153.039000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9571,6,6,'2019-08-21 15:10:44',1153.573000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9572,6,6,'2019-08-21 15:10:44',1154.455000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9573,6,6,'2019-08-21 15:10:44',1155.371000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9574,6,6,'2019-08-21 15:10:44',1155.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9575,6,6,'2019-08-21 15:10:44',1156.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9576,6,6,'2019-08-21 15:10:44',1156.693000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9577,6,6,'2019-08-21 15:10:44',1157.235000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9578,6,6,'2019-08-21 15:10:44',1158.102000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9579,6,6,'2019-08-21 15:10:44',1158.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9580,6,6,'2019-08-21 15:10:44',1159.916000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9581,6,6,'2019-08-21 15:10:44',1160.206000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9582,6,6,'2019-08-21 15:10:44',1160.882000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9583,6,6,'2019-08-21 15:10:44',1161.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9584,6,6,'2019-08-21 15:10:44',1162.175000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9585,6,6,'2019-08-21 15:10:44',1162.680000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9586,6,6,'2019-08-21 15:10:44',1163.662000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9587,6,6,'2019-08-21 15:10:44',1164.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9588,6,6,'2019-08-21 15:10:44',1165.410000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9589,6,6,'2019-08-21 15:10:44',1165.678000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9590,6,6,'2019-08-21 15:10:44',1166.226000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9591,6,6,'2019-08-21 15:10:44',1166.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9592,6,6,'2019-08-21 15:10:44',1167.059000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9593,6,6,'2019-08-21 15:10:44',1167.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9594,6,6,'2019-08-21 15:10:44',1168.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9595,6,6,'2019-08-21 15:10:44',1169.262000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9596,6,6,'2019-08-21 15:10:44',1169.822000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9597,6,6,'2019-08-21 15:10:44',1170.704000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9598,6,6,'2019-08-21 15:10:44',1171.653000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9599,6,6,'2019-08-21 15:10:44',1171.986000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9600,6,6,'2019-08-21 15:10:44',1172.419000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9601,6,6,'2019-08-21 15:10:44',1173.235000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9602,6,6,'2019-08-21 15:10:44',1174.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9603,6,6,'2019-08-21 15:10:44',1174.369000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9604,6,6,'2019-08-21 15:10:44',1174.850000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9605,6,6,'2019-08-21 15:10:44',1175.732000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9606,6,6,'2019-08-21 15:10:44',1176.045000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9607,6,6,'2019-08-21 15:10:44',1176.614000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9608,6,6,'2019-08-21 15:10:44',1177.530000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9609,6,6,'2019-08-21 15:10:44',1178.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9610,6,6,'2019-08-21 15:10:44',1179.095000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9611,6,6,'2019-08-21 15:10:44',1179.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9612,6,6,'2019-08-21 15:10:44',1179.878000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9613,6,6,'2019-08-21 15:10:44',1180.677000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9614,6,6,'2019-08-21 15:10:44',1181.543000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9615,6,6,'2019-08-21 15:10:44',1182.441000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9616,6,6,'2019-08-21 15:10:44',1182.758000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9617,6,6,'2019-08-21 15:10:44',1183.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9618,6,6,'2019-08-21 15:10:44',1184.007000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9619,6,6,'2019-08-21 15:10:44',1184.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9620,6,6,'2019-08-21 15:10:44',1184.872000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9621,7,7,'2019-08-21 15:10:50',25.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9622,7,7,'2019-08-21 15:10:50',26.369000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9623,7,7,'2019-08-21 15:10:50',26.664000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9624,7,7,'2019-08-21 15:10:50',27.135000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9625,7,7,'2019-08-21 15:10:50',27.451000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9626,7,7,'2019-08-21 15:10:50',28.084000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9627,7,7,'2019-08-21 15:10:50',28.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9628,7,7,'2019-08-21 15:10:50',29.715000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9629,7,7,'2019-08-21 15:10:50',30.548000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9630,7,7,'2019-08-21 15:10:50',31.497000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9631,7,7,'2019-08-21 15:10:50',32.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9632,7,7,'2019-08-21 15:10:50',32.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9633,7,7,'2019-08-21 15:10:50',33.411000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9634,7,7,'2019-08-21 15:10:50',34.177000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9635,7,7,'2019-08-21 15:10:50',34.977000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9636,7,7,'2019-08-21 15:10:50',35.326000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9637,7,7,'2019-08-21 15:10:50',35.792000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9638,7,7,'2019-08-21 15:10:50',36.741000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9639,7,7,'2019-08-21 15:10:50',37.656000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9640,7,7,'2019-08-21 15:10:50',38.556000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9641,7,7,'2019-08-21 15:10:50',38.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9642,7,7,'2019-08-21 15:10:50',39.488000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9643,7,7,'2019-08-21 15:10:50',39.949000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9644,7,7,'2019-08-21 15:10:50',40.470000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9645,7,7,'2019-08-21 15:10:50',41.286000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9646,7,7,'2019-08-21 15:10:50',42.185000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9647,7,7,'2019-08-21 15:10:50',43.150000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9648,7,7,'2019-08-21 15:10:50',43.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9649,7,7,'2019-08-21 15:10:50',44.017000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9650,7,7,'2019-08-21 15:10:50',44.432000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9651,7,7,'2019-08-21 15:10:50',44.999000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9652,7,7,'2019-08-21 15:10:50',45.848000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9653,7,7,'2019-08-21 15:10:50',46.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9654,7,7,'2019-08-21 15:10:50',47.829000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9655,7,7,'2019-08-21 15:10:50',48.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9656,7,7,'2019-08-21 15:10:50',48.744000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9657,7,7,'2019-08-21 15:10:50',49.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9658,7,7,'2019-08-21 15:10:50',49.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9659,7,7,'2019-08-21 15:10:50',50.359000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9660,7,7,'2019-08-21 15:10:50',51.226000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9661,7,7,'2019-08-21 15:10:50',52.124000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9662,7,7,'2019-08-21 15:10:50',53.106000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9663,7,7,'2019-08-21 15:10:50',54.089000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9664,7,7,'2019-08-21 15:10:50',54.426000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9665,7,7,'2019-08-21 15:10:50',55.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9666,7,7,'2019-08-21 15:10:50',55.937000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9667,7,7,'2019-08-21 15:10:50',56.886000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9668,7,7,'2019-08-21 15:10:50',57.151000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9669,7,7,'2019-08-21 15:10:50',57.734000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9670,7,7,'2019-08-21 15:10:50',58.501000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9671,7,7,'2019-08-21 15:10:50',59.350000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9672,7,7,'2019-08-21 15:10:50',60.282000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9673,7,7,'2019-08-21 15:10:50',60.564000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9674,7,7,'2019-08-21 15:10:50',61.048000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9675,7,7,'2019-08-21 15:10:50',62.030000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9676,7,7,'2019-08-21 15:10:50',62.331000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9677,7,7,'2019-08-21 15:10:50',62.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9678,7,7,'2019-08-21 15:10:50',63.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9679,7,7,'2019-08-21 15:10:50',64.811000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9680,7,7,'2019-08-21 15:10:50',65.776000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9681,7,7,'2019-08-21 15:10:50',66.116000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9682,7,7,'2019-08-21 15:10:50',66.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9683,7,7,'2019-08-21 15:10:50',67.187000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9684,7,7,'2019-08-21 15:10:50',67.591000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9685,7,7,'2019-08-21 15:10:50',68.540000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9686,7,7,'2019-08-21 15:10:50',69.339000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9687,7,7,'2019-08-21 15:10:50',69.670000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9688,7,7,'2019-08-21 15:10:50',70.271000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9689,7,7,'2019-08-21 15:10:50',71.187000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9690,7,7,'2019-08-21 15:10:50',71.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9691,7,7,'2019-08-21 15:10:50',72.918000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9692,7,7,'2019-08-21 15:10:50',73.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9693,7,7,'2019-08-21 15:10:50',73.817000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9694,7,7,'2019-08-21 15:10:50',74.800000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9695,7,7,'2019-08-21 15:10:50',75.781000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9696,7,7,'2019-08-21 15:10:50',76.581000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9697,7,7,'2019-08-21 15:10:50',77.396000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9698,7,7,'2019-08-21 15:10:50',77.676000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9699,7,7,'2019-08-21 15:10:50',78.312000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9700,7,7,'2019-08-21 15:10:50',78.735000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9701,7,7,'2019-08-21 15:10:50',79.128000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9702,7,7,'2019-08-21 15:10:50',79.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9703,7,7,'2019-08-21 15:10:50',80.127000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9704,7,7,'2019-08-21 15:10:50',80.422000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9705,7,7,'2019-08-21 15:10:50',80.926000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9706,7,7,'2019-08-21 15:10:50',81.842000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9707,7,7,'2019-08-21 15:10:50',82.624000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9708,7,7,'2019-08-21 15:10:50',83.606000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9709,7,7,'2019-08-21 15:10:50',84.539000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9710,7,7,'2019-08-21 15:10:50',85.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9711,7,7,'2019-08-21 15:10:50',86.070000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9712,7,7,'2019-08-21 15:10:50',86.937000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9713,7,7,'2019-08-21 15:10:50',87.901000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9714,7,7,'2019-08-21 15:10:50',88.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9715,7,7,'2019-08-21 15:10:50',88.884000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9716,7,7,'2019-08-21 15:10:50',89.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9717,7,7,'2019-08-21 15:10:50',89.750000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9718,7,7,'2019-08-21 15:10:50',90.632000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9719,7,7,'2019-08-21 15:10:50',90.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9720,7,7,'2019-08-21 15:10:50',91.432000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9721,7,7,'2019-08-21 15:10:50',92.413000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9722,7,7,'2019-08-21 15:10:50',93.329000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9723,7,7,'2019-08-21 15:10:50',94.312000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9724,7,7,'2019-08-21 15:10:50',94.636000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9725,7,7,'2019-08-21 15:10:50',95.261000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9726,7,7,'2019-08-21 15:10:50',95.816000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9727,7,7,'2019-08-21 15:10:50',96.026000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9728,7,7,'2019-08-21 15:10:50',96.875000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9729,7,7,'2019-08-21 15:10:50',97.857000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9730,7,7,'2019-08-21 15:10:50',98.229000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9731,7,7,'2019-08-21 15:10:50',98.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9732,7,7,'2019-08-21 15:10:50',99.655000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9733,7,7,'2019-08-21 15:10:50',100.571000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9734,7,7,'2019-08-21 15:10:50',101.521000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9735,7,7,'2019-08-21 15:10:50',102.436000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9736,7,7,'2019-08-21 15:10:50',103.302000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9737,7,7,'2019-08-21 15:10:50',104.101000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9738,7,7,'2019-08-21 15:10:50',104.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9739,7,7,'2019-08-21 15:10:50',104.983000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9740,7,7,'2019-08-21 15:10:50',105.356000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9741,7,7,'2019-08-21 15:10:50',105.982000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9742,7,7,'2019-08-21 15:10:50',106.931000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9743,7,7,'2019-08-21 15:10:50',107.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9744,7,7,'2019-08-21 15:10:50',108.862000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9745,7,7,'2019-08-21 15:10:50',109.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9746,7,7,'2019-08-21 15:10:50',109.678000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9747,7,7,'2019-08-21 15:10:50',110.610000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9748,7,7,'2019-08-21 15:10:50',110.909000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9749,7,7,'2019-08-21 15:10:50',111.609000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9750,7,7,'2019-08-21 15:10:50',112.592000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9751,7,7,'2019-08-21 15:10:50',113.507000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9752,7,7,'2019-08-21 15:10:50',114.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9753,7,7,'2019-08-21 15:10:50',114.614000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9754,7,7,'2019-08-21 15:10:50',115.288000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9755,7,7,'2019-08-21 15:10:50',115.634000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9756,7,7,'2019-08-21 15:10:50',116.088000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9757,7,7,'2019-08-21 15:10:50',117.070000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9758,7,7,'2019-08-21 15:10:50',117.380000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9759,7,7,'2019-08-21 15:10:50',117.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9760,7,7,'2019-08-21 15:10:50',118.269000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9761,7,7,'2019-08-21 15:10:50',118.802000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9762,7,7,'2019-08-21 15:10:50',119.700000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9763,7,7,'2019-08-21 15:10:50',120.550000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9764,7,7,'2019-08-21 15:10:50',121.382000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9765,7,7,'2019-08-21 15:10:50',122.197000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9766,7,7,'2019-08-21 15:10:50',122.600000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9767,7,7,'2019-08-21 15:10:50',123.163000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9768,7,7,'2019-08-21 15:10:50',124.129000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9769,7,7,'2019-08-21 15:10:50',124.928000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9770,7,7,'2019-08-21 15:10:50',125.274000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9771,7,7,'2019-08-21 15:10:50',125.744000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9772,7,7,'2019-08-21 15:10:50',126.743000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9773,7,7,'2019-08-21 15:10:50',127.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9774,7,7,'2019-08-21 15:10:50',127.970000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9775,7,7,'2019-08-21 15:10:50',128.541000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9776,7,7,'2019-08-21 15:10:50',129.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9777,7,7,'2019-08-21 15:10:50',129.696000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9778,7,7,'2019-08-21 15:10:50',130.272000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9779,7,7,'2019-08-21 15:10:50',131.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9780,7,7,'2019-08-21 15:10:50',132.087000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9781,7,7,'2019-08-21 15:10:50',133.069000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9782,7,7,'2019-08-21 15:10:50',134.052000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9783,7,7,'2019-08-21 15:10:50',134.900000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9784,7,7,'2019-08-21 15:10:50',135.732000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9785,7,7,'2019-08-21 15:10:50',136.665000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9786,7,7,'2019-08-21 15:10:50',136.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9787,7,7,'2019-08-21 15:10:50',137.531000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9788,7,7,'2019-08-21 15:10:50',137.884000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9789,7,7,'2019-08-21 15:10:50',138.479000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9790,7,7,'2019-08-21 15:10:50',139.412000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9791,7,7,'2019-08-21 15:10:50',139.792000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9792,7,7,'2019-08-21 15:10:50',140.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9793,7,7,'2019-08-21 15:10:50',141.377000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9794,7,7,'2019-08-21 15:10:50',142.259000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9795,7,7,'2019-08-21 15:10:50',143.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9796,7,7,'2019-08-21 15:10:50',143.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9797,7,7,'2019-08-21 15:10:50',144.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9798,7,7,'2019-08-21 15:10:50',144.823000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9799,7,7,'2019-08-21 15:10:50',145.755000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9800,7,7,'2019-08-21 15:10:50',146.091000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9801,7,7,'2019-08-21 15:10:50',146.638000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9802,7,7,'2019-08-21 15:10:50',147.470000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9803,7,7,'2019-08-21 15:10:50',148.336000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9804,7,7,'2019-08-21 15:10:50',148.615000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9805,7,7,'2019-08-21 15:10:50',149.102000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9806,7,7,'2019-08-21 15:10:50',150.001000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9807,7,7,'2019-08-21 15:10:50',150.966000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9808,7,7,'2019-08-21 15:10:50',151.932000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9809,7,7,'2019-08-21 15:10:50',152.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9810,7,7,'2019-08-21 15:10:50',152.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9811,7,7,'2019-08-21 15:10:50',153.764000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9812,7,7,'2019-08-21 15:10:50',154.157000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9813,7,7,'2019-08-21 15:10:50',154.695000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9814,7,7,'2019-08-21 15:10:50',155.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9815,7,7,'2019-08-21 15:10:50',155.752000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9816,7,7,'2019-08-21 15:10:50',156.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9817,7,7,'2019-08-21 15:10:50',156.671000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9818,7,7,'2019-08-21 15:10:50',157.143000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9819,7,7,'2019-08-21 15:10:50',158.108000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9820,7,7,'2019-08-21 15:10:50',158.957000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9821,7,7,'2019-08-21 15:10:50',159.923000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9822,7,7,'2019-08-21 15:10:50',160.922000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9823,7,7,'2019-08-21 15:10:50',161.254000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9824,7,7,'2019-08-21 15:10:50',161.838000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9825,7,7,'2019-08-21 15:10:50',162.653000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9826,7,7,'2019-08-21 15:10:50',163.419000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9827,7,7,'2019-08-21 15:10:50',164.202000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9828,7,7,'2019-08-21 15:10:50',164.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9829,7,7,'2019-08-21 15:10:50',165.101000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9830,7,7,'2019-08-21 15:10:50',165.967000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9831,7,7,'2019-08-21 15:10:50',166.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9832,7,7,'2019-08-21 15:10:50',167.180000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9833,7,7,'2019-08-21 15:10:50',167.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9834,7,7,'2019-08-21 15:10:50',168.730000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9835,7,7,'2019-08-21 15:10:50',169.118000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9836,7,7,'2019-08-21 15:10:50',169.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9837,7,7,'2019-08-21 15:10:50',170.429000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9838,7,7,'2019-08-21 15:10:50',171.194000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9839,7,7,'2019-08-21 15:10:50',171.530000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9840,7,7,'2019-08-21 15:10:50',171.993000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9841,7,7,'2019-08-21 15:10:50',172.500000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9842,7,7,'2019-08-21 15:10:50',172.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9843,7,7,'2019-08-21 15:10:50',173.908000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9844,7,7,'2019-08-21 15:10:50',174.807000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9845,7,7,'2019-08-21 15:10:50',175.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9846,7,7,'2019-08-21 15:10:50',176.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9847,7,7,'2019-08-21 15:10:50',177.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9848,7,7,'2019-08-21 15:10:50',177.810000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9849,7,7,'2019-08-21 15:10:50',178.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9850,7,7,'2019-08-21 15:10:50',179.285000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9851,7,7,'2019-08-21 15:10:50',179.586000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9852,7,7,'2019-08-21 15:10:50',180.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9853,7,7,'2019-08-21 15:10:50',181.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9854,7,7,'2019-08-21 15:10:50',181.982000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9855,7,7,'2019-08-21 15:10:50',182.403000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9856,7,7,'2019-08-21 15:10:50',182.798000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9857,7,7,'2019-08-21 15:10:50',183.764000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9858,7,7,'2019-08-21 15:10:50',184.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9859,7,7,'2019-08-21 15:10:50',185.346000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9860,7,7,'2019-08-21 15:10:50',185.623000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9861,7,7,'2019-08-21 15:10:50',186.178000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9862,7,7,'2019-08-21 15:10:50',187.077000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9863,7,7,'2019-08-21 15:10:50',187.859000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9864,7,7,'2019-08-21 15:10:50',188.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9865,7,7,'2019-08-21 15:10:50',189.065000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9866,7,7,'2019-08-21 15:10:50',189.624000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9867,7,7,'2019-08-21 15:10:50',189.903000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9868,7,7,'2019-08-21 15:10:50',190.590000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9869,7,7,'2019-08-21 15:10:50',191.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9870,7,7,'2019-08-21 15:10:50',192.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9871,7,7,'2019-08-21 15:10:50',192.629000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9872,7,7,'2019-08-21 15:10:50',193.187000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9873,7,7,'2019-08-21 15:10:50',193.487000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9874,7,7,'2019-08-21 15:10:50',193.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9875,7,7,'2019-08-21 15:10:50',194.769000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9876,7,7,'2019-08-21 15:10:50',195.617000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9877,7,7,'2019-08-21 15:10:50',196.616000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9878,7,7,'2019-08-21 15:10:50',197.516000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9879,7,7,'2019-08-21 15:10:50',198.447000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9880,7,7,'2019-08-21 15:10:50',199.446000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9881,7,7,'2019-08-21 15:10:50',199.776000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9882,7,7,'2019-08-21 15:10:50',200.412000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9883,7,7,'2019-08-21 15:10:50',201.229000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9884,7,7,'2019-08-21 15:10:50',201.553000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9885,7,7,'2019-08-21 15:10:50',202.094000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9886,7,7,'2019-08-21 15:10:50',202.441000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9887,7,7,'2019-08-21 15:10:50',203.076000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9888,7,7,'2019-08-21 15:10:50',203.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9889,7,7,'2019-08-21 15:10:50',204.075000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9890,7,7,'2019-08-21 15:10:50',204.857000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9891,7,7,'2019-08-21 15:10:50',205.840000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9892,7,7,'2019-08-21 15:10:50',206.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9893,7,7,'2019-08-21 15:10:50',207.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9894,7,7,'2019-08-21 15:10:50',208.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9895,7,7,'2019-08-21 15:10:50',208.554000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9896,7,7,'2019-08-21 15:10:50',209.419000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9897,7,7,'2019-08-21 15:10:50',210.185000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9898,7,7,'2019-08-21 15:10:50',211.101000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9899,7,7,'2019-08-21 15:10:50',211.386000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9900,7,7,'2019-08-21 15:10:50',212.000000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9901,7,7,'2019-08-21 15:10:50',212.865000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9902,7,7,'2019-08-21 15:10:50',213.162000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9903,7,7,'2019-08-21 15:10:50',213.631000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9904,7,7,'2019-08-21 15:10:50',214.580000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9905,7,7,'2019-08-21 15:10:50',215.562000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9906,7,7,'2019-08-21 15:10:50',216.395000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9907,7,7,'2019-08-21 15:10:50',216.736000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9908,7,7,'2019-08-21 15:10:50',217.360000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9909,7,7,'2019-08-21 15:10:50',218.359000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9910,7,7,'2019-08-21 15:10:50',219.342000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9911,7,7,'2019-08-21 15:10:50',219.664000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9912,7,7,'2019-08-21 15:10:50',220.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9913,7,7,'2019-08-21 15:10:50',220.794000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9914,7,7,'2019-08-21 15:10:50',221.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9915,7,7,'2019-08-21 15:10:50',221.938000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9916,7,7,'2019-08-21 15:10:50',222.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9917,7,7,'2019-08-21 15:10:50',223.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9918,7,7,'2019-08-21 15:10:50',224.369000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9919,7,7,'2019-08-21 15:10:50',225.352000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9920,7,7,'2019-08-21 15:10:50',226.167000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9921,7,7,'2019-08-21 15:10:50',226.983000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9922,7,7,'2019-08-21 15:10:50',227.315000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9923,7,7,'2019-08-21 15:10:50',227.882000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9924,7,7,'2019-08-21 15:10:50',228.153000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9925,7,7,'2019-08-21 15:10:50',228.682000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9926,7,7,'2019-08-21 15:10:50',229.597000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9927,7,7,'2019-08-21 15:10:50',229.870000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9928,7,7,'2019-08-21 15:10:50',230.413000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9929,7,7,'2019-08-21 15:10:50',231.212000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9930,7,7,'2019-08-21 15:10:50',232.145000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9931,7,7,'2019-08-21 15:10:50',233.127000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9932,7,7,'2019-08-21 15:10:50',233.434000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9933,7,7,'2019-08-21 15:10:50',233.959000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9934,7,7,'2019-08-21 15:10:50',234.908000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9935,7,7,'2019-08-21 15:10:50',235.220000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9936,7,7,'2019-08-21 15:10:50',235.891000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9937,7,7,'2019-08-21 15:10:50',236.889000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9938,7,7,'2019-08-21 15:10:50',237.169000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9939,7,7,'2019-08-21 15:10:50',237.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9940,7,7,'2019-08-21 15:10:50',238.620000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9941,7,7,'2019-08-21 15:10:50',239.403000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9942,7,7,'2019-08-21 15:10:50',240.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9943,7,7,'2019-08-21 15:10:50',241.168000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9944,7,7,'2019-08-21 15:10:50',241.499000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9945,7,7,'2019-08-21 15:10:50',242.083000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9946,7,7,'2019-08-21 15:10:50',242.327000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9947,7,7,'2019-08-21 15:10:50',242.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9948,7,7,'2019-08-21 15:10:50',243.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9949,7,7,'2019-08-21 15:10:50',244.598000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9950,7,7,'2019-08-21 15:10:50',245.580000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9951,7,7,'2019-08-21 15:10:50',246.346000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9952,7,7,'2019-08-21 15:10:50',247.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9953,7,7,'2019-08-21 15:10:50',247.617000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9954,7,7,'2019-08-21 15:10:50',248.210000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9955,7,7,'2019-08-21 15:10:50',248.455000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9956,7,7,'2019-08-21 15:10:50',249.109000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9957,7,7,'2019-08-21 15:10:50',249.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9958,7,7,'2019-08-21 15:10:50',250.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9959,7,7,'2019-08-21 15:10:50',251.150000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9960,7,7,'2019-08-21 15:10:50',251.673000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9961,7,7,'2019-08-21 15:10:50',252.639000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9962,7,7,'2019-08-21 15:10:50',253.454000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9963,7,7,'2019-08-21 15:10:50',254.271000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9964,7,7,'2019-08-21 15:10:50',254.553000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9965,7,7,'2019-08-21 15:10:50',255.086000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9966,7,7,'2019-08-21 15:10:50',256.019000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9967,7,7,'2019-08-21 15:10:50',256.329000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9968,7,7,'2019-08-21 15:10:50',256.983000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9969,7,7,'2019-08-21 15:10:50',257.800000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9970,7,7,'2019-08-21 15:10:50',258.682000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9971,7,7,'2019-08-21 15:10:50',259.024000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9972,7,7,'2019-08-21 15:10:50',259.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9973,7,7,'2019-08-21 15:10:50',260.630000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9974,7,7,'2019-08-21 15:10:50',261.579000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9975,7,7,'2019-08-21 15:10:50',262.378000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9976,7,7,'2019-08-21 15:10:50',263.160000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9977,7,7,'2019-08-21 15:10:50',263.467000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9978,7,7,'2019-08-21 15:10:50',264.159000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9979,7,7,'2019-08-21 15:10:50',264.566000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9980,7,7,'2019-08-21 15:10:50',264.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9981,7,7,'2019-08-21 15:10:50',265.874000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9982,7,7,'2019-08-21 15:10:50',266.673000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9983,7,7,'2019-08-21 15:10:50',267.672000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9984,7,7,'2019-08-21 15:10:50',267.969000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9985,7,7,'2019-08-21 15:10:50',268.455000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9986,7,7,'2019-08-21 15:10:50',269.237000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9987,7,7,'2019-08-21 15:10:50',270.103000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9988,7,7,'2019-08-21 15:10:50',270.452000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9989,7,7,'2019-08-21 15:10:50',270.869000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9990,7,7,'2019-08-21 15:10:50',271.651000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9991,7,7,'2019-08-21 15:10:50',272.550000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9992,7,7,'2019-08-21 15:10:50',273.316000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9993,7,7,'2019-08-21 15:10:50',273.632000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9994,7,7,'2019-08-21 15:10:50',274.182000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9995,7,7,'2019-08-21 15:10:50',274.561000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9996,7,7,'2019-08-21 15:10:50',275.048000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9997,7,7,'2019-08-21 15:10:50',275.930000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9998,7,7,'2019-08-21 15:10:50',276.912000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (9999,7,7,'2019-08-21 15:10:50',277.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10000,7,7,'2019-08-21 15:10:50',277.694000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10001,7,7,'2019-08-21 15:10:50',278.527000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10002,7,7,'2019-08-21 15:10:50',278.811000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10003,7,7,'2019-08-21 15:10:50',279.393000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10004,7,7,'2019-08-21 15:10:50',280.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10005,7,7,'2019-08-21 15:10:50',281.291000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10006,7,7,'2019-08-21 15:10:50',282.256000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10007,7,7,'2019-08-21 15:10:50',283.072000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10008,7,7,'2019-08-21 15:10:50',283.838000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10009,7,7,'2019-08-21 15:10:50',284.231000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10010,7,7,'2019-08-21 15:10:50',284.604000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10011,7,7,'2019-08-21 15:10:50',285.603000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10012,7,7,'2019-08-21 15:10:50',285.907000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10013,7,7,'2019-08-21 15:10:50',286.469000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10014,7,7,'2019-08-21 15:10:50',287.417000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10015,7,7,'2019-08-21 15:10:50',287.734000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10016,7,7,'2019-08-21 15:10:50',288.300000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10017,7,7,'2019-08-21 15:10:50',289.099000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10018,7,7,'2019-08-21 15:10:50',289.864000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10019,7,7,'2019-08-21 15:10:50',290.764000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10020,7,7,'2019-08-21 15:10:50',291.066000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10021,7,7,'2019-08-21 15:10:50',303.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10022,7,7,'2019-08-21 15:10:50',327.599000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10023,7,7,'2019-08-21 15:10:50',327.987000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10024,7,7,'2019-08-21 15:10:50',328.480000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10025,7,7,'2019-08-21 15:10:50',329.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10026,7,7,'2019-08-21 15:10:50',329.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10027,7,7,'2019-08-21 15:10:50',330.278000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10028,7,7,'2019-08-21 15:10:50',331.077000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10029,7,7,'2019-08-21 15:10:50',331.977000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10030,7,7,'2019-08-21 15:10:50',332.893000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10031,7,7,'2019-08-21 15:10:50',333.841000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10032,7,7,'2019-08-21 15:10:50',334.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10033,7,7,'2019-08-21 15:10:50',334.790000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10034,7,7,'2019-08-21 15:10:50',335.622000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10035,7,7,'2019-08-21 15:10:50',336.555000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10036,7,7,'2019-08-21 15:10:50',336.871000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10037,7,7,'2019-08-21 15:10:50',337.388000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10038,7,7,'2019-08-21 15:10:50',338.187000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10039,7,7,'2019-08-21 15:10:50',339.186000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10040,7,7,'2019-08-21 15:10:50',339.951000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10041,7,7,'2019-08-21 15:10:50',340.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10042,7,7,'2019-08-21 15:10:50',341.060000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10043,7,7,'2019-08-21 15:10:50',341.683000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10044,7,7,'2019-08-21 15:10:50',342.465000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10045,7,7,'2019-08-21 15:10:50',342.826000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10046,7,7,'2019-08-21 15:10:50',343.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10047,7,7,'2019-08-21 15:10:50',343.997000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10048,7,7,'2019-08-21 15:10:50',344.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10049,7,7,'2019-08-21 15:10:50',344.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10050,7,7,'2019-08-21 15:10:50',345.845000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10051,7,7,'2019-08-21 15:10:50',346.627000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10052,7,7,'2019-08-21 15:10:50',347.006000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10053,7,7,'2019-08-21 15:10:50',347.626000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10054,7,7,'2019-08-21 15:10:50',348.459000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10055,7,7,'2019-08-21 15:10:50',349.241000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10056,7,7,'2019-08-21 15:10:50',350.007000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10057,7,7,'2019-08-21 15:10:50',350.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10058,7,7,'2019-08-21 15:10:50',350.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10059,7,7,'2019-08-21 15:10:50',351.738000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10060,7,7,'2019-08-21 15:10:50',352.164000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10061,7,7,'2019-08-21 15:10:50',352.604000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10062,7,7,'2019-08-21 15:10:50',353.403000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10063,7,7,'2019-08-21 15:10:50',353.910000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10064,7,7,'2019-08-21 15:10:50',354.235000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10065,7,7,'2019-08-21 15:10:50',355.135000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10066,7,7,'2019-08-21 15:10:50',356.050000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10067,7,7,'2019-08-21 15:10:50',356.313000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10068,7,7,'2019-08-21 15:10:50',356.833000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10069,7,7,'2019-08-21 15:10:50',357.798000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10070,7,7,'2019-08-21 15:10:50',358.598000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10071,7,7,'2019-08-21 15:10:50',359.380000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10072,7,7,'2019-08-21 15:10:50',360.296000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10073,7,7,'2019-08-21 15:10:50',360.583000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10074,7,7,'2019-08-21 15:10:50',361.278000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10075,7,7,'2019-08-21 15:10:50',361.562000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10076,7,7,'2019-08-21 15:10:50',362.260000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10077,7,7,'2019-08-21 15:10:50',363.060000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10078,7,7,'2019-08-21 15:10:50',363.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10079,7,7,'2019-08-21 15:10:50',364.841000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10080,7,7,'2019-08-21 15:10:50',365.823000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10081,7,7,'2019-08-21 15:10:50',366.605000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10082,7,7,'2019-08-21 15:10:50',367.555000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10083,7,7,'2019-08-21 15:10:50',367.942000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10084,7,7,'2019-08-21 15:10:50',368.486000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10085,7,7,'2019-08-21 15:10:50',368.720000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10086,7,7,'2019-08-21 15:10:50',369.336000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10087,7,7,'2019-08-21 15:10:50',369.709000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10088,7,7,'2019-08-21 15:10:50',370.268000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10089,7,7,'2019-08-21 15:10:50',371.117000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10090,7,7,'2019-08-21 15:10:50',372.033000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10091,7,7,'2019-08-21 15:10:50',372.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10092,7,7,'2019-08-21 15:10:50',373.343000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10093,7,7,'2019-08-21 15:10:50',373.881000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10094,7,7,'2019-08-21 15:10:50',374.863000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10095,7,7,'2019-08-21 15:10:50',375.729000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10096,7,7,'2019-08-21 15:10:50',376.711000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10097,7,7,'2019-08-21 15:10:50',377.693000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10098,7,7,'2019-08-21 15:10:50',377.977000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10099,7,7,'2019-08-21 15:10:50',378.692000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10100,7,7,'2019-08-21 15:10:50',379.087000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10101,7,7,'2019-08-21 15:10:50',379.475000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10102,7,7,'2019-08-21 15:10:50',380.341000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10103,7,7,'2019-08-21 15:10:50',381.355000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10104,7,7,'2019-08-21 15:10:50',382.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10105,7,7,'2019-08-21 15:10:50',383.037000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10106,7,7,'2019-08-21 15:10:50',383.316000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10107,7,7,'2019-08-21 15:10:50',384.020000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10108,7,7,'2019-08-21 15:10:50',384.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10109,7,7,'2019-08-21 15:10:50',385.164000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10110,7,7,'2019-08-21 15:10:50',385.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10111,7,7,'2019-08-21 15:10:50',386.103000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10112,7,7,'2019-08-21 15:10:50',386.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10113,7,7,'2019-08-21 15:10:50',387.549000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10114,7,7,'2019-08-21 15:10:50',387.880000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10115,7,7,'2019-08-21 15:10:50',388.515000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10116,7,7,'2019-08-21 15:10:50',389.330000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10117,7,7,'2019-08-21 15:10:50',390.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10118,7,7,'2019-08-21 15:10:50',390.962000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10119,7,7,'2019-08-21 15:10:50',391.828000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10120,7,7,'2019-08-21 15:10:50',392.129000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10121,7,7,'2019-08-21 15:10:50',392.776000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10122,7,7,'2019-08-21 15:10:50',393.742000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10123,7,7,'2019-08-21 15:10:50',394.658000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10124,7,7,'2019-08-21 15:10:50',395.641000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10125,7,7,'2019-08-21 15:10:50',395.936000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10126,7,7,'2019-08-21 15:10:50',396.522000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10127,7,7,'2019-08-21 15:10:50',397.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10128,7,7,'2019-08-21 15:10:50',398.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10129,7,7,'2019-08-21 15:10:50',398.802000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10130,7,7,'2019-08-21 15:10:50',399.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10131,7,7,'2019-08-21 15:10:50',400.136000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10132,7,7,'2019-08-21 15:10:50',401.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10133,7,7,'2019-08-21 15:10:50',401.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10134,7,7,'2019-08-21 15:10:50',401.767000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10135,7,7,'2019-08-21 15:10:50',402.732000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10136,7,7,'2019-08-21 15:10:50',403.072000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10137,7,7,'2019-08-21 15:10:50',403.715000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10138,7,7,'2019-08-21 15:10:50',404.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10139,7,7,'2019-08-21 15:10:50',405.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10140,7,7,'2019-08-21 15:10:50',405.999000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10141,7,7,'2019-08-21 15:10:50',406.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10142,7,7,'2019-08-21 15:10:50',407.277000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10143,7,7,'2019-08-21 15:10:50',408.177000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10144,7,7,'2019-08-21 15:10:50',409.176000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10145,7,7,'2019-08-21 15:10:50',409.482000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10146,7,7,'2019-08-21 15:10:50',410.175000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10147,7,7,'2019-08-21 15:10:50',411.057000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10148,7,7,'2019-08-21 15:10:50',411.410000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10149,7,7,'2019-08-21 15:10:50',411.873000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10150,7,7,'2019-08-21 15:10:50',412.771000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10151,7,7,'2019-08-21 15:10:50',413.076000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10152,7,7,'2019-08-21 15:10:50',413.704000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10153,7,7,'2019-08-21 15:10:50',414.536000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10154,7,7,'2019-08-21 15:10:50',415.419000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10155,7,7,'2019-08-21 15:10:50',416.201000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10156,7,7,'2019-08-21 15:10:50',417.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10157,7,7,'2019-08-21 15:10:50',417.376000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10158,7,7,'2019-08-21 15:10:50',417.883000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10159,7,7,'2019-08-21 15:10:50',418.665000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10160,7,7,'2019-08-21 15:10:50',419.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10161,7,7,'2019-08-21 15:10:50',420.530000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10162,7,7,'2019-08-21 15:10:50',420.809000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10163,7,7,'2019-08-21 15:10:50',421.346000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10164,7,7,'2019-08-21 15:10:50',421.646000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10165,7,7,'2019-08-21 15:10:50',422.211000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10166,7,7,'2019-08-21 15:10:50',423.110000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10167,7,7,'2019-08-21 15:10:50',423.413000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10168,7,7,'2019-08-21 15:10:50',423.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10169,7,7,'2019-08-21 15:10:50',424.925000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10170,7,7,'2019-08-21 15:10:50',425.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10171,7,7,'2019-08-21 15:10:50',425.841000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10172,7,7,'2019-08-21 15:10:50',426.840000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10173,7,7,'2019-08-21 15:10:50',427.855000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10174,7,7,'2019-08-21 15:10:50',428.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10175,7,7,'2019-08-21 15:10:50',429.486000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10176,7,7,'2019-08-21 15:10:50',429.833000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10177,7,7,'2019-08-21 15:10:50',430.253000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10178,7,7,'2019-08-21 15:10:50',431.251000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10179,7,7,'2019-08-21 15:10:50',432.167000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10180,7,7,'2019-08-21 15:10:50',432.982000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10181,7,7,'2019-08-21 15:10:50',433.437000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10182,7,7,'2019-08-21 15:10:50',433.915000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10183,7,7,'2019-08-21 15:10:50',434.305000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10184,7,7,'2019-08-21 15:10:50',434.897000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10185,7,7,'2019-08-21 15:10:50',435.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10186,7,7,'2019-08-21 15:10:50',435.847000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10187,7,7,'2019-08-21 15:10:50',436.052000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10188,7,7,'2019-08-21 15:10:50',436.829000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10189,7,7,'2019-08-21 15:10:50',437.827000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10190,7,7,'2019-08-21 15:10:50',438.760000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10191,7,7,'2019-08-21 15:10:50',439.742000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10192,7,7,'2019-08-21 15:10:50',440.059000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10193,7,7,'2019-08-21 15:10:50',440.741000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10194,7,7,'2019-08-21 15:10:50',441.606000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10195,7,7,'2019-08-21 15:10:50',442.390000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10196,7,7,'2019-08-21 15:10:50',443.305000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10197,7,7,'2019-08-21 15:10:50',443.612000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10198,7,7,'2019-08-21 15:10:50',444.121000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10199,7,7,'2019-08-21 15:10:50',444.920000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10200,7,7,'2019-08-21 15:10:50',445.571000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10201,7,7,'2019-08-21 15:10:50',445.819000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10202,7,7,'2019-08-21 15:10:50',446.668000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10203,7,7,'2019-08-21 15:10:50',447.551000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10204,7,7,'2019-08-21 15:10:50',448.449000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10205,7,7,'2019-08-21 15:10:50',448.721000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10206,7,7,'2019-08-21 15:10:50',449.248000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10207,7,7,'2019-08-21 15:10:50',450.230000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10208,7,7,'2019-08-21 15:10:50',451.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10209,7,7,'2019-08-21 15:10:50',451.995000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10210,7,7,'2019-08-21 15:10:50',452.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10211,7,7,'2019-08-21 15:10:50',452.778000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10212,7,7,'2019-08-21 15:10:50',453.627000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10213,7,7,'2019-08-21 15:10:50',454.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10214,7,7,'2019-08-21 15:10:50',454.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10215,7,7,'2019-08-21 15:10:50',455.192000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10216,7,7,'2019-08-21 15:10:50',456.124000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10217,7,7,'2019-08-21 15:10:50',456.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10218,7,7,'2019-08-21 15:10:50',457.756000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10219,7,7,'2019-08-21 15:10:50',458.078000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10220,7,7,'2019-08-21 15:10:50',458.738000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10221,7,7,'2019-08-21 15:10:50',459.088000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10222,7,7,'2019-08-21 15:10:50',459.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10223,7,7,'2019-08-21 15:10:50',460.520000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10224,7,7,'2019-08-21 15:10:50',460.824000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10225,7,7,'2019-08-21 15:10:50',461.318000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10226,7,7,'2019-08-21 15:10:50',461.702000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10227,7,7,'2019-08-21 15:10:50',462.317000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10228,7,7,'2019-08-21 15:10:50',463.200000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10229,7,7,'2019-08-21 15:10:50',464.183000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10230,7,7,'2019-08-21 15:10:50',465.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10231,7,7,'2019-08-21 15:10:50',466.080000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10232,7,7,'2019-08-21 15:10:50',467.079000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10233,7,7,'2019-08-21 15:10:50',468.078000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10234,7,7,'2019-08-21 15:10:50',468.927000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10235,7,7,'2019-08-21 15:10:50',469.264000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10236,7,7,'2019-08-21 15:10:50',469.810000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10237,7,7,'2019-08-21 15:10:50',470.081000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10238,7,7,'2019-08-21 15:10:50',470.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10239,7,7,'2019-08-21 15:10:50',471.674000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10240,7,7,'2019-08-21 15:10:50',472.640000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10241,7,7,'2019-08-21 15:10:50',472.948000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10242,7,7,'2019-08-21 15:10:50',473.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10243,7,7,'2019-08-21 15:10:50',474.554000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10244,7,7,'2019-08-21 15:10:50',475.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10245,7,7,'2019-08-21 15:10:50',476.369000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10246,7,7,'2019-08-21 15:10:50',476.673000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10247,7,7,'2019-08-21 15:10:50',477.251000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10248,7,7,'2019-08-21 15:10:50',478.051000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10249,7,7,'2019-08-21 15:10:50',479.016000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10250,7,7,'2019-08-21 15:10:50',479.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10251,7,7,'2019-08-21 15:10:50',480.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10252,7,7,'2019-08-21 15:10:50',480.980000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10253,7,7,'2019-08-21 15:10:50',481.428000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10254,7,7,'2019-08-21 15:10:50',481.796000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10255,7,7,'2019-08-21 15:10:50',482.729000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10256,7,7,'2019-08-21 15:10:50',483.494000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10257,7,7,'2019-08-21 15:10:50',483.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10258,7,7,'2019-08-21 15:10:50',484.377000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10259,7,7,'2019-08-21 15:10:50',484.749000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10260,7,7,'2019-08-21 15:10:50',485.326000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10261,7,7,'2019-08-21 15:10:50',486.142000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10262,7,7,'2019-08-21 15:10:50',487.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10263,7,7,'2019-08-21 15:10:50',487.873000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10264,7,7,'2019-08-21 15:10:50',488.190000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10265,7,7,'2019-08-21 15:10:50',488.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10266,7,7,'2019-08-21 15:10:50',489.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10267,7,7,'2019-08-21 15:10:50',490.453000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10268,7,7,'2019-08-21 15:10:50',491.253000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10269,7,7,'2019-08-21 15:10:50',491.583000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10270,7,7,'2019-08-21 15:10:50',492.085000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10271,7,7,'2019-08-21 15:10:50',492.884000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10272,7,7,'2019-08-21 15:10:50',493.783000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10273,7,7,'2019-08-21 15:10:50',494.732000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10274,7,7,'2019-08-21 15:10:50',495.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10275,7,7,'2019-08-21 15:10:50',495.631000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10276,7,7,'2019-08-21 15:10:50',496.514000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10277,7,7,'2019-08-21 15:10:50',496.902000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10278,7,7,'2019-08-21 15:10:50',497.479000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10279,7,7,'2019-08-21 15:10:50',498.395000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10280,7,7,'2019-08-21 15:10:50',498.911000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10281,7,7,'2019-08-21 15:10:50',499.294000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10282,7,7,'2019-08-21 15:10:50',499.598000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10283,7,7,'2019-08-21 15:10:50',500.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10284,7,7,'2019-08-21 15:10:50',501.075000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10285,7,7,'2019-08-21 15:10:50',502.008000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10286,7,7,'2019-08-21 15:10:50',502.956000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10287,7,7,'2019-08-21 15:10:50',503.739000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10288,7,7,'2019-08-21 15:10:50',504.029000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10289,7,7,'2019-08-21 15:10:50',504.505000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10290,7,7,'2019-08-21 15:10:50',504.807000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10291,7,7,'2019-08-21 15:10:50',505.387000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10292,7,7,'2019-08-21 15:10:50',506.187000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10293,7,7,'2019-08-21 15:10:50',507.169000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10294,7,7,'2019-08-21 15:10:50',508.117000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10295,7,7,'2019-08-21 15:10:50',509.066000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10296,7,7,'2019-08-21 15:10:50',509.916000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10297,7,7,'2019-08-21 15:10:50',510.914000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10298,7,7,'2019-08-21 15:10:50',511.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10299,7,7,'2019-08-21 15:10:50',512.696000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10300,7,7,'2019-08-21 15:10:50',512.942000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10301,7,7,'2019-08-21 15:10:50',513.528000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10302,7,7,'2019-08-21 15:10:50',513.821000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10303,7,7,'2019-08-21 15:10:50',514.494000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10304,7,7,'2019-08-21 15:10:50',514.811000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10305,7,7,'2019-08-21 15:10:50',515.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10306,7,7,'2019-08-21 15:10:50',516.292000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10307,7,7,'2019-08-21 15:10:50',517.191000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10308,7,7,'2019-08-21 15:10:50',517.556000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10309,7,7,'2019-08-21 15:10:50',518.206000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10310,7,7,'2019-08-21 15:10:50',519.056000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10311,7,7,'2019-08-21 15:10:50',520.005000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10312,7,7,'2019-08-21 15:10:50',520.342000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10313,7,7,'2019-08-21 15:10:50',520.970000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10314,7,7,'2019-08-21 15:10:50',521.869000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10315,7,7,'2019-08-21 15:10:50',522.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10316,7,7,'2019-08-21 15:10:50',522.835000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10317,7,7,'2019-08-21 15:10:50',523.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10318,7,7,'2019-08-21 15:10:50',524.633000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10319,7,7,'2019-08-21 15:10:50',525.499000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10320,7,7,'2019-08-21 15:10:50',526.331000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10321,7,7,'2019-08-21 15:10:50',527.247000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10322,7,7,'2019-08-21 15:10:50',528.212000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10323,7,7,'2019-08-21 15:10:50',528.620000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10324,7,7,'2019-08-21 15:10:50',529.111000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10325,7,7,'2019-08-21 15:10:50',529.447000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10326,7,7,'2019-08-21 15:10:50',530.094000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10327,7,7,'2019-08-21 15:10:50',530.876000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10328,7,7,'2019-08-21 15:10:50',531.759000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10329,7,7,'2019-08-21 15:10:50',532.143000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10330,7,7,'2019-08-21 15:10:50',532.607000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10331,7,7,'2019-08-21 15:10:50',533.490000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10332,7,7,'2019-08-21 15:10:50',533.788000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10333,7,7,'2019-08-21 15:10:50',534.472000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10334,7,7,'2019-08-21 15:10:50',535.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10335,7,7,'2019-08-21 15:10:50',536.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10336,7,7,'2019-08-21 15:10:50',536.686000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10337,7,7,'2019-08-21 15:10:50',537.202000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10338,7,7,'2019-08-21 15:10:50',538.068000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10339,7,7,'2019-08-21 15:10:50',538.884000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10340,7,7,'2019-08-21 15:10:50',539.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10341,7,7,'2019-08-21 15:10:50',540.532000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10342,7,7,'2019-08-21 15:10:50',540.773000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10343,7,7,'2019-08-21 15:10:50',541.515000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10344,7,7,'2019-08-21 15:10:50',542.297000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10345,7,7,'2019-08-21 15:10:50',543.229000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10346,7,7,'2019-08-21 15:10:50',544.111000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10347,7,7,'2019-08-21 15:10:50',544.397000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10348,7,7,'2019-08-21 15:10:50',545.027000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10349,7,7,'2019-08-21 15:10:50',545.487000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10350,7,7,'2019-08-21 15:10:50',545.977000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10351,7,7,'2019-08-21 15:10:50',546.925000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10352,7,7,'2019-08-21 15:10:50',547.708000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10353,7,7,'2019-08-21 15:10:50',548.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10354,7,7,'2019-08-21 15:10:50',548.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10355,7,7,'2019-08-21 15:10:50',549.456000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10356,7,7,'2019-08-21 15:10:50',550.455000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10357,7,7,'2019-08-21 15:10:50',550.737000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10358,7,7,'2019-08-21 15:10:50',551.370000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10359,7,7,'2019-08-21 15:10:50',552.270000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10360,7,7,'2019-08-21 15:10:50',552.614000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10361,7,7,'2019-08-21 15:10:50',553.235000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10362,7,7,'2019-08-21 15:10:50',554.200000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10363,7,7,'2019-08-21 15:10:50',554.983000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10364,7,7,'2019-08-21 15:10:50',555.330000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10365,7,7,'2019-08-21 15:10:50',555.832000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10366,7,7,'2019-08-21 15:10:50',556.781000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10367,7,7,'2019-08-21 15:10:50',557.713000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10368,7,7,'2019-08-21 15:10:50',558.086000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10369,7,7,'2019-08-21 15:10:50',558.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10370,7,7,'2019-08-21 15:10:50',558.853000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10371,7,7,'2019-08-21 15:10:50',559.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10372,7,7,'2019-08-21 15:10:50',560.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10373,7,7,'2019-08-21 15:10:50',561.243000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10374,7,7,'2019-08-21 15:10:50',562.009000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10375,7,7,'2019-08-21 15:10:50',562.975000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10376,7,7,'2019-08-21 15:10:50',563.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10377,7,7,'2019-08-21 15:10:50',564.243000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10378,7,7,'2019-08-21 15:10:50',564.822000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10379,7,7,'2019-08-21 15:10:50',565.755000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10380,7,7,'2019-08-21 15:10:50',566.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10381,7,7,'2019-08-21 15:10:50',566.868000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10382,7,7,'2019-08-21 15:10:50',567.319000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10383,7,7,'2019-08-21 15:10:50',568.152000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10384,7,7,'2019-08-21 15:10:50',569.067000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10385,7,7,'2019-08-21 15:10:50',570.066000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10386,7,7,'2019-08-21 15:10:50',570.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10387,7,7,'2019-08-21 15:10:50',571.209000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10388,7,7,'2019-08-21 15:10:50',571.748000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10389,7,7,'2019-08-21 15:10:50',572.530000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10390,7,7,'2019-08-21 15:10:50',572.844000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10391,7,7,'2019-08-21 15:10:50',573.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10392,7,7,'2019-08-21 15:10:50',573.863000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10393,7,7,'2019-08-21 15:10:50',574.412000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10394,7,7,'2019-08-21 15:10:50',575.178000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10395,7,7,'2019-08-21 15:10:50',575.960000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10396,7,7,'2019-08-21 15:10:50',576.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10397,7,7,'2019-08-21 15:10:50',577.215000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10398,7,7,'2019-08-21 15:10:50',577.774000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10399,7,7,'2019-08-21 15:10:50',578.757000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10400,7,7,'2019-08-21 15:10:50',579.557000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10401,7,7,'2019-08-21 15:10:50',580.472000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10402,7,7,'2019-08-21 15:10:50',581.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10403,7,7,'2019-08-21 15:10:50',582.137000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10404,7,7,'2019-08-21 15:10:50',582.444000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10405,7,7,'2019-08-21 15:10:50',583.053000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10406,7,7,'2019-08-21 15:10:50',583.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10407,7,7,'2019-08-21 15:10:50',583.835000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10408,7,7,'2019-08-21 15:10:50',584.601000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10409,7,7,'2019-08-21 15:10:50',585.550000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10410,7,7,'2019-08-21 15:10:50',585.927000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10411,7,7,'2019-08-21 15:10:50',586.432000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10412,7,7,'2019-08-21 15:10:50',586.814000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10413,7,7,'2019-08-21 15:10:50',587.265000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10414,7,7,'2019-08-21 15:10:50',588.097000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10415,7,7,'2019-08-21 15:10:50',588.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10416,7,7,'2019-08-21 15:10:50',589.845000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10417,7,7,'2019-08-21 15:10:50',590.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10418,7,7,'2019-08-21 15:10:50',590.627000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10419,7,7,'2019-08-21 15:10:50',591.427000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10420,7,7,'2019-08-21 15:10:50',592.259000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10421,7,7,'2019-08-21 15:10:50',593.191000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10422,7,7,'2019-08-21 15:10:50',593.478000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10423,7,7,'2019-08-21 15:10:50',605.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10424,7,7,'2019-08-21 15:10:50',629.394000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10425,7,7,'2019-08-21 15:10:50',630.358000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10426,7,7,'2019-08-21 15:10:50',631.125000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10427,7,7,'2019-08-21 15:10:50',631.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10428,7,7,'2019-08-21 15:10:50',631.924000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10429,7,7,'2019-08-21 15:10:50',632.148000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10430,7,7,'2019-08-21 15:10:50',632.839000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10431,7,7,'2019-08-21 15:10:50',633.821000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10432,7,7,'2019-08-21 15:10:50',634.721000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10433,7,7,'2019-08-21 15:10:50',635.086000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10434,7,7,'2019-08-21 15:10:50',635.586000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10435,7,7,'2019-08-21 15:10:50',636.452000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10436,7,7,'2019-08-21 15:10:50',637.418000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10437,7,7,'2019-08-21 15:10:50',638.200000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10438,7,7,'2019-08-21 15:10:50',639.100000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10439,7,7,'2019-08-21 15:10:50',639.416000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10440,7,7,'2019-08-21 15:10:50',639.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10441,7,7,'2019-08-21 15:10:50',640.446000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10442,7,7,'2019-08-21 15:10:50',640.664000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10443,7,7,'2019-08-21 15:10:50',641.001000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10444,7,7,'2019-08-21 15:10:50',641.463000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10445,7,7,'2019-08-21 15:10:50',642.445000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10446,7,7,'2019-08-21 15:10:50',643.211000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10447,7,7,'2019-08-21 15:10:50',644.077000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10448,7,7,'2019-08-21 15:10:50',644.859000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10449,7,7,'2019-08-21 15:10:50',645.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10450,7,7,'2019-08-21 15:10:50',645.968000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10451,7,7,'2019-08-21 15:10:50',646.458000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10452,7,7,'2019-08-21 15:10:50',647.273000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10453,7,7,'2019-08-21 15:10:50',647.573000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10454,7,7,'2019-08-21 15:10:50',648.140000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10455,7,7,'2019-08-21 15:10:50',648.922000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10456,7,7,'2019-08-21 15:10:50',649.888000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10457,7,7,'2019-08-21 15:10:50',650.269000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10458,7,7,'2019-08-21 15:10:50',650.770000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10459,7,7,'2019-08-21 15:10:50',651.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10460,7,7,'2019-08-21 15:10:50',652.401000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10461,7,7,'2019-08-21 15:10:50',653.334000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10462,7,7,'2019-08-21 15:10:50',654.166000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10463,7,7,'2019-08-21 15:10:50',654.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10464,7,7,'2019-08-21 15:10:50',655.099000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10465,7,7,'2019-08-21 15:10:50',655.427000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10466,7,7,'2019-08-21 15:10:50',655.931000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10467,7,7,'2019-08-21 15:10:50',656.896000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10468,7,7,'2019-08-21 15:10:50',657.829000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10469,7,7,'2019-08-21 15:10:50',658.678000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10470,7,7,'2019-08-21 15:10:50',659.610000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10471,7,7,'2019-08-21 15:10:50',659.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10472,7,7,'2019-08-21 15:10:50',660.559000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10473,7,7,'2019-08-21 15:10:50',661.441000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10474,7,7,'2019-08-21 15:10:50',662.440000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10475,7,7,'2019-08-21 15:10:50',662.695000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10476,7,7,'2019-08-21 15:10:50',663.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10477,7,7,'2019-08-21 15:10:50',663.734000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10478,7,7,'2019-08-21 15:10:50',664.354000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10479,7,7,'2019-08-21 15:10:50',665.254000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10480,7,7,'2019-08-21 15:10:50',666.220000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10481,7,7,'2019-08-21 15:10:50',667.085000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10482,7,7,'2019-08-21 15:10:50',668.034000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10483,7,7,'2019-08-21 15:10:50',668.378000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10484,7,7,'2019-08-21 15:10:50',668.800000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10485,7,7,'2019-08-21 15:10:50',669.146000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10486,7,7,'2019-08-21 15:10:50',669.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10487,7,7,'2019-08-21 15:10:50',670.481000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10488,7,7,'2019-08-21 15:10:50',671.431000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10489,7,7,'2019-08-21 15:10:50',672.246000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10490,7,7,'2019-08-21 15:10:50',673.229000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10491,7,7,'2019-08-21 15:10:50',674.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10492,7,7,'2019-08-21 15:10:50',674.525000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10493,7,7,'2019-08-21 15:10:50',675.160000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10494,7,7,'2019-08-21 15:10:50',675.454000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10495,7,7,'2019-08-21 15:10:50',676.025000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10496,7,7,'2019-08-21 15:10:50',676.941000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10497,7,7,'2019-08-21 15:10:50',677.724000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10498,7,7,'2019-08-21 15:10:50',678.089000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10499,7,7,'2019-08-21 15:10:50',678.706000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10500,7,7,'2019-08-21 15:10:50',679.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10501,7,7,'2019-08-21 15:10:50',679.937000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10502,7,7,'2019-08-21 15:10:50',680.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10503,7,7,'2019-08-21 15:10:50',681.286000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10504,7,7,'2019-08-21 15:10:50',682.252000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10505,7,7,'2019-08-21 15:10:50',683.135000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10506,7,7,'2019-08-21 15:10:50',683.429000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10507,7,7,'2019-08-21 15:10:50',684.100000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10508,7,7,'2019-08-21 15:10:50',685.016000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10509,7,7,'2019-08-21 15:10:50',685.337000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10510,7,7,'2019-08-21 15:10:50',685.848000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10511,7,7,'2019-08-21 15:10:50',686.614000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10512,7,7,'2019-08-21 15:10:50',687.380000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10513,7,7,'2019-08-21 15:10:50',688.245000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10514,7,7,'2019-08-21 15:10:50',688.598000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10515,7,7,'2019-08-21 15:10:50',689.161000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10516,7,7,'2019-08-21 15:10:50',690.160000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10517,7,7,'2019-08-21 15:10:50',690.926000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10518,7,7,'2019-08-21 15:10:50',691.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10519,7,7,'2019-08-21 15:10:50',692.020000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10520,7,7,'2019-08-21 15:10:50',692.558000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10521,7,7,'2019-08-21 15:10:50',692.999000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10522,7,7,'2019-08-21 15:10:50',693.356000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10523,7,7,'2019-08-21 15:10:50',694.289000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10524,7,7,'2019-08-21 15:10:50',695.271000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10525,7,7,'2019-08-21 15:10:50',696.236000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10526,7,7,'2019-08-21 15:10:50',696.521000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10527,7,7,'2019-08-21 15:10:50',697.219000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10528,7,7,'2019-08-21 15:10:50',698.118000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10529,7,7,'2019-08-21 15:10:50',698.399000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10530,7,7,'2019-08-21 15:10:50',698.917000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10531,7,7,'2019-08-21 15:10:50',699.866000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10532,7,7,'2019-08-21 15:10:50',700.731000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10533,7,7,'2019-08-21 15:10:50',701.531000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10534,7,7,'2019-08-21 15:10:50',702.313000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10535,7,7,'2019-08-21 15:10:50',702.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10536,7,7,'2019-08-21 15:10:50',703.129000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10537,7,7,'2019-08-21 15:10:50',703.618000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10538,7,7,'2019-08-21 15:10:50',703.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10539,7,7,'2019-08-21 15:10:50',704.794000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10540,7,7,'2019-08-21 15:10:50',705.693000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10541,7,7,'2019-08-21 15:10:50',705.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10542,7,7,'2019-08-21 15:10:50',706.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10543,7,7,'2019-08-21 15:10:50',707.508000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10544,7,7,'2019-08-21 15:10:50',708.356000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10545,7,7,'2019-08-21 15:10:50',708.646000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10546,7,7,'2019-08-21 15:10:50',709.140000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10547,7,7,'2019-08-21 15:10:50',710.021000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10548,7,7,'2019-08-21 15:10:50',710.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10549,7,7,'2019-08-21 15:10:50',710.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10550,7,7,'2019-08-21 15:10:50',711.720000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10551,7,7,'2019-08-21 15:10:50',712.502000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10552,7,7,'2019-08-21 15:10:50',713.302000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10553,7,7,'2019-08-21 15:10:50',713.622000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10554,7,7,'2019-08-21 15:10:50',714.117000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10555,7,7,'2019-08-21 15:10:50',714.949000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10556,7,7,'2019-08-21 15:10:50',715.932000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10557,7,7,'2019-08-21 15:10:50',716.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10558,7,7,'2019-08-21 15:10:50',717.125000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10559,7,7,'2019-08-21 15:10:50',717.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10560,7,7,'2019-08-21 15:10:50',718.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10561,7,7,'2019-08-21 15:10:50',719.578000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10562,7,7,'2019-08-21 15:10:50',719.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10563,7,7,'2019-08-21 15:10:50',720.427000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10564,7,7,'2019-08-21 15:10:50',721.409000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10565,7,7,'2019-08-21 15:10:50',721.769000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10566,7,7,'2019-08-21 15:10:50',722.325000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10567,7,7,'2019-08-21 15:10:50',723.124000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10568,7,7,'2019-08-21 15:10:50',724.057000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10569,7,7,'2019-08-21 15:10:50',724.822000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10570,7,7,'2019-08-21 15:10:50',725.821000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10571,7,7,'2019-08-21 15:10:50',726.804000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10572,7,7,'2019-08-21 15:10:50',727.108000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10573,7,7,'2019-08-21 15:10:50',727.786000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10574,7,7,'2019-08-21 15:10:50',728.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10575,7,7,'2019-08-21 15:10:50',728.885000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10576,7,7,'2019-08-21 15:10:50',729.500000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10577,7,7,'2019-08-21 15:10:50',729.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10578,7,7,'2019-08-21 15:10:50',730.267000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10579,7,7,'2019-08-21 15:10:50',731.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10580,7,7,'2019-08-21 15:10:50',731.429000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10581,7,7,'2019-08-21 15:10:50',731.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10582,7,7,'2019-08-21 15:10:50',732.730000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10583,7,7,'2019-08-21 15:10:50',733.696000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10584,7,7,'2019-08-21 15:10:50',734.661000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10585,7,7,'2019-08-21 15:10:50',735.561000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10586,7,7,'2019-08-21 15:10:50',735.870000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10587,7,7,'2019-08-21 15:10:50',736.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10588,7,7,'2019-08-21 15:10:50',737.275000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10589,7,7,'2019-08-21 15:10:50',738.174000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10590,7,7,'2019-08-21 15:10:50',738.524000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10591,7,7,'2019-08-21 15:10:50',739.173000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10592,7,7,'2019-08-21 15:10:50',739.956000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10593,7,7,'2019-08-21 15:10:50',740.904000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10594,7,7,'2019-08-21 15:10:50',741.220000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10595,7,7,'2019-08-21 15:10:50',741.771000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10596,7,7,'2019-08-21 15:10:50',742.586000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10597,7,7,'2019-08-21 15:10:50',743.568000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10598,7,7,'2019-08-21 15:10:50',744.501000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10599,7,7,'2019-08-21 15:10:50',744.823000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10600,7,7,'2019-08-21 15:10:50',745.500000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10601,7,7,'2019-08-21 15:10:50',746.349000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10602,7,7,'2019-08-21 15:10:50',747.147000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10603,7,7,'2019-08-21 15:10:50',747.488000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10604,7,7,'2019-08-21 15:10:50',747.931000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10605,7,7,'2019-08-21 15:10:50',748.912000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10606,7,7,'2019-08-21 15:10:50',749.285000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10607,7,7,'2019-08-21 15:10:50',749.679000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10608,7,7,'2019-08-21 15:10:50',750.444000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10609,7,7,'2019-08-21 15:10:50',751.443000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10610,7,7,'2019-08-21 15:10:50',752.226000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10611,7,7,'2019-08-21 15:10:50',753.208000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10612,7,7,'2019-08-21 15:10:50',753.974000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10613,7,7,'2019-08-21 15:10:50',754.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10614,7,7,'2019-08-21 15:10:50',754.956000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10615,7,7,'2019-08-21 15:10:50',755.281000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10616,7,7,'2019-08-21 15:10:50',755.972000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10617,7,7,'2019-08-21 15:10:50',756.804000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10618,7,7,'2019-08-21 15:10:50',757.703000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10619,7,7,'2019-08-21 15:10:50',758.469000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10620,7,7,'2019-08-21 15:10:50',758.895000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10621,7,7,'2019-08-21 15:10:50',759.385000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10622,7,7,'2019-08-21 15:10:50',759.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10623,7,7,'2019-08-21 15:10:50',760.316000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10624,7,7,'2019-08-21 15:10:50',761.232000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10625,7,7,'2019-08-21 15:10:50',761.580000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10626,7,7,'2019-08-21 15:10:50',762.031000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10627,7,7,'2019-08-21 15:10:50',762.964000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10628,7,7,'2019-08-21 15:10:50',763.779000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10629,7,7,'2019-08-21 15:10:50',764.596000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10630,7,7,'2019-08-21 15:10:50',764.870000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10631,7,7,'2019-08-21 15:10:50',765.378000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10632,7,7,'2019-08-21 15:10:50',766.344000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10633,7,7,'2019-08-21 15:10:50',767.126000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10634,7,7,'2019-08-21 15:10:50',767.992000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10635,7,7,'2019-08-21 15:10:50',768.303000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10636,7,7,'2019-08-21 15:10:50',768.940000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10637,7,7,'2019-08-21 15:10:50',769.251000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10638,7,7,'2019-08-21 15:10:50',769.724000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10639,7,7,'2019-08-21 15:10:50',770.539000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10640,7,7,'2019-08-21 15:10:50',771.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10641,7,7,'2019-08-21 15:10:50',772.254000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10642,7,7,'2019-08-21 15:10:50',773.020000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10643,7,7,'2019-08-21 15:10:50',773.902000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10644,7,7,'2019-08-21 15:10:50',774.751000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10645,7,7,'2019-08-21 15:10:50',775.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10646,7,7,'2019-08-21 15:10:50',775.533000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10647,7,7,'2019-08-21 15:10:50',775.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10648,7,7,'2019-08-21 15:10:50',776.482000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10649,7,7,'2019-08-21 15:10:50',777.281000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10650,7,7,'2019-08-21 15:10:50',778.164000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10651,7,7,'2019-08-21 15:10:50',779.013000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10652,7,7,'2019-08-21 15:10:50',779.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10653,7,7,'2019-08-21 15:10:50',779.945000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10654,7,7,'2019-08-21 15:10:50',780.911000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10655,7,7,'2019-08-21 15:10:50',781.223000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10656,7,7,'2019-08-21 15:10:50',781.776000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10657,7,7,'2019-08-21 15:10:50',782.132000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10658,7,7,'2019-08-21 15:10:50',782.643000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10659,7,7,'2019-08-21 15:10:50',783.408000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10660,7,7,'2019-08-21 15:10:50',783.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10661,7,7,'2019-08-21 15:10:50',784.308000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10662,7,7,'2019-08-21 15:10:50',785.206000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10663,7,7,'2019-08-21 15:10:50',786.188000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10664,7,7,'2019-08-21 15:10:50',787.021000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10665,7,7,'2019-08-21 15:10:50',788.020000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10666,7,7,'2019-08-21 15:10:50',788.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10667,7,7,'2019-08-21 15:10:50',789.167000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10668,7,7,'2019-08-21 15:10:50',789.784000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10669,7,7,'2019-08-21 15:10:50',790.783000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10670,7,7,'2019-08-21 15:10:50',791.038000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10671,7,7,'2019-08-21 15:10:50',791.666000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10672,7,7,'2019-08-21 15:10:50',792.548000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10673,7,7,'2019-08-21 15:10:50',793.530000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10674,7,7,'2019-08-21 15:10:50',794.413000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10675,7,7,'2019-08-21 15:10:50',794.729000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10676,7,7,'2019-08-21 15:10:50',795.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10677,7,7,'2019-08-21 15:10:50',796.027000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10678,7,7,'2019-08-21 15:10:50',796.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10679,7,7,'2019-08-21 15:10:50',796.794000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10680,7,7,'2019-08-21 15:10:50',797.560000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10681,7,7,'2019-08-21 15:10:50',798.358000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10682,7,7,'2019-08-21 15:10:50',798.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10683,7,7,'2019-08-21 15:10:50',799.341000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10684,7,7,'2019-08-21 15:10:50',799.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10685,7,7,'2019-08-21 15:10:50',800.340000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10686,7,7,'2019-08-21 15:10:50',801.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10687,7,7,'2019-08-21 15:10:50',802.088000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10688,7,7,'2019-08-21 15:10:50',803.087000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10689,7,7,'2019-08-21 15:10:50',803.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10690,7,7,'2019-08-21 15:10:50',804.258000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10691,7,7,'2019-08-21 15:10:50',804.868000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10692,7,7,'2019-08-21 15:10:50',805.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10693,7,7,'2019-08-21 15:10:50',806.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10694,7,7,'2019-08-21 15:10:50',806.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10695,7,7,'2019-08-21 15:10:50',807.349000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10696,7,7,'2019-08-21 15:10:50',808.231000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10697,7,7,'2019-08-21 15:10:50',808.659000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10698,7,7,'2019-08-21 15:10:50',809.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10699,7,7,'2019-08-21 15:10:50',810.062000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10700,7,7,'2019-08-21 15:10:50',810.995000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10701,7,7,'2019-08-21 15:10:50',811.314000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10702,7,7,'2019-08-21 15:10:50',811.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10703,7,7,'2019-08-21 15:10:50',812.826000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10704,7,7,'2019-08-21 15:10:50',813.592000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10705,7,7,'2019-08-21 15:10:50',814.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10706,7,7,'2019-08-21 15:10:50',814.716000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10707,7,7,'2019-08-21 15:10:50',815.224000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10708,7,7,'2019-08-21 15:10:50',816.223000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10709,7,7,'2019-08-21 15:10:50',817.021000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10710,7,7,'2019-08-21 15:10:50',817.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10711,7,7,'2019-08-21 15:10:50',817.971000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10712,7,7,'2019-08-21 15:10:50',818.920000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10713,7,7,'2019-08-21 15:10:50',819.248000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10714,7,7,'2019-08-21 15:10:50',819.835000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10715,7,7,'2019-08-21 15:10:50',820.784000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10716,7,7,'2019-08-21 15:10:50',821.717000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10717,7,7,'2019-08-21 15:10:50',822.034000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10718,7,7,'2019-08-21 15:10:50',822.682000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10719,7,7,'2019-08-21 15:10:50',823.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10720,7,7,'2019-08-21 15:10:50',824.363000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10721,7,7,'2019-08-21 15:10:50',825.129000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10722,7,7,'2019-08-21 15:10:50',825.912000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10723,7,7,'2019-08-21 15:10:50',826.345000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10724,7,7,'2019-08-21 15:10:50',826.827000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10725,7,7,'2019-08-21 15:10:50',827.143000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10726,7,7,'2019-08-21 15:10:50',827.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10727,7,7,'2019-08-21 15:10:50',828.492000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10728,7,7,'2019-08-21 15:10:50',829.425000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10729,7,7,'2019-08-21 15:10:50',830.290000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10730,7,7,'2019-08-21 15:10:50',831.106000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10731,7,7,'2019-08-21 15:10:50',831.624000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10732,7,7,'2019-08-21 15:10:50',831.955000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10733,7,7,'2019-08-21 15:10:50',832.280000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10734,7,7,'2019-08-21 15:10:50',832.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10735,7,7,'2019-08-21 15:10:50',833.139000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10736,7,7,'2019-08-21 15:10:50',833.770000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10737,7,7,'2019-08-21 15:10:50',834.536000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10738,7,7,'2019-08-21 15:10:50',834.966000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10739,7,7,'2019-08-21 15:10:50',835.302000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10740,7,7,'2019-08-21 15:10:50',835.662000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10741,7,7,'2019-08-21 15:10:50',836.217000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10742,7,7,'2019-08-21 15:10:50',836.983000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10743,7,7,'2019-08-21 15:10:50',837.932000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10744,7,7,'2019-08-21 15:10:50',838.881000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10745,7,7,'2019-08-21 15:10:50',839.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10746,7,7,'2019-08-21 15:10:50',840.746000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10747,7,7,'2019-08-21 15:10:50',841.113000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10748,7,7,'2019-08-21 15:10:50',841.611000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10749,7,7,'2019-08-21 15:10:50',842.394000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10750,7,7,'2019-08-21 15:10:50',843.376000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10751,7,7,'2019-08-21 15:10:50',843.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10752,7,7,'2019-08-21 15:10:50',844.358000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10753,7,7,'2019-08-21 15:10:50',845.357000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10754,7,7,'2019-08-21 15:10:50',846.140000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10755,7,7,'2019-08-21 15:10:50',846.955000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10756,7,7,'2019-08-21 15:10:50',847.341000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10757,7,7,'2019-08-21 15:10:50',847.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10758,7,7,'2019-08-21 15:10:50',848.820000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10759,7,7,'2019-08-21 15:10:50',849.803000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10760,7,7,'2019-08-21 15:10:50',850.167000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10761,7,7,'2019-08-21 15:10:50',850.701000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10762,7,7,'2019-08-21 15:10:50',851.056000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10763,7,7,'2019-08-21 15:10:50',851.567000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10764,7,7,'2019-08-21 15:10:50',852.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10765,7,7,'2019-08-21 15:10:50',853.365000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10766,7,7,'2019-08-21 15:10:50',854.298000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10767,7,7,'2019-08-21 15:10:50',855.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10768,7,7,'2019-08-21 15:10:50',855.537000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10769,7,7,'2019-08-21 15:10:50',856.013000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10770,7,7,'2019-08-21 15:10:50',856.355000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10771,7,7,'2019-08-21 15:10:50',856.944000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10772,7,7,'2019-08-21 15:10:50',857.324000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10773,7,7,'2019-08-21 15:10:50',857.794000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10774,7,7,'2019-08-21 15:10:50',858.576000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10775,7,7,'2019-08-21 15:10:50',859.525000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10776,7,7,'2019-08-21 15:10:50',860.424000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10777,7,7,'2019-08-21 15:10:50',861.390000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10778,7,7,'2019-08-21 15:10:50',862.289000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10779,7,7,'2019-08-21 15:10:50',863.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10780,7,7,'2019-08-21 15:10:50',863.987000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10781,7,7,'2019-08-21 15:10:50',864.299000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10782,7,7,'2019-08-21 15:10:50',864.902000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10783,7,7,'2019-08-21 15:10:50',865.885000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10784,7,7,'2019-08-21 15:10:50',866.207000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10785,7,7,'2019-08-21 15:10:50',866.667000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10786,7,7,'2019-08-21 15:10:50',867.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10787,7,7,'2019-08-21 15:10:50',867.500000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10788,7,7,'2019-08-21 15:10:50',868.499000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10789,7,7,'2019-08-21 15:10:50',869.464000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10790,7,7,'2019-08-21 15:10:50',870.280000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10791,7,7,'2019-08-21 15:10:50',870.628000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10792,7,7,'2019-08-21 15:10:50',871.062000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10793,7,7,'2019-08-21 15:10:50',872.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10794,7,7,'2019-08-21 15:10:50',872.961000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10795,7,7,'2019-08-21 15:10:50',873.909000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10796,7,7,'2019-08-21 15:10:50',874.303000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10797,7,7,'2019-08-21 15:10:50',874.858000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10798,7,7,'2019-08-21 15:10:50',875.120000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10799,7,7,'2019-08-21 15:10:50',875.808000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10800,7,7,'2019-08-21 15:10:50',876.773000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10801,7,7,'2019-08-21 15:10:50',877.639000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10802,7,7,'2019-08-21 15:10:50',878.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10803,7,7,'2019-08-21 15:10:50',879.370000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10804,7,7,'2019-08-21 15:10:50',879.743000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10805,7,7,'2019-08-21 15:10:50',880.186000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10806,7,7,'2019-08-21 15:10:50',881.019000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10807,7,7,'2019-08-21 15:10:50',881.349000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10808,7,7,'2019-08-21 15:10:50',881.968000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10809,7,7,'2019-08-21 15:10:50',882.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10810,7,7,'2019-08-21 15:10:50',883.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10811,7,7,'2019-08-21 15:10:50',883.973000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10812,7,7,'2019-08-21 15:10:50',884.381000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10813,7,7,'2019-08-21 15:10:50',885.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10814,7,7,'2019-08-21 15:10:50',886.146000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10815,7,7,'2019-08-21 15:10:50',886.477000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10816,7,7,'2019-08-21 15:10:50',886.979000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10817,7,7,'2019-08-21 15:10:50',887.961000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10818,7,7,'2019-08-21 15:10:50',888.859000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10819,7,7,'2019-08-21 15:10:50',889.172000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10820,7,7,'2019-08-21 15:10:50',889.692000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10821,7,7,'2019-08-21 15:10:50',890.574000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10822,7,7,'2019-08-21 15:10:50',890.897000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10823,7,7,'2019-08-21 15:10:50',891.357000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10824,7,7,'2019-08-21 15:10:50',892.355000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10825,7,7,'2019-08-21 15:10:50',904.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10826,7,7,'2019-08-21 15:10:50',936.795000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10827,7,7,'2019-08-21 15:10:50',937.593000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10828,7,7,'2019-08-21 15:10:50',938.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10829,7,7,'2019-08-21 15:10:50',939.391000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10830,7,7,'2019-08-21 15:10:50',939.742000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10831,7,7,'2019-08-21 15:10:50',940.290000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10832,7,7,'2019-08-21 15:10:50',940.570000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10833,7,7,'2019-08-21 15:10:50',941.122000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10834,7,7,'2019-08-21 15:10:50',941.905000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10835,7,7,'2019-08-21 15:10:50',942.256000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10836,7,7,'2019-08-21 15:10:50',942.820000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10837,7,7,'2019-08-21 15:10:50',943.770000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10838,7,7,'2019-08-21 15:10:50',944.094000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10839,7,7,'2019-08-21 15:10:50',944.702000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10840,7,7,'2019-08-21 15:10:50',945.601000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10841,7,7,'2019-08-21 15:10:50',946.434000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10842,7,7,'2019-08-21 15:10:50',947.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10843,7,7,'2019-08-21 15:10:50',947.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10844,7,7,'2019-08-21 15:10:50',948.348000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10845,7,7,'2019-08-21 15:10:50',949.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10846,7,7,'2019-08-21 15:10:50',950.079000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10847,7,7,'2019-08-21 15:10:50',951.012000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10848,7,7,'2019-08-21 15:10:50',951.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10849,7,7,'2019-08-21 15:10:50',952.139000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10850,7,7,'2019-08-21 15:10:50',952.660000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10851,7,7,'2019-08-21 15:10:50',953.575000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10852,7,7,'2019-08-21 15:10:50',954.375000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10853,7,7,'2019-08-21 15:10:50',954.682000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10854,7,7,'2019-08-21 15:10:50',955.290000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10855,7,7,'2019-08-21 15:10:50',956.289000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10856,7,7,'2019-08-21 15:10:50',956.600000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10857,7,7,'2019-08-21 15:10:50',957.172000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10858,7,7,'2019-08-21 15:10:50',958.138000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10859,7,7,'2019-08-21 15:10:50',959.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10860,7,7,'2019-08-21 15:10:50',959.355000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10861,7,7,'2019-08-21 15:10:50',959.985000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10862,7,7,'2019-08-21 15:10:50',960.784000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10863,7,7,'2019-08-21 15:10:50',961.700000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10864,7,7,'2019-08-21 15:10:50',961.930000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10865,7,7,'2019-08-21 15:10:50',962.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10866,7,7,'2019-08-21 15:10:50',963.531000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10867,7,7,'2019-08-21 15:10:50',963.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10868,7,7,'2019-08-21 15:10:50',964.381000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10869,7,7,'2019-08-21 15:10:50',965.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10870,7,7,'2019-08-21 15:10:50',965.544000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10871,7,7,'2019-08-21 15:10:50',966.096000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10872,7,7,'2019-08-21 15:10:50',967.077000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10873,7,7,'2019-08-21 15:10:50',967.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10874,7,7,'2019-08-21 15:10:50',968.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10875,7,7,'2019-08-21 15:10:50',969.258000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10876,7,7,'2019-08-21 15:10:50',969.725000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10877,7,7,'2019-08-21 15:10:50',970.523000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10878,7,7,'2019-08-21 15:10:50',970.873000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10879,7,7,'2019-08-21 15:10:50',971.522000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10880,7,7,'2019-08-21 15:10:50',972.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10881,7,7,'2019-08-21 15:10:50',973.271000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10882,7,7,'2019-08-21 15:10:50',974.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10883,7,7,'2019-08-21 15:10:50',974.936000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10884,7,7,'2019-08-21 15:10:50',975.885000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10885,7,7,'2019-08-21 15:10:50',976.834000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10886,7,7,'2019-08-21 15:10:50',977.699000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10887,7,7,'2019-08-21 15:10:50',978.030000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10888,7,7,'2019-08-21 15:10:50',978.615000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10889,7,7,'2019-08-21 15:10:50',978.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10890,7,7,'2019-08-21 15:10:50',979.580000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10891,7,7,'2019-08-21 15:10:50',980.446000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10892,7,7,'2019-08-21 15:10:50',981.379000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10893,7,7,'2019-08-21 15:10:50',982.311000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10894,7,7,'2019-08-21 15:10:50',983.310000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10895,7,7,'2019-08-21 15:10:50',983.592000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10896,7,7,'2019-08-21 15:10:50',984.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10897,7,7,'2019-08-21 15:10:50',984.490000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10898,7,7,'2019-08-21 15:10:50',985.024000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10899,7,7,'2019-08-21 15:10:50',985.823000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10900,7,7,'2019-08-21 15:10:50',986.723000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10901,7,7,'2019-08-21 15:10:50',987.104000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10902,7,7,'2019-08-21 15:10:50',987.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10903,7,7,'2019-08-21 15:10:50',988.354000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10904,7,7,'2019-08-21 15:10:50',988.689000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10905,7,7,'2019-08-21 15:10:50',989.236000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10906,7,7,'2019-08-21 15:10:50',990.119000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10907,7,7,'2019-08-21 15:10:50',990.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10908,7,7,'2019-08-21 15:10:50',990.935000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10909,7,7,'2019-08-21 15:10:50',991.784000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10910,7,7,'2019-08-21 15:10:50',992.092000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10911,7,7,'2019-08-21 15:10:50',992.767000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10912,7,7,'2019-08-21 15:10:50',993.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10913,7,7,'2019-08-21 15:10:50',994.431000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10914,7,7,'2019-08-21 15:10:50',995.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10915,7,7,'2019-08-21 15:10:50',996.029000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10916,7,7,'2019-08-21 15:10:50',996.503000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10917,7,7,'2019-08-21 15:10:50',996.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10918,7,7,'2019-08-21 15:10:50',997.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10919,7,7,'2019-08-21 15:10:50',998.643000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10920,7,7,'2019-08-21 15:10:50',998.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10921,7,7,'2019-08-21 15:10:50',999.608000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10922,7,7,'2019-08-21 15:10:50',1000.441000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10923,7,7,'2019-08-21 15:10:50',1001.207000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10924,7,7,'2019-08-21 15:10:50',1001.540000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10925,7,7,'2019-08-21 15:10:50',1002.140000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10926,7,7,'2019-08-21 15:10:50',1002.681000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10927,7,7,'2019-08-21 15:10:50',1002.955000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10928,7,7,'2019-08-21 15:10:50',1003.954000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10929,7,7,'2019-08-21 15:10:50',1004.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10930,7,7,'2019-08-21 15:10:50',1005.603000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10931,7,7,'2019-08-21 15:10:50',1006.451000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10932,7,7,'2019-08-21 15:10:50',1007.283000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10933,7,7,'2019-08-21 15:10:50',1007.597000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10934,7,7,'2019-08-21 15:10:50',1008.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10935,7,7,'2019-08-21 15:10:50',1009.049000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10936,7,7,'2019-08-21 15:10:50',1009.383000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10937,7,7,'2019-08-21 15:10:50',1009.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10938,7,7,'2019-08-21 15:10:50',1010.863000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10939,7,7,'2019-08-21 15:10:50',1011.140000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10940,7,7,'2019-08-21 15:10:50',1011.778000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10941,7,7,'2019-08-21 15:10:50',1012.595000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10942,7,7,'2019-08-21 15:10:50',1013.460000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10943,7,7,'2019-08-21 15:10:50',1014.409000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10944,7,7,'2019-08-21 15:10:50',1015.225000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10945,7,7,'2019-08-21 15:10:50',1015.511000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10946,7,7,'2019-08-21 15:10:50',1016.224000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10947,7,7,'2019-08-21 15:10:50',1017.173000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10948,7,7,'2019-08-21 15:10:50',1018.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10949,7,7,'2019-08-21 15:10:50',1018.448000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10950,7,7,'2019-08-21 15:10:50',1018.987000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10951,7,7,'2019-08-21 15:10:50',1019.870000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10952,7,7,'2019-08-21 15:10:50',1020.702000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10953,7,7,'2019-08-21 15:10:50',1021.012000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10954,7,7,'2019-08-21 15:10:50',1021.668000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10955,7,7,'2019-08-21 15:10:50',1022.467000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10956,7,7,'2019-08-21 15:10:50',1023.000000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10957,7,7,'2019-08-21 15:10:50',1023.350000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10958,7,7,'2019-08-21 15:10:50',1024.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10959,7,7,'2019-08-21 15:10:50',1024.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10960,7,7,'2019-08-21 15:10:50',1025.064000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10961,7,7,'2019-08-21 15:10:50',1025.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10962,7,7,'2019-08-21 15:10:50',1026.812000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10963,7,7,'2019-08-21 15:10:50',1027.595000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10964,7,7,'2019-08-21 15:10:50',1028.377000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10965,7,7,'2019-08-21 15:10:50',1028.704000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10966,7,7,'2019-08-21 15:10:50',1029.144000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10967,7,7,'2019-08-21 15:10:50',1029.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10968,7,7,'2019-08-21 15:10:50',1030.142000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10969,7,7,'2019-08-21 15:10:50',1031.024000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10970,7,7,'2019-08-21 15:10:50',1031.924000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10971,7,7,'2019-08-21 15:10:50',1032.739000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10972,7,7,'2019-08-21 15:10:50',1033.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10973,7,7,'2019-08-21 15:10:50',1033.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10974,7,7,'2019-08-21 15:10:50',1034.487000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10975,7,7,'2019-08-21 15:10:50',1034.750000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10976,7,7,'2019-08-21 15:10:50',1035.403000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10977,7,7,'2019-08-21 15:10:50',1036.269000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10978,7,7,'2019-08-21 15:10:50',1037.234000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10979,7,7,'2019-08-21 15:10:50',1038.217000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10980,7,7,'2019-08-21 15:10:50',1038.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10981,7,7,'2019-08-21 15:10:50',1039.082000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10982,7,7,'2019-08-21 15:10:50',1040.081000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10983,7,7,'2019-08-21 15:10:50',1041.030000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10984,7,7,'2019-08-21 15:10:50',1041.332000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10985,7,7,'2019-08-21 15:10:50',1041.912000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10986,7,7,'2019-08-21 15:10:50',1042.762000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10987,7,7,'2019-08-21 15:10:50',1043.677000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10988,7,7,'2019-08-21 15:10:50',1044.493000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10989,7,7,'2019-08-21 15:10:50',1044.784000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10990,7,7,'2019-08-21 15:10:50',1045.325000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10991,7,7,'2019-08-21 15:10:50',1045.692000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10992,7,7,'2019-08-21 15:10:50',1046.291000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10993,7,7,'2019-08-21 15:10:50',1047.224000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10994,7,7,'2019-08-21 15:10:50',1047.989000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10995,7,7,'2019-08-21 15:10:50',1048.357000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10996,7,7,'2019-08-21 15:10:50',1048.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10997,7,7,'2019-08-21 15:10:50',1049.771000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10998,7,7,'2019-08-21 15:10:50',1050.053000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (10999,7,7,'2019-08-21 15:10:50',1050.637000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11000,7,7,'2019-08-21 15:10:50',1051.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11001,7,7,'2019-08-21 15:10:50',1052.385000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11002,7,7,'2019-08-21 15:10:50',1053.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11003,7,7,'2019-08-21 15:10:50',1053.656000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11004,7,7,'2019-08-21 15:10:50',1054.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11005,7,7,'2019-08-21 15:10:50',1055.198000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11006,7,7,'2019-08-21 15:10:50',1056.047000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11007,7,7,'2019-08-21 15:10:50',1056.829000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11008,7,7,'2019-08-21 15:10:50',1057.745000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11009,7,7,'2019-08-21 15:10:50',1057.999000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11010,7,7,'2019-08-21 15:10:50',1058.694000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11011,7,7,'2019-08-21 15:10:50',1059.219000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11012,7,7,'2019-08-21 15:10:50',1059.477000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11013,7,7,'2019-08-21 15:10:50',1060.459000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11014,7,7,'2019-08-21 15:10:50',1061.291000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11015,7,7,'2019-08-21 15:10:50',1061.631000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11016,7,7,'2019-08-21 15:10:50',1062.091000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11017,7,7,'2019-08-21 15:10:50',1063.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11018,7,7,'2019-08-21 15:10:50',1063.988000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11019,7,7,'2019-08-21 15:10:50',1064.938000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11020,7,7,'2019-08-21 15:10:50',1065.786000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11021,7,7,'2019-08-21 15:10:50',1066.636000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11022,7,7,'2019-08-21 15:10:50',1066.961000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11023,7,7,'2019-08-21 15:10:50',1067.451000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11024,7,7,'2019-08-21 15:10:50',1067.909000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11025,7,7,'2019-08-21 15:10:50',1068.384000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11026,7,7,'2019-08-21 15:10:50',1069.183000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11027,7,7,'2019-08-21 15:10:50',1069.494000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11028,7,7,'2019-08-21 15:10:50',1069.998000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11029,7,7,'2019-08-21 15:10:50',1070.881000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11030,7,7,'2019-08-21 15:10:50',1071.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11031,7,7,'2019-08-21 15:10:50',1072.579000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11032,7,7,'2019-08-21 15:10:50',1073.444000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11033,7,7,'2019-08-21 15:10:50',1073.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11034,7,7,'2019-08-21 15:10:50',1074.244000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11035,7,7,'2019-08-21 15:10:50',1075.192000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11036,7,7,'2019-08-21 15:10:50',1076.009000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11037,7,7,'2019-08-21 15:10:50',1076.409000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11038,7,7,'2019-08-21 15:10:50',1076.958000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11039,7,7,'2019-08-21 15:10:50',1077.890000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11040,7,7,'2019-08-21 15:10:50',1078.256000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11041,7,7,'2019-08-21 15:10:50',1078.672000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11042,7,7,'2019-08-21 15:10:50',1079.505000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11043,7,7,'2019-08-21 15:10:50',1080.471000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11044,7,7,'2019-08-21 15:10:50',1081.386000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11045,7,7,'2019-08-21 15:10:50',1081.698000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11046,7,7,'2019-08-21 15:10:50',1082.385000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11047,7,7,'2019-08-21 15:10:50',1082.667000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11048,7,7,'2019-08-21 15:10:50',1083.251000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11049,7,7,'2019-08-21 15:10:50',1084.250000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11050,7,7,'2019-08-21 15:10:50',1085.215000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11051,7,7,'2019-08-21 15:10:50',1085.514000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11052,7,7,'2019-08-21 15:10:50',1086.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11053,7,7,'2019-08-21 15:10:50',1087.014000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11054,7,7,'2019-08-21 15:10:50',1087.301000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11055,7,7,'2019-08-21 15:10:50',1087.912000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11056,7,7,'2019-08-21 15:10:50',1088.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11057,7,7,'2019-08-21 15:10:50',1089.461000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11058,7,7,'2019-08-21 15:10:50',1090.227000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11059,7,7,'2019-08-21 15:10:50',1091.159000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11060,7,7,'2019-08-21 15:10:50',1091.459000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11061,7,7,'2019-08-21 15:10:50',1091.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11062,7,7,'2019-08-21 15:10:50',1092.907000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11063,7,7,'2019-08-21 15:10:50',1093.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11064,7,7,'2019-08-21 15:10:50',1094.124000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11065,7,7,'2019-08-21 15:10:50',1094.722000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11066,7,7,'2019-08-21 15:10:50',1095.537000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11067,7,7,'2019-08-21 15:10:50',1096.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11068,7,7,'2019-08-21 15:10:50',1097.368000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11069,7,7,'2019-08-21 15:10:50',1097.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11070,7,7,'2019-08-21 15:10:50',1098.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11071,7,7,'2019-08-21 15:10:50',1098.697000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11072,7,7,'2019-08-21 15:10:50',1099.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11073,7,7,'2019-08-21 15:10:50',1100.249000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11074,7,7,'2019-08-21 15:10:50',1101.131000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11075,7,7,'2019-08-21 15:10:50',1102.130000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11076,7,7,'2019-08-21 15:10:50',1102.422000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11077,7,7,'2019-08-21 15:10:50',1103.046000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11078,7,7,'2019-08-21 15:10:50',1103.961000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11079,7,7,'2019-08-21 15:10:50',1104.410000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11080,7,7,'2019-08-21 15:10:50',1104.811000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11081,7,7,'2019-08-21 15:10:50',1105.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11082,7,7,'2019-08-21 15:10:50',1106.592000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11083,7,7,'2019-08-21 15:10:50',1107.491000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11084,7,7,'2019-08-21 15:10:50',1108.340000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11085,7,7,'2019-08-21 15:10:50',1109.322000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11086,7,7,'2019-08-21 15:10:50',1109.750000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11087,7,7,'2019-08-21 15:10:50',1110.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11088,7,7,'2019-08-21 15:10:50',1110.467000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11089,7,7,'2019-08-21 15:10:50',1111.070000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11090,7,7,'2019-08-21 15:10:50',1111.836000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11091,7,7,'2019-08-21 15:10:50',1112.602000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11092,7,7,'2019-08-21 15:10:50',1113.567000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11093,7,7,'2019-08-21 15:10:50',1114.350000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11094,7,7,'2019-08-21 15:10:50',1114.696000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11095,7,7,'2019-08-21 15:10:50',1115.332000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11096,7,7,'2019-08-21 15:10:50',1116.265000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11097,7,7,'2019-08-21 15:10:50',1116.533000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11098,7,7,'2019-08-21 15:10:50',1117.264000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11099,7,7,'2019-08-21 15:10:50',1118.263000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11100,7,7,'2019-08-21 15:10:50',1119.095000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11101,7,7,'2019-08-21 15:10:50',1119.460000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11102,7,7,'2019-08-21 15:10:50',1119.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11103,7,7,'2019-08-21 15:10:50',1120.793000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11104,7,7,'2019-08-21 15:10:50',1121.742000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11105,7,7,'2019-08-21 15:10:50',1122.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11106,7,7,'2019-08-21 15:10:50',1122.508000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11107,7,7,'2019-08-21 15:10:50',1122.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11108,7,7,'2019-08-21 15:10:50',1123.307000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11109,7,7,'2019-08-21 15:10:50',1124.223000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11110,7,7,'2019-08-21 15:10:50',1124.988000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11111,7,7,'2019-08-21 15:10:50',1125.854000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11112,7,7,'2019-08-21 15:10:50',1126.736000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11113,7,7,'2019-08-21 15:10:50',1127.062000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11114,7,7,'2019-08-21 15:10:50',1127.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11115,7,7,'2019-08-21 15:10:50',1128.081000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11116,7,7,'2019-08-21 15:10:50',1128.484000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11117,7,7,'2019-08-21 15:10:50',1128.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11118,7,7,'2019-08-21 15:10:50',1129.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11119,7,7,'2019-08-21 15:10:50',1130.166000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11120,7,7,'2019-08-21 15:10:50',1131.132000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11121,7,7,'2019-08-21 15:10:50',1132.014000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11122,7,7,'2019-08-21 15:10:50',1132.780000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11123,7,7,'2019-08-21 15:10:50',1133.329000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11124,7,7,'2019-08-21 15:10:50',1133.762000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11125,7,7,'2019-08-21 15:10:50',1134.611000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11126,7,7,'2019-08-21 15:10:50',1135.394000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11127,7,7,'2019-08-21 15:10:50',1136.210000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11128,7,7,'2019-08-21 15:10:50',1137.125000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11129,7,7,'2019-08-21 15:10:50',1137.388000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11130,7,7,'2019-08-21 15:10:50',1138.058000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11131,7,7,'2019-08-21 15:10:50',1138.923000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11132,7,7,'2019-08-21 15:10:50',1139.689000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11133,7,7,'2019-08-21 15:10:50',1139.991000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11134,7,7,'2019-08-21 15:10:50',1140.455000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11135,7,7,'2019-08-21 15:10:50',1141.271000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11136,7,7,'2019-08-21 15:10:50',1141.606000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11137,7,7,'2019-08-21 15:10:50',1142.053000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11138,7,7,'2019-08-21 15:10:50',1142.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11139,7,7,'2019-08-21 15:10:50',1143.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11140,7,7,'2019-08-21 15:10:50',1144.069000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11141,7,7,'2019-08-21 15:10:50',1144.783000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11142,7,7,'2019-08-21 15:10:50',1145.766000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11143,7,7,'2019-08-21 15:10:50',1146.599000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11144,7,7,'2019-08-21 15:10:50',1146.956000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11145,7,7,'2019-08-21 15:10:50',1147.530000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11146,7,7,'2019-08-21 15:10:50',1148.463000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11147,7,7,'2019-08-21 15:10:50',1149.379000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11148,7,7,'2019-08-21 15:10:50',1150.377000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11149,7,7,'2019-08-21 15:10:50',1150.682000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11150,7,7,'2019-08-21 15:10:50',1151.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11151,7,7,'2019-08-21 15:10:50',1152.325000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11152,7,7,'2019-08-21 15:10:50',1152.649000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11153,7,7,'2019-08-21 15:10:50',1153.124000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11154,7,7,'2019-08-21 15:10:50',1153.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11155,7,7,'2019-08-21 15:10:50',1154.806000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11156,7,7,'2019-08-21 15:10:50',1155.622000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11157,7,7,'2019-08-21 15:10:50',1156.454000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11158,7,7,'2019-08-21 15:10:50',1156.737000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11159,7,7,'2019-08-21 15:10:50',1157.453000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11160,7,7,'2019-08-21 15:10:50',1157.868000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11161,7,7,'2019-08-21 15:10:50',1158.302000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11162,7,7,'2019-08-21 15:10:50',1159.135000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11163,7,7,'2019-08-21 15:10:50',1159.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11164,7,7,'2019-08-21 15:10:50',1160.100000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11165,7,7,'2019-08-21 15:10:50',1161.082000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11166,7,7,'2019-08-21 15:10:50',1161.915000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11167,7,7,'2019-08-21 15:10:50',1162.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11168,7,7,'2019-08-21 15:10:50',1162.830000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11169,7,7,'2019-08-21 15:10:50',1163.779000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11170,7,7,'2019-08-21 15:10:50',1164.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11171,7,7,'2019-08-21 15:10:50',1165.644000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11172,7,7,'2019-08-21 15:10:50',1166.626000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11173,7,7,'2019-08-21 15:10:50',1167.003000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11174,7,7,'2019-08-21 15:10:50',1167.393000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11175,7,7,'2019-08-21 15:10:50',1168.191000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11176,7,7,'2019-08-21 15:10:50',1168.477000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11177,7,7,'2019-08-21 15:10:50',1169.106000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11178,7,7,'2019-08-21 15:10:50',1169.890000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11179,7,7,'2019-08-21 15:10:50',1170.838000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11180,7,7,'2019-08-21 15:10:50',1171.754000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11181,7,7,'2019-08-21 15:10:50',1172.703000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11182,7,7,'2019-08-21 15:10:50',1173.050000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11183,7,7,'2019-08-21 15:10:50',1173.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11184,7,7,'2019-08-21 15:10:50',1173.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11185,7,7,'2019-08-21 15:10:50',1174.352000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11186,7,7,'2019-08-21 15:10:50',1175.217000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11187,7,7,'2019-08-21 15:10:50',1176.083000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11188,7,7,'2019-08-21 15:10:50',1177.064000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11189,7,7,'2019-08-21 15:10:50',1177.380000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11190,7,7,'2019-08-21 15:10:50',1177.997000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11191,7,7,'2019-08-21 15:10:50',1178.299000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11192,7,7,'2019-08-21 15:10:50',1178.880000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11193,7,7,'2019-08-21 15:10:50',1179.662000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11194,7,7,'2019-08-21 15:10:50',1180.461000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11195,7,7,'2019-08-21 15:10:50',1180.812000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11196,7,7,'2019-08-21 15:10:50',1181.244000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11197,7,7,'2019-08-21 15:10:50',1182.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11198,7,7,'2019-08-21 15:10:50',1182.417000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11199,7,7,'2019-08-21 15:10:50',1183.059000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11200,7,7,'2019-08-21 15:10:50',1184.024000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11201,7,7,'2019-08-21 15:10:50',1184.973000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11202,7,7,'2019-08-21 15:10:50',1185.955000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11203,7,7,'2019-08-21 15:10:50',1186.838000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11204,7,7,'2019-08-21 15:10:50',1187.837000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11205,7,7,'2019-08-21 15:10:50',1188.719000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11206,7,7,'2019-08-21 15:10:50',1189.518000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11207,7,7,'2019-08-21 15:10:50',1189.806000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11208,7,7,'2019-08-21 15:10:50',1190.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11209,7,7,'2019-08-21 15:10:50',1190.634000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11210,7,7,'2019-08-21 15:10:50',1191.133000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11211,7,7,'2019-08-21 15:10:50',1191.948000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11212,7,7,'2019-08-21 15:10:50',1192.289000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11213,7,7,'2019-08-21 15:10:50',1192.881000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11214,7,7,'2019-08-21 15:10:50',1193.137000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11215,7,7,'2019-08-21 15:10:50',1193.830000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11216,7,7,'2019-08-21 15:10:50',1194.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11217,7,7,'2019-08-21 15:10:50',1195.578000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11218,7,7,'2019-08-21 15:10:50',1196.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11219,7,7,'2019-08-21 15:10:50',1197.276000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11220,7,7,'2019-08-21 15:10:50',1198.075000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11221,7,7,'2019-08-21 15:10:50',1199.008000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11222,7,7,'2019-08-21 15:10:50',1199.354000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11223,7,7,'2019-08-21 15:10:50',1199.906000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11224,7,7,'2019-08-21 15:10:50',1200.233000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11225,7,7,'2019-08-21 15:10:50',1200.673000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11226,8,8,'2019-08-21 15:10:59',0.902000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11227,8,8,'2019-08-21 15:10:59',14.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11228,8,8,'2019-08-21 15:10:59',15.269000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11229,8,8,'2019-08-21 15:10:59',16.284000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11230,8,8,'2019-08-21 15:10:59',17.200000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11231,8,8,'2019-08-21 15:10:59',17.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11232,8,8,'2019-08-21 15:10:59',18.115000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11233,8,8,'2019-08-21 15:10:59',18.451000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11234,8,8,'2019-08-21 15:10:59',18.998000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11235,8,8,'2019-08-21 15:10:59',19.847000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11236,8,8,'2019-08-21 15:10:59',20.206000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11237,8,8,'2019-08-21 15:10:59',20.846000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11238,8,8,'2019-08-21 15:10:59',21.124000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11239,8,8,'2019-08-21 15:10:59',21.729000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11240,8,8,'2019-08-21 15:10:59',22.644000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11241,8,8,'2019-08-21 15:10:59',23.643000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11242,8,8,'2019-08-21 15:10:59',24.408000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11243,8,8,'2019-08-21 15:10:59',25.308000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11244,8,8,'2019-08-21 15:10:59',26.090000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11245,8,8,'2019-08-21 15:10:59',26.890000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11246,8,8,'2019-08-21 15:10:59',27.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11247,8,8,'2019-08-21 15:10:59',27.788000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11248,8,8,'2019-08-21 15:10:59',28.104000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11249,8,8,'2019-08-21 15:10:59',28.638000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11250,8,8,'2019-08-21 15:10:59',29.437000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11251,8,8,'2019-08-21 15:10:59',30.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11252,8,8,'2019-08-21 15:10:59',31.185000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11253,8,8,'2019-08-21 15:10:59',31.613000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11254,8,8,'2019-08-21 15:10:59',32.000000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11255,8,8,'2019-08-21 15:10:59',32.833000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11256,8,8,'2019-08-21 15:10:59',33.731000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11257,8,8,'2019-08-21 15:10:59',34.074000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11258,8,8,'2019-08-21 15:10:59',34.498000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11259,8,8,'2019-08-21 15:10:59',35.330000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11260,8,8,'2019-08-21 15:10:59',36.112000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11261,8,8,'2019-08-21 15:10:59',36.525000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11262,8,8,'2019-08-21 15:10:59',37.012000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11263,8,8,'2019-08-21 15:10:59',37.944000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11264,8,8,'2019-08-21 15:10:59',38.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11265,8,8,'2019-08-21 15:10:59',39.198000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11266,8,8,'2019-08-21 15:10:59',39.775000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11267,8,8,'2019-08-21 15:10:59',40.707000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11268,8,8,'2019-08-21 15:10:59',41.523000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11269,8,8,'2019-08-21 15:10:59',42.289000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11270,8,8,'2019-08-21 15:10:59',42.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11271,8,8,'2019-08-21 15:10:59',43.071000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11272,8,8,'2019-08-21 15:10:59',44.021000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11273,8,8,'2019-08-21 15:10:59',44.321000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11274,8,8,'2019-08-21 15:10:59',44.953000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11275,8,8,'2019-08-21 15:10:59',45.868000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11276,8,8,'2019-08-21 15:10:59',46.801000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11277,8,8,'2019-08-21 15:10:59',47.800000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11278,8,8,'2019-08-21 15:10:59',48.164000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11279,8,8,'2019-08-21 15:10:59',48.799000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11280,8,8,'2019-08-21 15:10:59',49.581000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11281,8,8,'2019-08-21 15:10:59',50.414000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11282,8,8,'2019-08-21 15:10:59',50.767000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11283,8,8,'2019-08-21 15:10:59',51.263000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11284,8,8,'2019-08-21 15:10:59',52.245000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11285,8,8,'2019-08-21 15:10:59',52.622000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11286,8,8,'2019-08-21 15:10:59',53.011000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11287,8,8,'2019-08-21 15:10:59',53.943000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11288,8,8,'2019-08-21 15:10:59',54.842000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11289,8,8,'2019-08-21 15:10:59',55.164000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11290,8,8,'2019-08-21 15:10:59',55.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11291,8,8,'2019-08-21 15:10:59',56.440000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11292,8,8,'2019-08-21 15:10:59',57.272000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11293,8,8,'2019-08-21 15:10:59',57.584000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11294,8,8,'2019-08-21 15:10:59',58.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11295,8,8,'2019-08-21 15:10:59',58.553000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11296,8,8,'2019-08-21 15:10:59',58.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11297,8,8,'2019-08-21 15:10:59',59.903000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11298,8,8,'2019-08-21 15:10:59',60.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11299,8,8,'2019-08-21 15:10:59',61.618000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11300,8,8,'2019-08-21 15:10:59',62.467000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11301,8,8,'2019-08-21 15:10:59',62.809000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11302,8,8,'2019-08-21 15:10:59',63.316000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11303,8,8,'2019-08-21 15:10:59',63.636000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11304,8,8,'2019-08-21 15:10:59',64.148000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11305,8,8,'2019-08-21 15:10:59',65.114000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11306,8,8,'2019-08-21 15:10:59',65.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11307,8,8,'2019-08-21 15:10:59',66.779000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11308,8,8,'2019-08-21 15:10:59',67.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11309,8,8,'2019-08-21 15:10:59',67.963000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11310,8,8,'2019-08-21 15:10:59',68.478000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11311,8,8,'2019-08-21 15:10:59',69.426000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11312,8,8,'2019-08-21 15:10:59',70.259000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11313,8,8,'2019-08-21 15:10:59',70.626000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11314,8,8,'2019-08-21 15:10:59',71.141000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11315,8,8,'2019-08-21 15:10:59',71.957000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11316,8,8,'2019-08-21 15:10:59',72.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11317,8,8,'2019-08-21 15:10:59',73.771000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11318,8,8,'2019-08-21 15:10:59',74.620000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11319,8,8,'2019-08-21 15:10:59',75.453000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11320,8,8,'2019-08-21 15:10:59',75.810000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11321,8,8,'2019-08-21 15:10:59',76.302000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11322,8,8,'2019-08-21 15:10:59',76.637000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11323,8,8,'2019-08-21 15:10:59',77.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11324,8,8,'2019-08-21 15:10:59',77.625000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11325,8,8,'2019-08-21 15:10:59',78.217000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11326,8,8,'2019-08-21 15:10:59',79.016000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11327,8,8,'2019-08-21 15:10:59',79.848000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11328,8,8,'2019-08-21 15:10:59',80.813000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11329,8,8,'2019-08-21 15:10:59',81.115000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11330,8,8,'2019-08-21 15:10:59',81.696000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11331,8,8,'2019-08-21 15:10:59',82.512000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11332,8,8,'2019-08-21 15:10:59',83.294000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11333,8,8,'2019-08-21 15:10:59',83.637000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11334,8,8,'2019-08-21 15:10:59',84.061000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11335,8,8,'2019-08-21 15:10:59',84.959000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11336,8,8,'2019-08-21 15:10:59',85.320000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11337,8,8,'2019-08-21 15:10:59',85.842000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11338,8,8,'2019-08-21 15:10:59',86.808000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11339,8,8,'2019-08-21 15:10:59',87.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11340,8,8,'2019-08-21 15:10:59',88.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11341,8,8,'2019-08-21 15:10:59',89.421000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11342,8,8,'2019-08-21 15:10:59',90.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11343,8,8,'2019-08-21 15:10:59',90.687000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11344,8,8,'2019-08-21 15:10:59',91.219000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11345,8,8,'2019-08-21 15:10:59',91.533000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11346,8,8,'2019-08-21 15:10:59',92.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11347,8,8,'2019-08-21 15:10:59',92.967000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11348,8,8,'2019-08-21 15:10:59',93.390000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11349,8,8,'2019-08-21 15:10:59',93.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11350,8,8,'2019-08-21 15:10:59',94.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11351,8,8,'2019-08-21 15:10:59',94.665000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11352,8,8,'2019-08-21 15:10:59',95.664000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11353,8,8,'2019-08-21 15:10:59',96.563000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11354,8,8,'2019-08-21 15:10:59',97.562000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11355,8,8,'2019-08-21 15:10:59',98.527000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11356,8,8,'2019-08-21 15:10:59',99.294000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11357,8,8,'2019-08-21 15:10:59',99.683000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11358,8,8,'2019-08-21 15:10:59',100.159000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11359,8,8,'2019-08-21 15:10:59',101.025000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11360,8,8,'2019-08-21 15:10:59',101.808000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11361,8,8,'2019-08-21 15:10:59',102.144000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11362,8,8,'2019-08-21 15:10:59',102.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11363,8,8,'2019-08-21 15:10:59',103.688000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11364,8,8,'2019-08-21 15:10:59',104.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11365,8,8,'2019-08-21 15:10:59',104.928000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11366,8,8,'2019-08-21 15:10:59',105.504000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11367,8,8,'2019-08-21 15:10:59',106.270000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11368,8,8,'2019-08-21 15:10:59',107.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11369,8,8,'2019-08-21 15:10:59',107.540000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11370,8,8,'2019-08-21 15:10:59',108.001000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11371,8,8,'2019-08-21 15:10:59',108.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11372,8,8,'2019-08-21 15:10:59',109.782000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11373,8,8,'2019-08-21 15:10:59',110.132000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11374,8,8,'2019-08-21 15:10:59',110.781000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11375,8,8,'2019-08-21 15:10:59',111.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11376,8,8,'2019-08-21 15:10:59',111.547000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11377,8,8,'2019-08-21 15:10:59',112.329000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11378,8,8,'2019-08-21 15:10:59',113.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11379,8,8,'2019-08-21 15:10:59',114.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11380,8,8,'2019-08-21 15:10:59',114.560000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11381,8,8,'2019-08-21 15:10:59',115.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11382,8,8,'2019-08-21 15:10:59',116.225000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11383,8,8,'2019-08-21 15:10:59',117.174000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11384,8,8,'2019-08-21 15:10:59',117.505000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11385,8,8,'2019-08-21 15:10:59',118.156000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11386,8,8,'2019-08-21 15:10:59',119.155000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11387,8,8,'2019-08-21 15:10:59',120.088000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11388,8,8,'2019-08-21 15:10:59',120.870000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11389,8,8,'2019-08-21 15:10:59',121.287000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11390,8,8,'2019-08-21 15:10:59',121.652000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11391,8,8,'2019-08-21 15:10:59',122.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11392,8,8,'2019-08-21 15:10:59',122.719000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11393,8,8,'2019-08-21 15:10:59',123.317000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11394,8,8,'2019-08-21 15:10:59',124.233000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11395,8,8,'2019-08-21 15:10:59',125.099000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11396,8,8,'2019-08-21 15:10:59',125.433000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11397,8,8,'2019-08-21 15:10:59',125.998000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11398,8,8,'2019-08-21 15:10:59',126.270000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11399,8,8,'2019-08-21 15:10:59',126.780000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11400,8,8,'2019-08-21 15:10:59',127.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11401,8,8,'2019-08-21 15:10:59',128.661000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11402,8,8,'2019-08-21 15:10:59',129.544000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11403,8,8,'2019-08-21 15:10:59',130.526000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11404,8,8,'2019-08-21 15:10:59',131.342000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11405,8,8,'2019-08-21 15:10:59',131.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11406,8,8,'2019-08-21 15:10:59',132.141000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11407,8,8,'2019-08-21 15:10:59',133.090000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11408,8,8,'2019-08-21 15:10:59',133.906000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11409,8,8,'2019-08-21 15:10:59',134.755000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11410,8,8,'2019-08-21 15:10:59',135.074000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11411,8,8,'2019-08-21 15:10:59',135.620000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11412,8,8,'2019-08-21 15:10:59',136.002000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11413,8,8,'2019-08-21 15:10:59',136.453000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11414,8,8,'2019-08-21 15:10:59',136.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11415,8,8,'2019-08-21 15:10:59',137.269000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11416,8,8,'2019-08-21 15:10:59',138.135000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11417,8,8,'2019-08-21 15:10:59',138.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11418,8,8,'2019-08-21 15:10:59',139.800000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11419,8,8,'2019-08-21 15:10:59',140.698000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11420,8,8,'2019-08-21 15:10:59',141.714000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11421,8,8,'2019-08-21 15:10:59',142.562000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11422,8,8,'2019-08-21 15:10:59',142.921000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11423,8,8,'2019-08-21 15:10:59',143.362000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11424,8,8,'2019-08-21 15:10:59',144.261000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11425,8,8,'2019-08-21 15:10:59',145.227000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11426,8,8,'2019-08-21 15:10:59',145.604000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11427,8,8,'2019-08-21 15:10:59',146.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11428,8,8,'2019-08-21 15:10:59',146.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11429,8,8,'2019-08-21 15:10:59',147.657000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11430,8,8,'2019-08-21 15:10:59',147.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11431,8,8,'2019-08-21 15:10:59',148.474000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11432,8,8,'2019-08-21 15:10:59',149.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11433,8,8,'2019-08-21 15:10:59',150.222000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11434,8,8,'2019-08-21 15:10:59',150.557000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11435,8,8,'2019-08-21 15:10:59',150.987000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11436,8,8,'2019-08-21 15:10:59',151.373000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11437,8,8,'2019-08-21 15:10:59',151.886000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11438,8,8,'2019-08-21 15:10:59',152.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11439,8,8,'2019-08-21 15:10:59',152.719000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11440,8,8,'2019-08-21 15:10:59',153.567000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11441,8,8,'2019-08-21 15:10:59',154.417000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11442,8,8,'2019-08-21 15:10:59',155.183000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11443,8,8,'2019-08-21 15:10:59',156.031000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11444,8,8,'2019-08-21 15:10:59',156.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11445,8,8,'2019-08-21 15:10:59',157.143000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11446,8,8,'2019-08-21 15:10:59',157.763000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11447,8,8,'2019-08-21 15:10:59',158.562000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11448,8,8,'2019-08-21 15:10:59',159.328000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11449,8,8,'2019-08-21 15:10:59',160.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11450,8,8,'2019-08-21 15:10:59',160.652000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11451,8,8,'2019-08-21 15:10:59',161.176000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11452,8,8,'2019-08-21 15:10:59',162.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11453,8,8,'2019-08-21 15:10:59',162.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11454,8,8,'2019-08-21 15:10:59',163.856000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11455,8,8,'2019-08-21 15:10:59',164.202000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11456,8,8,'2019-08-21 15:10:59',164.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11457,8,8,'2019-08-21 15:10:59',165.090000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11458,8,8,'2019-08-21 15:10:59',165.588000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11459,8,8,'2019-08-21 15:10:59',166.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11460,8,8,'2019-08-21 15:10:59',167.402000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11461,8,8,'2019-08-21 15:10:59',167.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11462,8,8,'2019-08-21 15:10:59',168.385000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11463,8,8,'2019-08-21 15:10:59',169.284000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11464,8,8,'2019-08-21 15:10:59',170.266000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11465,8,8,'2019-08-21 15:10:59',171.265000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11466,8,8,'2019-08-21 15:10:59',171.565000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11467,8,8,'2019-08-21 15:10:59',172.048000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11468,8,8,'2019-08-21 15:10:59',172.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11469,8,8,'2019-08-21 15:10:59',172.979000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11470,8,8,'2019-08-21 15:10:59',173.779000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11471,8,8,'2019-08-21 15:10:59',174.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11472,8,8,'2019-08-21 15:10:59',175.511000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11473,8,8,'2019-08-21 15:10:59',176.310000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11474,8,8,'2019-08-21 15:10:59',176.648000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11475,8,8,'2019-08-21 15:10:59',177.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11476,8,8,'2019-08-21 15:10:59',177.436000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11477,8,8,'2019-08-21 15:10:59',178.091000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11478,8,8,'2019-08-21 15:10:59',178.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11479,8,8,'2019-08-21 15:10:59',179.889000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11480,8,8,'2019-08-21 15:10:59',180.688000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11481,8,8,'2019-08-21 15:10:59',181.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11482,8,8,'2019-08-21 15:10:59',181.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11483,8,8,'2019-08-21 15:10:59',182.520000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11484,8,8,'2019-08-21 15:10:59',183.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11485,8,8,'2019-08-21 15:10:59',183.789000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11486,8,8,'2019-08-21 15:10:59',184.351000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11487,8,8,'2019-08-21 15:10:59',185.316000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11488,8,8,'2019-08-21 15:10:59',185.635000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11489,8,8,'2019-08-21 15:10:59',186.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11490,8,8,'2019-08-21 15:10:59',186.932000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11491,8,8,'2019-08-21 15:10:59',187.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11492,8,8,'2019-08-21 15:10:59',188.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11493,8,8,'2019-08-21 15:10:59',189.135000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11494,8,8,'2019-08-21 15:10:59',189.695000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11495,8,8,'2019-08-21 15:10:59',190.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11496,8,8,'2019-08-21 15:10:59',190.859000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11497,8,8,'2019-08-21 15:10:59',191.293000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11498,8,8,'2019-08-21 15:10:59',192.226000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11499,8,8,'2019-08-21 15:10:59',192.991000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11500,8,8,'2019-08-21 15:10:59',193.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11501,8,8,'2019-08-21 15:10:59',194.127000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11502,8,8,'2019-08-21 15:10:59',194.573000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11503,8,8,'2019-08-21 15:10:59',194.884000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11504,8,8,'2019-08-21 15:10:59',195.572000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11505,8,8,'2019-08-21 15:10:59',196.504000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11506,8,8,'2019-08-21 15:10:59',197.387000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11507,8,8,'2019-08-21 15:10:59',198.169000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11508,8,8,'2019-08-21 15:10:59',198.504000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11509,8,8,'2019-08-21 15:10:59',199.068000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11510,8,8,'2019-08-21 15:10:59',199.884000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11511,8,8,'2019-08-21 15:10:59',200.249000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11512,8,8,'2019-08-21 15:10:59',200.883000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11513,8,8,'2019-08-21 15:10:59',201.648000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11514,8,8,'2019-08-21 15:10:59',202.598000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11515,8,8,'2019-08-21 15:10:59',203.547000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11516,8,8,'2019-08-21 15:10:59',203.910000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11517,8,8,'2019-08-21 15:10:59',204.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11518,8,8,'2019-08-21 15:10:59',205.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11519,8,8,'2019-08-21 15:10:59',205.807000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11520,8,8,'2019-08-21 15:10:59',206.493000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11521,8,8,'2019-08-21 15:10:59',207.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11522,8,8,'2019-08-21 15:10:59',208.225000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11523,8,8,'2019-08-21 15:10:59',209.057000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11524,8,8,'2019-08-21 15:10:59',209.923000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11525,8,8,'2019-08-21 15:10:59',210.305000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11526,8,8,'2019-08-21 15:10:59',210.788000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11527,8,8,'2019-08-21 15:10:59',211.555000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11528,8,8,'2019-08-21 15:10:59',212.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11529,8,8,'2019-08-21 15:10:59',212.715000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11530,8,8,'2019-08-21 15:10:59',213.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11531,8,8,'2019-08-21 15:10:59',214.251000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11532,8,8,'2019-08-21 15:10:59',214.702000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11533,8,8,'2019-08-21 15:10:59',215.233000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11534,8,8,'2019-08-21 15:10:59',216.066000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11535,8,8,'2019-08-21 15:10:59',216.981000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11536,8,8,'2019-08-21 15:10:59',217.831000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11537,8,8,'2019-08-21 15:10:59',218.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11538,8,8,'2019-08-21 15:10:59',218.979000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11539,8,8,'2019-08-21 15:10:59',219.662000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11540,8,8,'2019-08-21 15:10:59',220.628000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11541,8,8,'2019-08-21 15:10:59',221.410000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11542,8,8,'2019-08-21 15:10:59',221.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11543,8,8,'2019-08-21 15:10:59',222.176000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11544,8,8,'2019-08-21 15:10:59',223.108000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11545,8,8,'2019-08-21 15:10:59',223.427000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11546,8,8,'2019-08-21 15:10:59',224.041000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11547,8,8,'2019-08-21 15:10:59',224.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11548,8,8,'2019-08-21 15:10:59',225.171000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11549,8,8,'2019-08-21 15:10:59',225.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11550,8,8,'2019-08-21 15:10:59',226.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11551,8,8,'2019-08-21 15:10:59',227.420000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11552,8,8,'2019-08-21 15:10:59',228.353000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11553,8,8,'2019-08-21 15:10:59',229.135000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11554,8,8,'2019-08-21 15:10:59',229.498000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11555,8,8,'2019-08-21 15:10:59',229.968000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11556,8,8,'2019-08-21 15:10:59',230.800000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11557,8,8,'2019-08-21 15:10:59',231.649000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11558,8,8,'2019-08-21 15:10:59',232.665000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11559,8,8,'2019-08-21 15:10:59',233.514000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11560,8,8,'2019-08-21 15:10:59',233.916000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11561,8,8,'2019-08-21 15:10:59',234.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11562,8,8,'2019-08-21 15:10:59',234.813000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11563,8,8,'2019-08-21 15:10:59',235.278000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11564,8,8,'2019-08-21 15:10:59',236.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11565,8,8,'2019-08-21 15:10:59',236.770000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11566,8,8,'2019-08-21 15:10:59',237.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11567,8,8,'2019-08-21 15:10:59',238.059000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11568,8,8,'2019-08-21 15:10:59',239.058000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11569,8,8,'2019-08-21 15:10:59',239.382000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11570,8,8,'2019-08-21 15:10:59',239.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11571,8,8,'2019-08-21 15:10:59',240.839000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11572,8,8,'2019-08-21 15:10:59',241.197000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11573,8,8,'2019-08-21 15:10:59',241.638000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11574,8,8,'2019-08-21 15:10:59',242.421000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11575,8,8,'2019-08-21 15:10:59',243.203000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11576,8,8,'2019-08-21 15:10:59',244.086000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11577,8,8,'2019-08-21 15:10:59',245.067000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11578,8,8,'2019-08-21 15:10:59',245.434000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11579,8,8,'2019-08-21 15:10:59',245.967000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11580,8,8,'2019-08-21 15:10:59',246.311000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11581,8,8,'2019-08-21 15:10:59',246.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11582,8,8,'2019-08-21 15:10:59',247.781000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11583,8,8,'2019-08-21 15:10:59',248.730000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11584,8,8,'2019-08-21 15:10:59',249.696000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11585,8,8,'2019-08-21 15:10:59',250.062000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11586,8,8,'2019-08-21 15:10:59',250.495000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11587,8,8,'2019-08-21 15:10:59',251.428000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11588,8,8,'2019-08-21 15:10:59',252.343000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11589,8,8,'2019-08-21 15:10:59',253.226000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11590,8,8,'2019-08-21 15:10:59',254.191000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11591,8,8,'2019-08-21 15:10:59',255.174000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11592,8,8,'2019-08-21 15:10:59',255.579000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11593,8,8,'2019-08-21 15:10:59',256.006000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11594,8,8,'2019-08-21 15:10:59',256.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11595,8,8,'2019-08-21 15:10:59',256.854000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11596,8,8,'2019-08-21 15:10:59',257.264000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11597,8,8,'2019-08-21 15:10:59',257.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11598,8,8,'2019-08-21 15:10:59',258.569000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11599,8,8,'2019-08-21 15:10:59',259.502000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11600,8,8,'2019-08-21 15:10:59',260.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11601,8,8,'2019-08-21 15:10:59',260.673000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11602,8,8,'2019-08-21 15:10:59',261.267000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11603,8,8,'2019-08-21 15:10:59',262.166000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11604,8,8,'2019-08-21 15:10:59',262.619000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11605,8,8,'2019-08-21 15:10:59',263.015000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11606,8,8,'2019-08-21 15:10:59',263.831000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11607,8,8,'2019-08-21 15:10:59',264.630000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11608,8,8,'2019-08-21 15:10:59',264.949000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11609,8,8,'2019-08-21 15:10:59',265.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11610,8,8,'2019-08-21 15:10:59',266.577000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11611,8,8,'2019-08-21 15:10:59',267.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11612,8,8,'2019-08-21 15:10:59',268.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11613,8,8,'2019-08-21 15:10:59',269.357000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11614,8,8,'2019-08-21 15:10:59',270.323000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11615,8,8,'2019-08-21 15:10:59',270.738000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11616,8,8,'2019-08-21 15:10:59',271.322000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11617,8,8,'2019-08-21 15:10:59',272.255000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11618,8,8,'2019-08-21 15:10:59',272.574000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11619,8,8,'2019-08-21 15:10:59',273.153000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11620,8,8,'2019-08-21 15:10:59',274.103000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11621,8,8,'2019-08-21 15:10:59',274.420000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11622,8,8,'2019-08-21 15:10:59',275.035000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11623,8,8,'2019-08-21 15:10:59',275.367000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11624,8,8,'2019-08-21 15:10:59',275.951000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11625,8,8,'2019-08-21 15:10:59',276.750000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11626,8,8,'2019-08-21 15:10:59',277.683000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11627,8,8,'2019-08-21 15:10:59',289.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11628,8,8,'2019-08-21 15:10:59',289.902000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11629,8,8,'2019-08-21 15:10:59',306.885000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11630,8,8,'2019-08-21 15:10:59',307.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11631,8,8,'2019-08-21 15:10:59',308.716000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11632,8,8,'2019-08-21 15:10:59',309.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11633,8,8,'2019-08-21 15:10:59',309.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11634,8,8,'2019-08-21 15:10:59',310.530000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11635,8,8,'2019-08-21 15:10:59',310.865000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11636,8,8,'2019-08-21 15:10:59',311.529000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11637,8,8,'2019-08-21 15:10:59',312.462000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11638,8,8,'2019-08-21 15:10:59',313.378000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11639,8,8,'2019-08-21 15:10:59',314.210000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11640,8,8,'2019-08-21 15:10:59',315.143000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11641,8,8,'2019-08-21 15:10:59',315.545000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11642,8,8,'2019-08-21 15:10:59',315.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11643,8,8,'2019-08-21 15:10:59',316.808000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11644,8,8,'2019-08-21 15:10:59',317.199000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11645,8,8,'2019-08-21 15:10:59',317.739000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11646,8,8,'2019-08-21 15:10:59',318.556000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11647,8,8,'2019-08-21 15:10:59',318.954000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11648,8,8,'2019-08-21 15:10:59',319.571000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11649,8,8,'2019-08-21 15:10:59',320.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11650,8,8,'2019-08-21 15:10:59',320.921000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11651,8,8,'2019-08-21 15:10:59',321.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11652,8,8,'2019-08-21 15:10:59',322.385000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11653,8,8,'2019-08-21 15:10:59',323.300000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11654,8,8,'2019-08-21 15:10:59',324.116000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11655,8,8,'2019-08-21 15:10:59',324.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11656,8,8,'2019-08-21 15:10:59',325.277000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11657,8,8,'2019-08-21 15:10:59',325.730000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11658,8,8,'2019-08-21 15:10:59',326.215000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11659,8,8,'2019-08-21 15:10:59',326.646000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11660,8,8,'2019-08-21 15:10:59',327.612000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11661,8,8,'2019-08-21 15:10:59',328.428000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11662,8,8,'2019-08-21 15:10:59',328.908000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11663,8,8,'2019-08-21 15:10:59',329.327000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11664,8,8,'2019-08-21 15:10:59',330.192000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11665,8,8,'2019-08-21 15:10:59',330.552000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11666,8,8,'2019-08-21 15:10:59',330.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11667,8,8,'2019-08-21 15:10:59',331.924000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11668,8,8,'2019-08-21 15:10:59',332.807000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11669,8,8,'2019-08-21 15:10:59',333.639000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11670,8,8,'2019-08-21 15:10:59',334.638000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11671,8,8,'2019-08-21 15:10:59',335.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11672,8,8,'2019-08-21 15:10:59',335.470000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11673,8,8,'2019-08-21 15:10:59',336.386000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11674,8,8,'2019-08-21 15:10:59',336.734000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11675,8,8,'2019-08-21 15:10:59',337.252000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11676,8,8,'2019-08-21 15:10:59',338.250000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11677,8,8,'2019-08-21 15:10:59',339.083000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11678,8,8,'2019-08-21 15:10:59',339.981000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11679,8,8,'2019-08-21 15:10:59',340.396000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11680,8,8,'2019-08-21 15:10:59',340.980000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11681,8,8,'2019-08-21 15:10:59',341.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11682,8,8,'2019-08-21 15:10:59',342.579000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11683,8,8,'2019-08-21 15:10:59',342.937000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11684,8,8,'2019-08-21 15:10:59',343.361000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11685,8,8,'2019-08-21 15:10:59',344.261000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11686,8,8,'2019-08-21 15:10:59',344.731000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11687,8,8,'2019-08-21 15:10:59',345.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11688,8,8,'2019-08-21 15:10:59',345.549000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11689,8,8,'2019-08-21 15:10:59',345.959000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11690,8,8,'2019-08-21 15:10:59',346.808000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11691,8,8,'2019-08-21 15:10:59',347.707000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11692,8,8,'2019-08-21 15:10:59',348.506000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11693,8,8,'2019-08-21 15:10:59',349.422000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11694,8,8,'2019-08-21 15:10:59',349.704000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11695,8,8,'2019-08-21 15:10:59',350.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11696,8,8,'2019-08-21 15:10:59',351.120000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11697,8,8,'2019-08-21 15:10:59',351.919000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11698,8,8,'2019-08-21 15:10:59',352.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11699,8,8,'2019-08-21 15:10:59',352.768000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11700,8,8,'2019-08-21 15:10:59',353.601000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11701,8,8,'2019-08-21 15:10:59',354.416000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11702,8,8,'2019-08-21 15:10:59',355.232000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11703,8,8,'2019-08-21 15:10:59',356.147000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11704,8,8,'2019-08-21 15:10:59',356.471000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11705,8,8,'2019-08-21 15:10:59',357.047000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11706,8,8,'2019-08-21 15:10:59',357.439000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11707,8,8,'2019-08-21 15:10:59',357.812000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11708,8,8,'2019-08-21 15:10:59',358.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11709,8,8,'2019-08-21 15:10:59',359.494000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11710,8,8,'2019-08-21 15:10:59',360.477000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11711,8,8,'2019-08-21 15:10:59',360.868000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11712,8,8,'2019-08-21 15:10:59',361.358000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11713,8,8,'2019-08-21 15:10:59',362.241000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11714,8,8,'2019-08-21 15:10:59',363.057000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11715,8,8,'2019-08-21 15:10:59',364.056000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11716,8,8,'2019-08-21 15:10:59',364.438000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11717,8,8,'2019-08-21 15:10:59',364.921000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11718,8,8,'2019-08-21 15:10:59',365.346000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11719,8,8,'2019-08-21 15:10:59',365.754000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11720,8,8,'2019-08-21 15:10:59',366.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11721,8,8,'2019-08-21 15:10:59',366.736000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11722,8,8,'2019-08-21 15:10:59',367.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11723,8,8,'2019-08-21 15:10:59',368.418000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11724,8,8,'2019-08-21 15:10:59',369.283000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11725,8,8,'2019-08-21 15:10:59',370.232000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11726,8,8,'2019-08-21 15:10:59',371.031000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11727,8,8,'2019-08-21 15:10:59',371.458000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11728,8,8,'2019-08-21 15:10:59',371.897000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11729,8,8,'2019-08-21 15:10:59',372.335000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11730,8,8,'2019-08-21 15:10:59',372.779000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11731,8,8,'2019-08-21 15:10:59',373.612000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11732,8,8,'2019-08-21 15:10:59',374.577000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11733,8,8,'2019-08-21 15:10:59',375.526000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11734,8,8,'2019-08-21 15:10:59',376.509000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11735,8,8,'2019-08-21 15:10:59',377.357000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11736,8,8,'2019-08-21 15:10:59',378.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11737,8,8,'2019-08-21 15:10:59',378.658000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11738,8,8,'2019-08-21 15:10:59',379.122000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11739,8,8,'2019-08-21 15:10:59',379.889000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11740,8,8,'2019-08-21 15:10:59',380.282000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11741,8,8,'2019-08-21 15:10:59',380.754000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11742,8,8,'2019-08-21 15:10:59',381.570000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11743,8,8,'2019-08-21 15:10:59',382.067000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11744,8,8,'2019-08-21 15:10:59',382.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11745,8,8,'2019-08-21 15:10:59',383.501000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11746,8,8,'2019-08-21 15:10:59',384.367000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11747,8,8,'2019-08-21 15:10:59',384.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11748,8,8,'2019-08-21 15:10:59',385.133000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11749,8,8,'2019-08-21 15:10:59',385.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11750,8,8,'2019-08-21 15:10:59',386.848000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11751,8,8,'2019-08-21 15:10:59',387.830000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11752,8,8,'2019-08-21 15:10:59',388.189000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11753,8,8,'2019-08-21 15:10:59',388.778000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11754,8,8,'2019-08-21 15:10:59',389.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11755,8,8,'2019-08-21 15:10:59',389.694000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11756,8,8,'2019-08-21 15:10:59',390.677000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11757,8,8,'2019-08-21 15:10:59',391.676000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11758,8,8,'2019-08-21 15:10:59',392.574000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11759,8,8,'2019-08-21 15:10:59',392.959000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11760,8,8,'2019-08-21 15:10:59',393.490000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11761,8,8,'2019-08-21 15:10:59',394.473000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11762,8,8,'2019-08-21 15:10:59',395.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11763,8,8,'2019-08-21 15:10:59',396.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11764,8,8,'2019-08-21 15:10:59',396.590000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11765,8,8,'2019-08-21 15:10:59',397.053000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11766,8,8,'2019-08-21 15:10:59',397.468000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11767,8,8,'2019-08-21 15:10:59',398.052000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11768,8,8,'2019-08-21 15:10:59',398.968000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11769,8,8,'2019-08-21 15:10:59',399.354000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11770,8,8,'2019-08-21 15:10:59',399.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11771,8,8,'2019-08-21 15:10:59',400.832000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11772,8,8,'2019-08-21 15:10:59',401.731000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11773,8,8,'2019-08-21 15:10:59',402.680000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11774,8,8,'2019-08-21 15:10:59',402.974000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11775,8,8,'2019-08-21 15:10:59',403.513000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11776,8,8,'2019-08-21 15:10:59',404.495000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11777,8,8,'2019-08-21 15:10:59',404.910000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11778,8,8,'2019-08-21 15:10:59',405.344000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11779,8,8,'2019-08-21 15:10:59',406.276000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11780,8,8,'2019-08-21 15:10:59',407.075000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11781,8,8,'2019-08-21 15:10:59',408.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11782,8,8,'2019-08-21 15:10:59',408.511000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11783,8,8,'2019-08-21 15:10:59',408.923000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11784,8,8,'2019-08-21 15:10:59',409.789000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11785,8,8,'2019-08-21 15:10:59',410.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11786,8,8,'2019-08-21 15:10:59',411.653000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11787,8,8,'2019-08-21 15:10:59',412.111000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11788,8,8,'2019-08-21 15:10:59',412.569000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11789,8,8,'2019-08-21 15:10:59',413.552000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11790,8,8,'2019-08-21 15:10:59',414.351000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11791,8,8,'2019-08-21 15:10:59',414.733000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11792,8,8,'2019-08-21 15:10:59',415.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11793,8,8,'2019-08-21 15:10:59',415.949000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11794,8,8,'2019-08-21 15:10:59',416.915000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11795,8,8,'2019-08-21 15:10:59',417.245000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11796,8,8,'2019-08-21 15:10:59',417.730000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11797,8,8,'2019-08-21 15:10:59',418.696000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11798,8,8,'2019-08-21 15:10:59',419.040000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11799,8,8,'2019-08-21 15:10:59',419.578000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11800,8,8,'2019-08-21 15:10:59',419.978000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11801,8,8,'2019-08-21 15:10:59',420.544000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11802,8,8,'2019-08-21 15:10:59',421.493000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11803,8,8,'2019-08-21 15:10:59',422.342000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11804,8,8,'2019-08-21 15:10:59',423.191000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11805,8,8,'2019-08-21 15:10:59',424.173000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11806,8,8,'2019-08-21 15:10:59',425.022000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11807,8,8,'2019-08-21 15:10:59',425.454000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11808,8,8,'2019-08-21 15:10:59',425.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11809,8,8,'2019-08-21 15:10:59',426.190000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11810,8,8,'2019-08-21 15:10:59',426.604000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11811,8,8,'2019-08-21 15:10:59',427.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11812,8,8,'2019-08-21 15:10:59',428.318000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11813,8,8,'2019-08-21 15:10:59',429.301000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11814,8,8,'2019-08-21 15:10:59',430.150000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11815,8,8,'2019-08-21 15:10:59',431.016000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11816,8,8,'2019-08-21 15:10:59',431.384000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11817,8,8,'2019-08-21 15:10:59',431.965000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11818,8,8,'2019-08-21 15:10:59',432.947000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11819,8,8,'2019-08-21 15:10:59',433.746000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11820,8,8,'2019-08-21 15:10:59',434.127000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11821,8,8,'2019-08-21 15:10:59',434.729000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11822,8,8,'2019-08-21 15:10:59',435.678000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11823,8,8,'2019-08-21 15:10:59',436.054000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11824,8,8,'2019-08-21 15:10:59',436.643000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11825,8,8,'2019-08-21 15:10:59',437.052000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11826,8,8,'2019-08-21 15:10:59',437.409000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11827,8,8,'2019-08-21 15:10:59',438.357000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11828,8,8,'2019-08-21 15:10:59',439.356000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11829,8,8,'2019-08-21 15:10:59',440.173000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11830,8,8,'2019-08-21 15:10:59',440.602000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11831,8,8,'2019-08-21 15:10:59',441.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11832,8,8,'2019-08-21 15:10:59',441.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11833,8,8,'2019-08-21 15:10:59',442.937000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11834,8,8,'2019-08-21 15:10:59',443.735000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11835,8,8,'2019-08-21 15:10:59',444.584000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11836,8,8,'2019-08-21 15:10:59',444.959000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11837,8,8,'2019-08-21 15:10:59',445.384000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11838,8,8,'2019-08-21 15:10:59',446.232000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11839,8,8,'2019-08-21 15:10:59',447.148000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11840,8,8,'2019-08-21 15:10:59',447.530000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11841,8,8,'2019-08-21 15:10:59',447.914000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11842,8,8,'2019-08-21 15:10:59',448.680000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11843,8,8,'2019-08-21 15:10:59',449.596000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11844,8,8,'2019-08-21 15:10:59',449.981000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11845,8,8,'2019-08-21 15:10:59',450.545000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11846,8,8,'2019-08-21 15:10:59',450.960000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11847,8,8,'2019-08-21 15:10:59',451.477000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11848,8,8,'2019-08-21 15:10:59',451.786000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11849,8,8,'2019-08-21 15:10:59',452.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11850,8,8,'2019-08-21 15:10:59',453.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11851,8,8,'2019-08-21 15:10:59',454.207000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11852,8,8,'2019-08-21 15:10:59',455.023000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11853,8,8,'2019-08-21 15:10:59',455.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11854,8,8,'2019-08-21 15:10:59',456.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11855,8,8,'2019-08-21 15:10:59',457.770000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11856,8,8,'2019-08-21 15:10:59',458.586000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11857,8,8,'2019-08-21 15:10:59',459.418000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11858,8,8,'2019-08-21 15:10:59',459.784000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11859,8,8,'2019-08-21 15:10:59',460.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11860,8,8,'2019-08-21 15:10:59',460.722000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11861,8,8,'2019-08-21 15:10:59',461.199000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11862,8,8,'2019-08-21 15:10:59',462.132000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11863,8,8,'2019-08-21 15:10:59',462.964000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11864,8,8,'2019-08-21 15:10:59',463.334000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11865,8,8,'2019-08-21 15:10:59',463.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11866,8,8,'2019-08-21 15:10:59',464.662000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11867,8,8,'2019-08-21 15:10:59',465.528000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11868,8,8,'2019-08-21 15:10:59',465.937000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11869,8,8,'2019-08-21 15:10:59',466.478000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11870,8,8,'2019-08-21 15:10:59',467.243000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11871,8,8,'2019-08-21 15:10:59',468.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11872,8,8,'2019-08-21 15:10:59',468.548000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11873,8,8,'2019-08-21 15:10:59',468.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11874,8,8,'2019-08-21 15:10:59',469.790000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11875,8,8,'2019-08-21 15:10:59',470.122000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11876,8,8,'2019-08-21 15:10:59',470.706000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11877,8,8,'2019-08-21 15:10:59',471.571000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11878,8,8,'2019-08-21 15:10:59',472.388000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11879,8,8,'2019-08-21 15:10:59',473.336000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11880,8,8,'2019-08-21 15:10:59',474.302000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11881,8,8,'2019-08-21 15:10:59',474.660000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11882,8,8,'2019-08-21 15:10:59',475.268000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11883,8,8,'2019-08-21 15:10:59',476.083000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11884,8,8,'2019-08-21 15:10:59',476.485000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11885,8,8,'2019-08-21 15:10:59',476.999000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11886,8,8,'2019-08-21 15:10:59',477.453000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11887,8,8,'2019-08-21 15:10:59',477.814000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11888,8,8,'2019-08-21 15:10:59',478.647000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11889,8,8,'2019-08-21 15:10:59',479.613000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11890,8,8,'2019-08-21 15:10:59',480.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11891,8,8,'2019-08-21 15:10:59',480.781000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11892,8,8,'2019-08-21 15:10:59',481.311000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11893,8,8,'2019-08-21 15:10:59',482.227000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11894,8,8,'2019-08-21 15:10:59',483.076000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11895,8,8,'2019-08-21 15:10:59',484.008000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11896,8,8,'2019-08-21 15:10:59',484.352000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11897,8,8,'2019-08-21 15:10:59',484.957000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11898,8,8,'2019-08-21 15:10:59',485.351000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11899,8,8,'2019-08-21 15:10:59',485.839000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11900,8,8,'2019-08-21 15:10:59',486.738000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11901,8,8,'2019-08-21 15:10:59',487.570000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11902,8,8,'2019-08-21 15:10:59',487.992000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11903,8,8,'2019-08-21 15:10:59',488.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11904,8,8,'2019-08-21 15:10:59',489.269000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11905,8,8,'2019-08-21 15:10:59',490.234000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11906,8,8,'2019-08-21 15:10:59',491.117000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11907,8,8,'2019-08-21 15:10:59',491.472000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11908,8,8,'2019-08-21 15:10:59',492.083000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11909,8,8,'2019-08-21 15:10:59',492.915000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11910,8,8,'2019-08-21 15:10:59',493.247000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11911,8,8,'2019-08-21 15:10:59',493.864000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11912,8,8,'2019-08-21 15:10:59',494.880000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11913,8,8,'2019-08-21 15:10:59',495.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11914,8,8,'2019-08-21 15:10:59',495.679000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11915,8,8,'2019-08-21 15:10:59',496.527000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11916,8,8,'2019-08-21 15:10:59',497.377000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11917,8,8,'2019-08-21 15:10:59',498.326000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11918,8,8,'2019-08-21 15:10:59',498.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11919,8,8,'2019-08-21 15:10:59',499.175000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11920,8,8,'2019-08-21 15:10:59',500.141000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11921,8,8,'2019-08-21 15:10:59',500.528000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11922,8,8,'2019-08-21 15:10:59',501.106000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11923,8,8,'2019-08-21 15:10:59',502.038000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11924,8,8,'2019-08-21 15:10:59',502.838000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11925,8,8,'2019-08-21 15:10:59',503.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11926,8,8,'2019-08-21 15:10:59',504.586000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11927,8,8,'2019-08-21 15:10:59',504.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11928,8,8,'2019-08-21 15:10:59',505.401000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11929,8,8,'2019-08-21 15:10:59',506.233000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11930,8,8,'2019-08-21 15:10:59',506.569000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11931,8,8,'2019-08-21 15:10:59',507.050000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11932,8,8,'2019-08-21 15:10:59',507.948000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11933,8,8,'2019-08-21 15:10:59',508.798000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11934,8,8,'2019-08-21 15:10:59',509.780000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11935,8,8,'2019-08-21 15:10:59',510.230000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11936,8,8,'2019-08-21 15:10:59',510.679000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11937,8,8,'2019-08-21 15:10:59',511.444000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11938,8,8,'2019-08-21 15:10:59',511.783000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11939,8,8,'2019-08-21 15:10:59',512.427000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11940,8,8,'2019-08-21 15:10:59',513.227000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11941,8,8,'2019-08-21 15:10:59',514.158000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11942,8,8,'2019-08-21 15:10:59',514.557000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11943,8,8,'2019-08-21 15:10:59',515.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11944,8,8,'2019-08-21 15:10:59',515.956000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11945,8,8,'2019-08-21 15:10:59',516.855000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11946,8,8,'2019-08-21 15:10:59',517.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11947,8,8,'2019-08-21 15:10:59',518.703000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11948,8,8,'2019-08-21 15:10:59',519.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11949,8,8,'2019-08-21 15:10:59',519.652000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11950,8,8,'2019-08-21 15:10:59',520.013000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11951,8,8,'2019-08-21 15:10:59',520.651000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11952,8,8,'2019-08-21 15:10:59',521.567000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11953,8,8,'2019-08-21 15:10:59',522.433000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11954,8,8,'2019-08-21 15:10:59',523.198000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11955,8,8,'2019-08-21 15:10:59',524.015000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11956,8,8,'2019-08-21 15:10:59',524.359000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11957,8,8,'2019-08-21 15:10:59',524.863000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11958,8,8,'2019-08-21 15:10:59',525.662000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11959,8,8,'2019-08-21 15:10:59',526.645000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11960,8,8,'2019-08-21 15:10:59',526.951000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11961,8,8,'2019-08-21 15:10:59',527.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11962,8,8,'2019-08-21 15:10:59',528.593000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11963,8,8,'2019-08-21 15:10:59',529.491000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11964,8,8,'2019-08-21 15:10:59',529.865000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11965,8,8,'2019-08-21 15:10:59',530.274000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11966,8,8,'2019-08-21 15:10:59',531.057000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11967,8,8,'2019-08-21 15:10:59',531.429000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11968,8,8,'2019-08-21 15:10:59',532.039000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11969,8,8,'2019-08-21 15:10:59',532.396000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11970,8,8,'2019-08-21 15:10:59',532.888000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11971,8,8,'2019-08-21 15:10:59',533.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11972,8,8,'2019-08-21 15:10:59',534.669000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11973,8,8,'2019-08-21 15:10:59',535.651000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11974,8,8,'2019-08-21 15:10:59',536.417000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11975,8,8,'2019-08-21 15:10:59',537.416000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11976,8,8,'2019-08-21 15:10:59',538.266000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11977,8,8,'2019-08-21 15:10:59',538.600000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11978,8,8,'2019-08-21 15:10:59',539.164000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11979,8,8,'2019-08-21 15:10:59',539.527000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11980,8,8,'2019-08-21 15:10:59',539.964000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11981,8,8,'2019-08-21 15:10:59',540.796000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11982,8,8,'2019-08-21 15:10:59',541.611000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11983,8,8,'2019-08-21 15:10:59',542.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11984,8,8,'2019-08-21 15:10:59',542.461000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11985,8,8,'2019-08-21 15:10:59',543.310000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11986,8,8,'2019-08-21 15:10:59',543.622000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11987,8,8,'2019-08-21 15:10:59',544.275000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11988,8,8,'2019-08-21 15:10:59',545.191000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11989,8,8,'2019-08-21 15:10:59',546.174000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11990,8,8,'2019-08-21 15:10:59',546.557000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11991,8,8,'2019-08-21 15:10:59',547.173000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11992,8,8,'2019-08-21 15:10:59',548.138000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11993,8,8,'2019-08-21 15:10:59',548.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11994,8,8,'2019-08-21 15:10:59',549.803000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11995,8,8,'2019-08-21 15:10:59',550.719000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11996,8,8,'2019-08-21 15:10:59',551.085000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11997,8,8,'2019-08-21 15:10:59',551.518000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11998,8,8,'2019-08-21 15:10:59',551.892000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (11999,8,8,'2019-08-21 15:10:59',552.483000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12000,8,8,'2019-08-21 15:10:59',553.382000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12001,8,8,'2019-08-21 15:10:59',553.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12002,8,8,'2019-08-21 15:10:59',554.364000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12003,8,8,'2019-08-21 15:10:59',555.347000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12004,8,8,'2019-08-21 15:10:59',556.180000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12005,8,8,'2019-08-21 15:10:59',557.161000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12006,8,8,'2019-08-21 15:10:59',558.127000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12007,8,8,'2019-08-21 15:10:59',559.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12008,8,8,'2019-08-21 15:10:59',559.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12009,8,8,'2019-08-21 15:10:59',560.075000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12010,8,8,'2019-08-21 15:10:59',561.007000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12011,8,8,'2019-08-21 15:10:59',561.906000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12012,8,8,'2019-08-21 15:10:59',562.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12013,8,8,'2019-08-21 15:10:59',562.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12014,8,8,'2019-08-21 15:10:59',563.555000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12015,8,8,'2019-08-21 15:10:59',564.014000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12016,8,8,'2019-08-21 15:10:59',564.387000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12017,8,8,'2019-08-21 15:10:59',565.336000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12018,8,8,'2019-08-21 15:10:59',566.335000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12019,8,8,'2019-08-21 15:10:59',567.351000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12020,8,8,'2019-08-21 15:10:59',567.856000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12021,8,8,'2019-08-21 15:10:59',568.350000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12022,8,8,'2019-08-21 15:10:59',569.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12023,8,8,'2019-08-21 15:10:59',570.048000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12024,8,8,'2019-08-21 15:10:59',570.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12025,8,8,'2019-08-21 15:10:59',571.745000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12026,8,8,'2019-08-21 15:10:59',572.152000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12027,8,8,'2019-08-21 15:10:59',572.595000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12028,8,8,'2019-08-21 15:10:59',573.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12029,8,8,'2019-08-21 15:10:59',583.285000,0.000000,NULL,NULL,NULL,NULL,'e-186',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12030,8,8,'2019-08-21 15:10:59',583.287000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12031,8,8,'2019-08-21 15:10:59',583.288000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12032,8,8,'2019-08-21 15:10:59',583.290000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12033,8,8,'2019-08-21 15:10:59',583.291000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12034,8,8,'2019-08-21 15:10:59',583.292000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12035,8,8,'2019-08-21 15:10:59',583.348000,0.000000,NULL,NULL,NULL,NULL,'e-253',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12036,8,8,'2019-08-21 15:10:59',583.350000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12037,8,8,'2019-08-21 15:10:59',583.352000,0.000000,NULL,NULL,NULL,NULL,'e-150',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12038,8,8,'2019-08-21 15:10:59',583.353000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12039,8,8,'2019-08-21 15:10:59',583.354000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12040,8,8,'2019-08-21 15:10:59',583.354000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12041,8,8,'2019-08-21 15:10:59',583.357000,0.000000,NULL,NULL,NULL,NULL,'e-248',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12042,8,8,'2019-08-21 15:10:59',583.359000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12043,8,8,'2019-08-21 15:10:59',583.360000,0.000000,NULL,NULL,NULL,NULL,'e-220',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12044,8,8,'2019-08-21 15:10:59',583.361000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12045,8,8,'2019-08-21 15:10:59',583.409000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12046,8,8,'2019-08-21 15:10:59',583.473000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12047,8,8,'2019-08-21 15:10:59',583.474000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12048,8,8,'2019-08-21 15:10:59',583.477000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12049,8,8,'2019-08-21 15:10:59',583.478000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12050,8,8,'2019-08-21 15:10:59',583.480000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12051,8,8,'2019-08-21 15:10:59',583.481000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12052,8,8,'2019-08-21 15:10:59',583.483000,0.000000,NULL,NULL,NULL,NULL,'e-186',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12053,8,8,'2019-08-21 15:10:59',583.484000,0.000000,NULL,NULL,NULL,NULL,'e-236',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12054,8,8,'2019-08-21 15:10:59',583.485000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12055,8,8,'2019-08-21 15:10:59',583.534000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12056,8,8,'2019-08-21 15:10:59',583.535000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12057,8,8,'2019-08-21 15:10:59',583.536000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12058,8,8,'2019-08-21 15:10:59',583.539000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12059,8,8,'2019-08-21 15:10:59',583.540000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12060,8,8,'2019-08-21 15:10:59',583.543000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12061,8,8,'2019-08-21 15:10:59',583.544000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12062,8,8,'2019-08-21 15:10:59',583.546000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12063,8,8,'2019-08-21 15:10:59',583.547000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12064,8,8,'2019-08-21 15:10:59',583.548000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12065,8,8,'2019-08-21 15:10:59',583.597000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12066,8,8,'2019-08-21 15:10:59',583.599000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12067,8,8,'2019-08-21 15:10:59',583.602000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12068,8,8,'2019-08-21 15:10:59',583.603000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12069,8,8,'2019-08-21 15:10:59',583.605000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12070,8,8,'2019-08-21 15:10:59',583.606000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12071,8,8,'2019-08-21 15:10:59',583.608000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12072,8,8,'2019-08-21 15:10:59',583.609000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12073,8,8,'2019-08-21 15:10:59',583.610000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12074,8,8,'2019-08-21 15:10:59',583.659000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12075,8,8,'2019-08-21 15:10:59',583.661000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12076,8,8,'2019-08-21 15:10:59',583.664000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12077,8,8,'2019-08-21 15:10:59',583.665000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12078,8,8,'2019-08-21 15:10:59',583.668000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12079,8,8,'2019-08-21 15:10:59',583.669000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12080,8,8,'2019-08-21 15:10:59',583.672000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12081,8,8,'2019-08-21 15:10:59',583.673000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12082,8,8,'2019-08-21 15:10:59',583.722000,0.000000,NULL,NULL,NULL,NULL,'e-219',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12083,8,8,'2019-08-21 15:10:59',583.723000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12084,8,8,'2019-08-21 15:10:59',583.725000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12085,8,8,'2019-08-21 15:10:59',583.727000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12086,8,8,'2019-08-21 15:10:59',583.728000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12087,8,8,'2019-08-21 15:10:59',583.730000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12088,8,8,'2019-08-21 15:10:59',583.732000,0.000000,NULL,NULL,NULL,NULL,'e-191',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12089,8,8,'2019-08-21 15:10:59',583.734000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12090,8,8,'2019-08-21 15:10:59',583.735000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12091,8,8,'2019-08-21 15:10:59',583.784000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12092,8,8,'2019-08-21 15:10:59',583.785000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12093,8,8,'2019-08-21 15:10:59',583.787000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12094,8,8,'2019-08-21 15:10:59',583.789000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12095,8,8,'2019-08-21 15:10:59',583.790000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12096,8,8,'2019-08-21 15:10:59',583.793000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12097,8,8,'2019-08-21 15:10:59',583.795000,0.000000,NULL,NULL,NULL,NULL,'e-191',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12098,8,8,'2019-08-21 15:10:59',583.797000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12099,8,8,'2019-08-21 15:10:59',583.798000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12100,8,8,'2019-08-21 15:10:59',583.847000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12101,8,8,'2019-08-21 15:10:59',583.849000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12102,8,8,'2019-08-21 15:10:59',583.852000,0.000000,NULL,NULL,NULL,NULL,'e-244',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12103,8,8,'2019-08-21 15:10:59',583.853000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12104,8,8,'2019-08-21 15:10:59',583.855000,0.000000,NULL,NULL,NULL,NULL,'e-218',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12105,8,8,'2019-08-21 15:10:59',583.856000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12106,8,8,'2019-08-21 15:10:59',583.858000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12107,8,8,'2019-08-21 15:10:59',583.859000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12108,8,8,'2019-08-21 15:10:59',583.860000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12109,8,8,'2019-08-21 15:10:59',588.003000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12110,8,8,'2019-08-21 15:10:59',588.005000,0.000000,NULL,NULL,NULL,NULL,'e-189',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12111,8,8,'2019-08-21 15:10:59',588.007000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12112,8,8,'2019-08-21 15:10:59',588.009000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12113,8,8,'2019-08-21 15:10:59',588.010000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12114,8,8,'2019-08-21 15:10:59',588.012000,0.000000,NULL,NULL,NULL,NULL,'e-240',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12115,8,8,'2019-08-21 15:10:59',588.014000,0.000000,NULL,NULL,NULL,NULL,'e-221',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12116,8,8,'2019-08-21 15:10:59',588.016000,0.000000,NULL,NULL,NULL,NULL,'e-242',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12117,8,8,'2019-08-21 15:10:59',588.017000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12118,8,8,'2019-08-21 15:10:59',588.065000,0.000000,NULL,NULL,NULL,NULL,'e-207',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12119,8,8,'2019-08-21 15:10:59',588.067000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12120,8,8,'2019-08-21 15:10:59',588.068000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12121,8,8,'2019-08-21 15:10:59',588.071000,0.000000,NULL,NULL,NULL,NULL,'e-236',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12122,8,8,'2019-08-21 15:10:59',588.072000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12123,8,8,'2019-08-21 15:10:59',588.073000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12124,8,8,'2019-08-21 15:10:59',588.078000,0.000000,NULL,NULL,NULL,NULL,'e-182',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12125,8,8,'2019-08-21 15:10:59',588.079000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12126,8,8,'2019-08-21 15:10:59',588.080000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12127,8,8,'2019-08-21 15:10:59',588.128000,0.000000,NULL,NULL,NULL,NULL,'e-207',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12128,8,8,'2019-08-21 15:10:59',588.130000,0.000000,NULL,NULL,NULL,NULL,'e-241',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12129,8,8,'2019-08-21 15:10:59',588.131000,0.000000,NULL,NULL,NULL,NULL,'e-251',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12130,8,8,'2019-08-21 15:10:59',588.134000,0.000000,NULL,NULL,NULL,NULL,'e-238',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12131,8,8,'2019-08-21 15:10:59',588.135000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12132,8,8,'2019-08-21 15:10:59',588.141000,0.000000,NULL,NULL,NULL,NULL,'e-182',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12133,8,8,'2019-08-21 15:10:59',588.142000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12134,8,8,'2019-08-21 15:10:59',588.144000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12135,8,8,'2019-08-21 15:10:59',588.191000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12136,8,8,'2019-08-21 15:10:59',588.193000,0.000000,NULL,NULL,NULL,NULL,'e-223',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12137,8,8,'2019-08-21 15:10:59',588.195000,0.000000,NULL,NULL,NULL,NULL,'e-253',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12138,8,8,'2019-08-21 15:10:59',588.197000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12139,8,8,'2019-08-21 15:10:59',588.198000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12140,8,8,'2019-08-21 15:10:59',588.202000,0.000000,NULL,NULL,NULL,NULL,'e-209',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12141,8,8,'2019-08-21 15:10:59',588.204000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12142,8,8,'2019-08-21 15:10:59',588.205000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12143,8,8,'2019-08-21 15:10:59',588.207000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12144,8,8,'2019-08-21 15:10:59',588.253000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12145,8,8,'2019-08-21 15:10:59',588.255000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12146,8,8,'2019-08-21 15:10:59',588.257000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12147,8,8,'2019-08-21 15:10:59',588.259000,0.000000,NULL,NULL,NULL,NULL,'e-246',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12148,8,8,'2019-08-21 15:10:59',588.260000,0.000000,NULL,NULL,NULL,NULL,'e-250',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12149,8,8,'2019-08-21 15:10:59',588.261000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12150,8,8,'2019-08-21 15:10:59',588.263000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12151,8,8,'2019-08-21 15:10:59',588.266000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12152,8,8,'2019-08-21 15:10:59',588.267000,0.000000,NULL,NULL,NULL,NULL,'e-252',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12153,8,8,'2019-08-21 15:10:59',588.315000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12154,8,8,'2019-08-21 15:10:59',588.317000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12155,8,8,'2019-08-21 15:10:59',588.320000,0.000000,NULL,NULL,NULL,NULL,'e-180',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12156,8,8,'2019-08-21 15:10:59',588.321000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12157,8,8,'2019-08-21 15:10:59',588.325000,0.000000,NULL,NULL,NULL,NULL,'e-202',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12158,8,8,'2019-08-21 15:10:59',588.326000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12159,8,8,'2019-08-21 15:10:59',588.328000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12160,8,8,'2019-08-21 15:10:59',588.329000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12161,8,8,'2019-08-21 15:10:59',588.330000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12162,8,8,'2019-08-21 15:10:59',588.378000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12163,8,8,'2019-08-21 15:10:59',588.380000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12164,8,8,'2019-08-21 15:10:59',588.383000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12165,8,8,'2019-08-21 15:10:59',588.384000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12166,8,8,'2019-08-21 15:10:59',588.388000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12167,8,8,'2019-08-21 15:10:59',588.389000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12168,8,8,'2019-08-21 15:10:59',588.391000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12169,8,8,'2019-08-21 15:10:59',588.392000,0.000000,NULL,NULL,NULL,NULL,'e-210',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12170,8,8,'2019-08-21 15:10:59',588.393000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12171,8,8,'2019-08-21 15:10:59',588.440000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12172,8,8,'2019-08-21 15:10:59',588.442000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12173,8,8,'2019-08-21 15:10:59',588.445000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12174,8,8,'2019-08-21 15:10:59',588.446000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12175,8,8,'2019-08-21 15:10:59',588.450000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12176,8,8,'2019-08-21 15:10:59',588.451000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12177,8,8,'2019-08-21 15:10:59',588.453000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12178,8,8,'2019-08-21 15:10:59',588.454000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12179,8,8,'2019-08-21 15:10:59',588.455000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12180,8,8,'2019-08-21 15:10:59',588.503000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12181,8,8,'2019-08-21 15:10:59',588.505000,0.000000,NULL,NULL,NULL,NULL,'e-222',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12182,8,8,'2019-08-21 15:10:59',588.508000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12183,8,8,'2019-08-21 15:10:59',588.509000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12184,8,8,'2019-08-21 15:10:59',588.513000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12185,8,8,'2019-08-21 15:10:59',588.514000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12186,8,8,'2019-08-21 15:10:59',588.516000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12187,8,8,'2019-08-21 15:10:59',588.517000,0.000000,NULL,NULL,NULL,NULL,'e-210',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12188,8,8,'2019-08-21 15:10:59',588.518000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12189,8,8,'2019-08-21 15:10:59',588.565000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12190,8,8,'2019-08-21 15:10:59',588.570000,0.000000,NULL,NULL,NULL,NULL,'e-178',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12191,8,8,'2019-08-21 15:10:59',588.571000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12192,8,8,'2019-08-21 15:10:59',588.575000,0.000000,NULL,NULL,NULL,NULL,'e-206',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12193,8,8,'2019-08-21 15:10:59',588.576000,0.000000,NULL,NULL,NULL,NULL,'e-249',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12194,8,8,'2019-08-21 15:10:59',588.578000,0.000000,NULL,NULL,NULL,NULL,'e-190',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12195,8,8,'2019-08-21 15:10:59',588.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12196,8,8,'2019-08-21 15:10:59',588.580000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12197,8,8,'2019-08-21 15:10:59',631.176000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12198,8,8,'2019-08-21 15:10:59',650.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12199,8,8,'2019-08-21 15:10:59',650.449000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12200,8,8,'2019-08-21 15:10:59',670.863000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12201,8,8,'2019-08-21 15:10:59',671.745000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12202,8,8,'2019-08-21 15:10:59',672.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12203,8,8,'2019-08-21 15:10:59',673.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12204,8,8,'2019-08-21 15:10:59',673.560000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12205,8,8,'2019-08-21 15:10:59',674.442000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12206,8,8,'2019-08-21 15:10:59',675.208000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12207,8,8,'2019-08-21 15:10:59',675.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12208,8,8,'2019-08-21 15:10:59',676.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12209,8,8,'2019-08-21 15:10:59',677.072000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12210,8,8,'2019-08-21 15:10:59',677.889000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12211,8,8,'2019-08-21 15:10:59',678.236000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12212,8,8,'2019-08-21 15:10:59',678.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12213,8,8,'2019-08-21 15:10:59',679.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12214,8,8,'2019-08-21 15:10:59',679.670000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12215,8,8,'2019-08-21 15:10:59',680.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12216,8,8,'2019-08-21 15:10:59',681.368000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12217,8,8,'2019-08-21 15:10:59',681.856000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12218,8,8,'2019-08-21 15:10:59',682.301000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12219,8,8,'2019-08-21 15:10:59',683.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12220,8,8,'2019-08-21 15:10:59',683.399000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12221,8,8,'2019-08-21 15:10:59',683.965000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12222,8,8,'2019-08-21 15:10:59',684.914000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12223,8,8,'2019-08-21 15:10:59',685.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12224,8,8,'2019-08-21 15:10:59',686.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12225,8,8,'2019-08-21 15:10:59',687.428000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12226,8,8,'2019-08-21 15:10:59',687.848000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12227,8,8,'2019-08-21 15:10:59',688.228000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12228,8,8,'2019-08-21 15:10:59',688.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12229,8,8,'2019-08-21 15:10:59',688.993000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12230,8,8,'2019-08-21 15:10:59',689.792000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12231,8,8,'2019-08-21 15:10:59',690.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12232,8,8,'2019-08-21 15:10:59',691.407000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12233,8,8,'2019-08-21 15:10:59',692.306000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12234,8,8,'2019-08-21 15:10:59',693.305000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12235,8,8,'2019-08-21 15:10:59',693.757000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12236,8,8,'2019-08-21 15:10:59',694.154000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12237,8,8,'2019-08-21 15:10:59',694.665000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12238,8,8,'2019-08-21 15:10:59',695.137000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12239,8,8,'2019-08-21 15:10:59',696.118000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12240,8,8,'2019-08-21 15:10:59',696.984000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12241,8,8,'2019-08-21 15:10:59',697.750000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12242,8,8,'2019-08-21 15:10:59',698.516000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12243,8,8,'2019-08-21 15:10:59',699.448000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12244,8,8,'2019-08-21 15:10:59',700.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12245,8,8,'2019-08-21 15:10:59',700.686000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12246,8,8,'2019-08-21 15:10:59',701.263000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12247,8,8,'2019-08-21 15:10:59',701.613000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12248,8,8,'2019-08-21 15:10:59',702.229000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12249,8,8,'2019-08-21 15:10:59',702.783000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12250,8,8,'2019-08-21 15:10:59',703.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12251,8,8,'2019-08-21 15:10:59',704.060000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12252,8,8,'2019-08-21 15:10:59',704.909000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12253,8,8,'2019-08-21 15:10:59',705.233000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12254,8,8,'2019-08-21 15:10:59',705.708000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12255,8,8,'2019-08-21 15:10:59',706.523000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12256,8,8,'2019-08-21 15:10:59',707.473000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12257,8,8,'2019-08-21 15:10:59',708.306000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12258,8,8,'2019-08-21 15:10:59',709.204000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12259,8,8,'2019-08-21 15:10:59',710.003000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12260,8,8,'2019-08-21 15:10:59',710.836000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12261,8,8,'2019-08-21 15:10:59',711.164000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12262,8,8,'2019-08-21 15:10:59',711.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12263,8,8,'2019-08-21 15:10:59',712.001000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12264,8,8,'2019-08-21 15:10:59',712.601000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12265,8,8,'2019-08-21 15:10:59',713.366000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12266,8,8,'2019-08-21 15:10:59',713.746000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12267,8,8,'2019-08-21 15:10:59',714.332000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12268,8,8,'2019-08-21 15:10:59',715.314000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12269,8,8,'2019-08-21 15:10:59',716.080000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12270,8,8,'2019-08-21 15:10:59',716.929000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12271,8,8,'2019-08-21 15:10:59',717.266000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12272,8,8,'2019-08-21 15:10:59',717.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12273,8,8,'2019-08-21 15:10:59',718.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12274,8,8,'2019-08-21 15:10:59',718.678000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12275,8,8,'2019-08-21 15:10:59',718.960000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12276,8,8,'2019-08-21 15:10:59',719.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12277,8,8,'2019-08-21 15:10:59',720.559000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12278,8,8,'2019-08-21 15:10:59',721.407000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12279,8,8,'2019-08-21 15:10:59',722.224000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12280,8,8,'2019-08-21 15:10:59',723.089000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12281,8,8,'2019-08-21 15:10:59',724.055000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12282,8,8,'2019-08-21 15:10:59',724.870000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12283,8,8,'2019-08-21 15:10:59',725.263000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12284,8,8,'2019-08-21 15:10:59',725.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12285,8,8,'2019-08-21 15:10:59',726.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12286,8,8,'2019-08-21 15:10:59',727.139000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12287,8,8,'2019-08-21 15:10:59',727.634000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12288,8,8,'2019-08-21 15:10:59',728.533000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12289,8,8,'2019-08-21 15:10:59',728.934000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12290,8,8,'2019-08-21 15:10:59',729.382000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12291,8,8,'2019-08-21 15:10:59',729.740000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12292,8,8,'2019-08-21 15:10:59',730.215000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12293,8,8,'2019-08-21 15:10:59',731.030000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12294,8,8,'2019-08-21 15:10:59',731.930000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12295,8,8,'2019-08-21 15:10:59',732.812000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12296,8,8,'2019-08-21 15:10:59',733.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12297,8,8,'2019-08-21 15:10:59',734.158000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12298,8,8,'2019-08-21 15:10:59',734.760000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12299,8,8,'2019-08-21 15:10:59',735.592000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12300,8,8,'2019-08-21 15:10:59',735.923000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12301,8,8,'2019-08-21 15:10:59',736.375000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12302,8,8,'2019-08-21 15:10:59',737.141000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12303,8,8,'2019-08-21 15:10:59',737.906000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12304,8,8,'2019-08-21 15:10:59',738.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12305,8,8,'2019-08-21 15:10:59',739.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12306,8,8,'2019-08-21 15:10:59',739.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12307,8,8,'2019-08-21 15:10:59',740.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12308,8,8,'2019-08-21 15:10:59',741.436000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12309,8,8,'2019-08-21 15:10:59',741.762000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12310,8,8,'2019-08-21 15:10:59',742.335000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12311,8,8,'2019-08-21 15:10:59',743.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12312,8,8,'2019-08-21 15:10:59',743.949000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12313,8,8,'2019-08-21 15:10:59',744.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12314,8,8,'2019-08-21 15:10:59',745.312000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12315,8,8,'2019-08-21 15:10:59',745.748000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12316,8,8,'2019-08-21 15:10:59',746.563000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12317,8,8,'2019-08-21 15:10:59',746.875000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12318,8,8,'2019-08-21 15:10:59',747.346000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12319,8,8,'2019-08-21 15:10:59',748.162000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12320,8,8,'2019-08-21 15:10:59',749.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12321,8,8,'2019-08-21 15:10:59',749.457000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12322,8,8,'2019-08-21 15:10:59',749.843000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12323,8,8,'2019-08-21 15:10:59',750.314000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12324,8,8,'2019-08-21 15:10:59',750.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12325,8,8,'2019-08-21 15:10:59',751.625000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12326,8,8,'2019-08-21 15:10:59',752.557000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12327,8,8,'2019-08-21 15:10:59',753.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12328,8,8,'2019-08-21 15:10:59',754.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12329,8,8,'2019-08-21 15:10:59',755.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12330,8,8,'2019-08-21 15:10:59',755.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12331,8,8,'2019-08-21 15:10:59',756.020000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12332,8,8,'2019-08-21 15:10:59',756.952000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12333,8,8,'2019-08-21 15:10:59',757.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12334,8,8,'2019-08-21 15:10:59',758.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12335,8,8,'2019-08-21 15:10:59',758.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12336,8,8,'2019-08-21 15:10:59',759.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12337,8,8,'2019-08-21 15:10:59',760.481000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12338,8,8,'2019-08-21 15:10:59',760.883000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12339,8,8,'2019-08-21 15:10:59',761.364000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12340,8,8,'2019-08-21 15:10:59',762.163000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12341,8,8,'2019-08-21 15:10:59',763.112000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12342,8,8,'2019-08-21 15:10:59',763.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12343,8,8,'2019-08-21 15:10:59',764.111000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12344,8,8,'2019-08-21 15:10:59',765.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12345,8,8,'2019-08-21 15:10:59',766.025000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12346,8,8,'2019-08-21 15:10:59',766.399000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12347,8,8,'2019-08-21 15:10:59',766.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12348,8,8,'2019-08-21 15:10:59',767.773000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12349,8,8,'2019-08-21 15:10:59',768.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12350,8,8,'2019-08-21 15:10:59',768.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12351,8,8,'2019-08-21 15:10:59',769.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12352,8,8,'2019-08-21 15:10:59',770.421000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12353,8,8,'2019-08-21 15:10:59',770.857000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12354,8,8,'2019-08-21 15:10:59',771.403000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12355,8,8,'2019-08-21 15:10:59',772.169000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12356,8,8,'2019-08-21 15:10:59',773.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12357,8,8,'2019-08-21 15:10:59',774.050000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12358,8,8,'2019-08-21 15:10:59',774.387000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12359,8,8,'2019-08-21 15:10:59',774.899000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12360,8,8,'2019-08-21 15:10:59',775.882000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12361,8,8,'2019-08-21 15:10:59',776.213000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12362,8,8,'2019-08-21 15:10:59',776.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12363,8,8,'2019-08-21 15:10:59',777.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12364,8,8,'2019-08-21 15:10:59',778.250000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12365,8,8,'2019-08-21 15:10:59',778.662000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12366,8,8,'2019-08-21 15:10:59',779.511000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12367,8,8,'2019-08-21 15:10:59',780.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12368,8,8,'2019-08-21 15:10:59',781.309000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12369,8,8,'2019-08-21 15:10:59',781.770000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12370,8,8,'2019-08-21 15:10:59',782.291000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12371,8,8,'2019-08-21 15:10:59',782.597000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12372,8,8,'2019-08-21 15:10:59',783.174000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12373,8,8,'2019-08-21 15:10:59',784.022000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12374,8,8,'2019-08-21 15:10:59',784.838000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12375,8,8,'2019-08-21 15:10:59',785.721000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12376,8,8,'2019-08-21 15:10:59',786.687000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12377,8,8,'2019-08-21 15:10:59',787.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12378,8,8,'2019-08-21 15:10:59',787.901000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12379,8,8,'2019-08-21 15:10:59',788.468000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12380,8,8,'2019-08-21 15:10:59',789.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12381,8,8,'2019-08-21 15:10:59',790.232000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12382,8,8,'2019-08-21 15:10:59',790.594000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12383,8,8,'2019-08-21 15:10:59',791.198000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12384,8,8,'2019-08-21 15:10:59',792.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12385,8,8,'2019-08-21 15:10:59',793.062000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12386,8,8,'2019-08-21 15:10:59',793.912000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12387,8,8,'2019-08-21 15:10:59',794.711000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12388,8,8,'2019-08-21 15:10:59',795.660000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12389,8,8,'2019-08-21 15:10:59',796.029000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12390,8,8,'2019-08-21 15:10:59',796.643000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12391,8,8,'2019-08-21 15:10:59',796.998000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12392,8,8,'2019-08-21 15:10:59',797.591000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12393,8,8,'2019-08-21 15:10:59',798.057000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12394,8,8,'2019-08-21 15:10:59',798.523000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12395,8,8,'2019-08-21 15:10:59',799.473000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12396,8,8,'2019-08-21 15:10:59',800.321000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12397,8,8,'2019-08-21 15:10:59',801.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12398,8,8,'2019-08-21 15:10:59',801.718000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12399,8,8,'2019-08-21 15:10:59',802.220000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12400,8,8,'2019-08-21 15:10:59',803.035000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12401,8,8,'2019-08-21 15:10:59',803.884000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12402,8,8,'2019-08-21 15:10:59',804.319000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12403,8,8,'2019-08-21 15:10:59',804.800000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12404,8,8,'2019-08-21 15:10:59',805.666000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12405,8,8,'2019-08-21 15:10:59',805.974000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12406,8,8,'2019-08-21 15:10:59',806.664000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12407,8,8,'2019-08-21 15:10:59',807.431000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12408,8,8,'2019-08-21 15:10:59',808.296000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12409,8,8,'2019-08-21 15:10:59',809.229000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12410,8,8,'2019-08-21 15:10:59',810.194000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12411,8,8,'2019-08-21 15:10:59',810.542000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12412,8,8,'2019-08-21 15:10:59',811.093000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12413,8,8,'2019-08-21 15:10:59',811.450000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12414,8,8,'2019-08-21 15:10:59',811.875000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12415,8,8,'2019-08-21 15:10:59',812.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12416,8,8,'2019-08-21 15:10:59',813.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12417,8,8,'2019-08-21 15:10:59',814.473000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12418,8,8,'2019-08-21 15:10:59',814.879000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12419,8,8,'2019-08-21 15:10:59',815.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12420,8,8,'2019-08-21 15:10:59',815.837000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12421,8,8,'2019-08-21 15:10:59',816.438000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12422,8,8,'2019-08-21 15:10:59',817.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12423,8,8,'2019-08-21 15:10:59',818.302000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12424,8,8,'2019-08-21 15:10:59',819.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12425,8,8,'2019-08-21 15:10:59',819.689000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12426,8,8,'2019-08-21 15:10:59',820.116000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12427,8,8,'2019-08-21 15:10:59',820.949000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12428,8,8,'2019-08-21 15:10:59',821.715000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12429,8,8,'2019-08-21 15:10:59',822.514000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12430,8,8,'2019-08-21 15:10:59',822.846000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12431,8,8,'2019-08-21 15:10:59',823.413000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12432,8,8,'2019-08-21 15:10:59',824.295000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12433,8,8,'2019-08-21 15:10:59',825.294000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12434,8,8,'2019-08-21 15:10:59',826.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12435,8,8,'2019-08-21 15:10:59',827.092000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12436,8,8,'2019-08-21 15:10:59',827.516000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12437,8,8,'2019-08-21 15:10:59',828.024000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12438,8,8,'2019-08-21 15:10:59',829.023000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12439,8,8,'2019-08-21 15:10:59',829.361000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12440,8,8,'2019-08-21 15:10:59',829.956000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12441,8,8,'2019-08-21 15:10:59',830.755000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12442,8,8,'2019-08-21 15:10:59',831.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12443,8,8,'2019-08-21 15:10:59',832.586000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12444,8,8,'2019-08-21 15:10:59',833.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12445,8,8,'2019-08-21 15:10:59',833.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12446,8,8,'2019-08-21 15:10:59',833.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12447,8,8,'2019-08-21 15:10:59',834.468000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12448,8,8,'2019-08-21 15:10:59',835.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12449,8,8,'2019-08-21 15:10:59',836.365000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12450,8,8,'2019-08-21 15:10:59',837.364000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12451,8,8,'2019-08-21 15:10:59',837.661000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12452,8,8,'2019-08-21 15:10:59',838.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12453,8,8,'2019-08-21 15:10:59',839.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12454,8,8,'2019-08-21 15:10:59',839.878000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12455,8,8,'2019-08-21 15:10:59',840.243000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12456,8,8,'2019-08-21 15:10:59',840.678000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12457,8,8,'2019-08-21 15:10:59',841.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12458,8,8,'2019-08-21 15:10:59',841.998000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12459,8,8,'2019-08-21 15:10:59',842.542000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12460,8,8,'2019-08-21 15:10:59',843.541000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12461,8,8,'2019-08-21 15:10:59',843.843000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12462,8,8,'2019-08-21 15:10:59',844.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12463,8,8,'2019-08-21 15:10:59',845.256000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12464,8,8,'2019-08-21 15:10:59',846.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12465,8,8,'2019-08-21 15:10:59',847.004000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12466,8,8,'2019-08-21 15:10:59',847.786000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12467,8,8,'2019-08-21 15:10:59',848.149000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12468,8,8,'2019-08-21 15:10:59',848.652000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12469,8,8,'2019-08-21 15:10:59',849.484000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12470,8,8,'2019-08-21 15:10:59',849.854000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12471,8,8,'2019-08-21 15:10:59',850.283000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12472,8,8,'2019-08-21 15:10:59',851.083000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12473,8,8,'2019-08-21 15:10:59',851.578000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12474,8,8,'2019-08-21 15:10:59',851.965000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12475,8,8,'2019-08-21 15:10:59',852.781000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12476,8,8,'2019-08-21 15:10:59',853.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12477,8,8,'2019-08-21 15:10:59',854.429000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12478,8,8,'2019-08-21 15:10:59',855.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12479,8,8,'2019-08-21 15:10:59',855.633000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12480,8,8,'2019-08-21 15:10:59',856.061000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12481,8,8,'2019-08-21 15:10:59',856.843000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12482,8,8,'2019-08-21 15:10:59',857.626000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12483,8,8,'2019-08-21 15:10:59',858.022000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12484,8,8,'2019-08-21 15:10:59',858.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12485,8,8,'2019-08-21 15:10:59',858.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12486,8,8,'2019-08-21 15:10:59',859.424000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12487,8,8,'2019-08-21 15:10:59',860.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12488,8,8,'2019-08-21 15:10:59',861.205000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12489,8,8,'2019-08-21 15:10:59',862.188000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12490,8,8,'2019-08-21 15:10:59',863.053000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12491,8,8,'2019-08-21 15:10:59',863.952000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12492,8,8,'2019-08-21 15:10:59',864.296000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12493,8,8,'2019-08-21 15:10:59',864.918000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12494,8,8,'2019-08-21 15:10:59',865.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12495,8,8,'2019-08-21 15:10:59',865.733000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12496,8,8,'2019-08-21 15:10:59',866.516000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12497,8,8,'2019-08-21 15:10:59',867.398000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12498,8,8,'2019-08-21 15:10:59',867.745000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12499,8,8,'2019-08-21 15:10:59',868.230000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12500,8,8,'2019-08-21 15:10:59',869.046000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12501,8,8,'2019-08-21 15:10:59',869.979000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12502,8,8,'2019-08-21 15:10:59',870.744000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12503,8,8,'2019-08-21 15:10:59',871.123000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12504,8,8,'2019-08-21 15:10:59',871.693000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12505,8,8,'2019-08-21 15:10:59',872.011000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12506,8,8,'2019-08-21 15:10:59',872.659000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12507,8,8,'2019-08-21 15:10:59',873.625000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12508,8,8,'2019-08-21 15:10:59',874.607000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12509,8,8,'2019-08-21 15:10:59',874.945000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12510,8,8,'2019-08-21 15:10:59',875.406000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12511,8,8,'2019-08-21 15:10:59',876.271000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12512,8,8,'2019-08-21 15:10:59',877.237000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12513,8,8,'2019-08-21 15:10:59',877.598000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12514,8,8,'2019-08-21 15:10:59',878.170000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12515,8,8,'2019-08-21 15:10:59',878.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12516,8,8,'2019-08-21 15:10:59',879.784000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12517,8,8,'2019-08-21 15:10:59',880.634000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12518,8,8,'2019-08-21 15:10:59',880.977000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12519,8,8,'2019-08-21 15:10:59',881.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12520,8,8,'2019-08-21 15:10:59',882.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12521,8,8,'2019-08-21 15:10:59',883.281000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12522,8,8,'2019-08-21 15:10:59',884.063000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12523,8,8,'2019-08-21 15:10:59',884.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12524,8,8,'2019-08-21 15:10:59',884.862000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12525,8,8,'2019-08-21 15:10:59',885.861000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12526,8,8,'2019-08-21 15:10:59',886.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12527,8,8,'2019-08-21 15:10:59',887.510000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12528,8,8,'2019-08-21 15:10:59',888.342000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12529,8,8,'2019-08-21 15:10:59',888.701000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12530,8,8,'2019-08-21 15:10:59',889.291000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12531,8,8,'2019-08-21 15:10:59',890.240000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12532,8,8,'2019-08-21 15:10:59',891.072000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12533,8,8,'2019-08-21 15:10:59',891.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12534,8,8,'2019-08-21 15:10:59',892.282000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12535,8,8,'2019-08-21 15:10:59',892.688000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12536,8,8,'2019-08-21 15:10:59',893.470000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12537,8,8,'2019-08-21 15:10:59',894.369000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12538,8,8,'2019-08-21 15:10:59',895.268000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12539,8,8,'2019-08-21 15:10:59',895.660000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12540,8,8,'2019-08-21 15:10:59',896.117000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12541,8,8,'2019-08-21 15:10:59',896.518000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12542,8,8,'2019-08-21 15:10:59',896.933000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12543,8,8,'2019-08-21 15:10:59',897.715000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12544,8,8,'2019-08-21 15:10:59',898.531000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12545,8,8,'2019-08-21 15:10:59',899.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12546,8,8,'2019-08-21 15:10:59',899.674000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12547,8,8,'2019-08-21 15:10:59',900.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12548,8,8,'2019-08-21 15:10:59',900.572000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12549,8,8,'2019-08-21 15:10:59',901.111000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12550,8,8,'2019-08-21 15:10:59',902.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12551,8,8,'2019-08-21 15:10:59',903.043000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12552,8,8,'2019-08-21 15:10:59',903.941000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12553,8,8,'2019-08-21 15:10:59',904.940000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12554,8,8,'2019-08-21 15:10:59',905.807000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12555,8,8,'2019-08-21 15:10:59',906.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12556,8,8,'2019-08-21 15:10:59',906.705000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12557,8,8,'2019-08-21 15:10:59',907.471000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12558,8,8,'2019-08-21 15:10:59',907.793000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12559,8,8,'2019-08-21 15:10:59',908.387000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12560,8,8,'2019-08-21 15:10:59',908.821000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12561,8,8,'2019-08-21 15:10:59',909.235000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12562,8,8,'2019-08-21 15:10:59',910.068000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12563,8,8,'2019-08-21 15:10:59',911.067000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12564,8,8,'2019-08-21 15:10:59',911.999000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12565,8,8,'2019-08-21 15:10:59',912.361000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12566,8,8,'2019-08-21 15:10:59',912.998000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12567,8,8,'2019-08-21 15:10:59',913.931000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12568,8,8,'2019-08-21 15:10:59',914.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12569,8,8,'2019-08-21 15:10:59',915.695000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12570,8,8,'2019-08-21 15:10:59',916.072000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12571,8,8,'2019-08-21 15:10:59',916.545000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12572,8,8,'2019-08-21 15:10:59',916.899000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12573,8,8,'2019-08-21 15:10:59',917.311000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12574,8,8,'2019-08-21 15:10:59',918.093000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12575,8,8,'2019-08-21 15:10:59',918.858000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12576,8,8,'2019-08-21 15:10:59',919.239000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12577,8,8,'2019-08-21 15:10:59',919.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12578,8,8,'2019-08-21 15:10:59',920.674000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12579,8,8,'2019-08-21 15:10:59',921.639000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12580,8,8,'2019-08-21 15:10:59',922.003000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12581,8,8,'2019-08-21 15:10:59',922.422000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12582,8,8,'2019-08-21 15:10:59',923.320000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12583,8,8,'2019-08-21 15:10:59',924.236000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12584,8,8,'2019-08-21 15:10:59',925.085000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12585,8,8,'2019-08-21 15:10:59',925.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12586,8,8,'2019-08-21 15:10:59',926.350000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12587,8,8,'2019-08-21 15:10:59',926.866000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12588,8,8,'2019-08-21 15:10:59',927.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12589,8,8,'2019-08-21 15:10:59',928.682000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12590,8,8,'2019-08-21 15:10:59',929.103000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12591,8,8,'2019-08-21 15:10:59',929.514000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12592,8,8,'2019-08-21 15:10:59',930.463000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12593,8,8,'2019-08-21 15:10:59',931.328000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12594,8,8,'2019-08-21 15:10:59',931.745000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12595,8,8,'2019-08-21 15:10:59',932.161000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12596,8,8,'2019-08-21 15:10:59',933.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12597,8,8,'2019-08-21 15:10:59',933.876000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12598,8,8,'2019-08-21 15:10:59',934.266000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12599,8,8,'2019-08-21 15:10:59',942.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12600,8,8,'2019-08-21 15:10:59',942.887000,0.000000,NULL,NULL,NULL,NULL,'e-198',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12601,8,8,'2019-08-21 15:10:59',960.316000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12602,8,8,'2019-08-21 15:10:59',961.082000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12603,8,8,'2019-08-21 15:10:59',962.030000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12604,8,8,'2019-08-21 15:10:59',962.847000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12605,8,8,'2019-08-21 15:10:59',963.745000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12606,8,8,'2019-08-21 15:10:59',964.064000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12607,8,8,'2019-08-21 15:10:59',964.711000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12608,8,8,'2019-08-21 15:10:59',965.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12609,8,8,'2019-08-21 15:10:59',965.677000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12610,8,8,'2019-08-21 15:10:59',966.659000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12611,8,8,'2019-08-21 15:10:59',967.475000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12612,8,8,'2019-08-21 15:10:59',968.290000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12613,8,8,'2019-08-21 15:10:59',969.223000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12614,8,8,'2019-08-21 15:10:59',969.570000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12615,8,8,'2019-08-21 15:10:59',970.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12616,8,8,'2019-08-21 15:10:59',970.438000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12617,8,8,'2019-08-21 15:10:59',971.054000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12618,8,8,'2019-08-21 15:10:59',971.970000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12619,8,8,'2019-08-21 15:10:59',972.952000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12620,8,8,'2019-08-21 15:10:59',973.332000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12621,8,8,'2019-08-21 15:10:59',973.834000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12622,8,8,'2019-08-21 15:10:59',974.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12623,8,8,'2019-08-21 15:10:59',975.683000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12624,8,8,'2019-08-21 15:10:59',976.035000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12625,8,8,'2019-08-21 15:10:59',976.515000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12626,8,8,'2019-08-21 15:10:59',977.280000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12627,8,8,'2019-08-21 15:10:59',978.063000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12628,8,8,'2019-08-21 15:10:59',978.962000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12629,8,8,'2019-08-21 15:10:59',979.845000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12630,8,8,'2019-08-21 15:10:59',980.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12631,8,8,'2019-08-21 15:10:59',980.793000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12632,8,8,'2019-08-21 15:10:59',981.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12633,8,8,'2019-08-21 15:10:59',981.609000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12634,8,8,'2019-08-21 15:10:59',982.257000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12635,8,8,'2019-08-21 15:10:59',982.392000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12636,8,8,'2019-08-21 15:10:59',983.274000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12637,8,8,'2019-08-21 15:10:59',983.608000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12638,8,8,'2019-08-21 15:10:59',984.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12639,8,8,'2019-08-21 15:10:59',985.105000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12640,8,8,'2019-08-21 15:10:59',986.071000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12641,8,8,'2019-08-21 15:10:59',986.986000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12642,8,8,'2019-08-21 15:10:59',987.952000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12643,8,8,'2019-08-21 15:10:59',988.751000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12644,8,8,'2019-08-21 15:10:59',989.667000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12645,8,8,'2019-08-21 15:10:59',990.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12646,8,8,'2019-08-21 15:10:59',990.566000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12647,8,8,'2019-08-21 15:10:59',990.890000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12648,8,8,'2019-08-21 15:10:59',991.549000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12649,8,8,'2019-08-21 15:10:59',992.480000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12650,8,8,'2019-08-21 15:10:59',993.099000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12651,8,8,'2019-08-21 15:10:59',993.347000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12652,8,8,'2019-08-21 15:10:59',994.195000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12653,8,8,'2019-08-21 15:10:59',995.095000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12654,8,8,'2019-08-21 15:10:59',995.408000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12655,8,8,'2019-08-21 15:10:59',995.960000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12656,8,8,'2019-08-21 15:10:59',996.726000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12657,8,8,'2019-08-21 15:10:59',997.725000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12658,8,8,'2019-08-21 15:10:59',998.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12659,8,8,'2019-08-21 15:10:59',998.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12660,8,8,'2019-08-21 15:10:59',999.473000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12661,8,8,'2019-08-21 15:10:59',1000.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12662,8,8,'2019-08-21 15:10:59',1001.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12663,8,8,'2019-08-21 15:10:59',1001.520000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12664,8,8,'2019-08-21 15:10:59',1001.954000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12665,8,8,'2019-08-21 15:10:59',1002.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12666,8,8,'2019-08-21 15:10:59',1003.284000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12667,8,8,'2019-08-21 15:10:59',1003.901000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12668,8,8,'2019-08-21 15:10:59',1004.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12669,8,8,'2019-08-21 15:10:59',1005.816000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12670,8,8,'2019-08-21 15:10:59',1006.599000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12671,8,8,'2019-08-21 15:10:59',1006.955000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12672,8,8,'2019-08-21 15:10:59',1007.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12673,8,8,'2019-08-21 15:10:59',1008.513000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12674,8,8,'2019-08-21 15:10:59',1009.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12675,8,8,'2019-08-21 15:10:59',1010.194000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12676,8,8,'2019-08-21 15:10:59',1011.210000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12677,8,8,'2019-08-21 15:10:59',1011.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12678,8,8,'2019-08-21 15:10:59',1012.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12679,8,8,'2019-08-21 15:10:59',1012.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12680,8,8,'2019-08-21 15:10:59',1012.858000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12681,8,8,'2019-08-21 15:10:59',1013.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12682,8,8,'2019-08-21 15:10:59',1014.257000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12683,8,8,'2019-08-21 15:10:59',1014.706000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12684,8,8,'2019-08-21 15:10:59',1015.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12685,8,8,'2019-08-21 15:10:59',1016.371000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12686,8,8,'2019-08-21 15:10:59',1017.254000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12687,8,8,'2019-08-21 15:10:59',1017.595000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12688,8,8,'2019-08-21 15:10:59',1018.169000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12689,8,8,'2019-08-21 15:10:59',1018.936000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12690,8,8,'2019-08-21 15:10:59',1019.934000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12691,8,8,'2019-08-21 15:10:59',1020.733000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12692,8,8,'2019-08-21 15:10:59',1021.125000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12693,8,8,'2019-08-21 15:10:59',1021.632000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12694,8,8,'2019-08-21 15:10:59',1022.564000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12695,8,8,'2019-08-21 15:10:59',1023.413000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12696,8,8,'2019-08-21 15:10:59',1023.787000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12697,8,8,'2019-08-21 15:10:59',1024.362000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12698,8,8,'2019-08-21 15:10:59',1025.278000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12699,8,8,'2019-08-21 15:10:59',1025.703000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12700,8,8,'2019-08-21 15:10:59',1026.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12701,8,8,'2019-08-21 15:10:59',1026.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12702,8,8,'2019-08-21 15:10:59',1027.726000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12703,8,8,'2019-08-21 15:10:59',1028.104000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12704,8,8,'2019-08-21 15:10:59',1028.607000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12705,8,8,'2019-08-21 15:10:59',1029.540000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12706,8,8,'2019-08-21 15:10:59',1030.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12707,8,8,'2019-08-21 15:10:59',1031.338000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12708,8,8,'2019-08-21 15:10:59',1031.693000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12709,8,8,'2019-08-21 15:10:59',1032.121000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12710,8,8,'2019-08-21 15:10:59',1032.672000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12711,8,8,'2019-08-21 15:10:59',1033.053000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12712,8,8,'2019-08-21 15:10:59',1034.002000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12713,8,8,'2019-08-21 15:10:59',1034.834000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12714,8,8,'2019-08-21 15:10:59',1035.364000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12715,8,8,'2019-08-21 15:10:59',1035.684000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12716,8,8,'2019-08-21 15:10:59',1035.970000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12717,8,8,'2019-08-21 15:10:59',1036.666000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12718,8,8,'2019-08-21 15:10:59',1037.598000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12719,8,8,'2019-08-21 15:10:59',1038.480000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12720,8,8,'2019-08-21 15:10:59',1039.363000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12721,8,8,'2019-08-21 15:10:59',1040.312000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12722,8,8,'2019-08-21 15:10:59',1041.194000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12723,8,8,'2019-08-21 15:10:59',1041.517000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12724,8,8,'2019-08-21 15:10:59',1042.010000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12725,8,8,'2019-08-21 15:10:59',1042.843000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12726,8,8,'2019-08-21 15:10:59',1043.841000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12727,8,8,'2019-08-21 15:10:59',1044.707000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12728,8,8,'2019-08-21 15:10:59',1045.087000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12729,8,8,'2019-08-21 15:10:59',1045.656000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12730,8,8,'2019-08-21 15:10:59',1046.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12731,8,8,'2019-08-21 15:10:59',1047.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12732,8,8,'2019-08-21 15:10:59',1047.971000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12733,8,8,'2019-08-21 15:10:59',1048.453000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12734,8,8,'2019-08-21 15:10:59',1049.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12735,8,8,'2019-08-21 15:10:59',1049.564000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12736,8,8,'2019-08-21 15:10:59',1050.234000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12737,8,8,'2019-08-21 15:10:59',1051.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12738,8,8,'2019-08-21 15:10:59',1051.511000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12739,8,8,'2019-08-21 15:10:59',1052.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12740,8,8,'2019-08-21 15:10:59',1052.981000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12741,8,8,'2019-08-21 15:10:59',1053.764000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12742,8,8,'2019-08-21 15:10:59',1054.579000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12743,8,8,'2019-08-21 15:10:59',1054.949000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12744,8,8,'2019-08-21 15:10:59',1055.379000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12745,8,8,'2019-08-21 15:10:59',1056.327000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12746,8,8,'2019-08-21 15:10:59',1057.276000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12747,8,8,'2019-08-21 15:10:59',1058.042000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12748,8,8,'2019-08-21 15:10:59',1058.429000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12749,8,8,'2019-08-21 15:10:59',1058.908000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12750,8,8,'2019-08-21 15:10:59',1059.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12751,8,8,'2019-08-21 15:10:59',1059.724000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12752,8,8,'2019-08-21 15:10:59',1060.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12753,8,8,'2019-08-21 15:10:59',1061.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12754,8,8,'2019-08-21 15:10:59',1062.060000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12755,8,8,'2019-08-21 15:10:59',1062.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12756,8,8,'2019-08-21 15:10:59',1063.220000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12757,8,8,'2019-08-21 15:10:59',1064.086000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12758,8,8,'2019-08-21 15:10:59',1064.409000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12759,8,8,'2019-08-21 15:10:59',1065.052000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12760,8,8,'2019-08-21 15:10:59',1065.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12761,8,8,'2019-08-21 15:10:59',1066.899000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12762,8,8,'2019-08-21 15:10:59',1067.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12763,8,8,'2019-08-21 15:10:59',1067.748000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12764,8,8,'2019-08-21 15:10:59',1068.697000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12765,8,8,'2019-08-21 15:10:59',1069.496000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12766,8,8,'2019-08-21 15:10:59',1070.412000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12767,8,8,'2019-08-21 15:10:59',1070.702000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12768,8,8,'2019-08-21 15:10:59',1071.211000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12769,8,8,'2019-08-21 15:10:59',1072.177000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12770,8,8,'2019-08-21 15:10:59',1073.026000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12771,8,8,'2019-08-21 15:10:59',1073.354000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12772,8,8,'2019-08-21 15:10:59',1073.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12773,8,8,'2019-08-21 15:10:59',1074.891000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12774,8,8,'2019-08-21 15:10:59',1075.689000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12775,8,8,'2019-08-21 15:10:59',1076.655000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12776,8,8,'2019-08-21 15:10:59',1076.985000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12777,8,8,'2019-08-21 15:10:59',1077.604000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12778,8,8,'2019-08-21 15:10:59',1078.486000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12779,8,8,'2019-08-21 15:10:59',1079.469000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12780,8,8,'2019-08-21 15:10:59',1080.234000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12781,8,8,'2019-08-21 15:10:59',1081.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12782,8,8,'2019-08-21 15:10:59',1081.453000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12783,8,8,'2019-08-21 15:10:59',1081.916000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12784,8,8,'2019-08-21 15:10:59',1082.300000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12785,8,8,'2019-08-21 15:10:59',1082.766000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12786,8,8,'2019-08-21 15:10:59',1083.548000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12787,8,8,'2019-08-21 15:10:59',1083.954000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12788,8,8,'2019-08-21 15:10:59',1084.431000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12789,8,8,'2019-08-21 15:10:59',1084.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12790,8,8,'2019-08-21 15:10:59',1085.279000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12791,8,8,'2019-08-21 15:10:59',1086.095000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12792,8,8,'2019-08-21 15:10:59',1086.961000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12793,8,8,'2019-08-21 15:10:59',1087.743000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12794,8,8,'2019-08-21 15:10:59',1088.059000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12795,8,8,'2019-08-21 15:10:59',1088.576000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12796,8,8,'2019-08-21 15:10:59',1089.524000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12797,8,8,'2019-08-21 15:10:59',1090.457000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12798,8,8,'2019-08-21 15:10:59',1090.831000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12799,8,8,'2019-08-21 15:10:59',1091.456000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12800,8,8,'2019-08-21 15:10:59',1092.422000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12801,8,8,'2019-08-21 15:10:59',1093.337000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12802,8,8,'2019-08-21 15:10:59',1093.676000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12803,8,8,'2019-08-21 15:10:59',1094.336000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12804,8,8,'2019-08-21 15:10:59',1094.653000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12805,8,8,'2019-08-21 15:10:59',1095.135000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12806,8,8,'2019-08-21 15:10:59',1095.968000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12807,8,8,'2019-08-21 15:10:59',1096.967000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12808,8,8,'2019-08-21 15:10:59',1097.815000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12809,8,8,'2019-08-21 15:10:59',1098.665000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12810,8,8,'2019-08-21 15:10:59',1099.061000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12811,8,8,'2019-08-21 15:10:59',1099.464000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12812,8,8,'2019-08-21 15:10:59',1100.279000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12813,8,8,'2019-08-21 15:10:59',1101.162000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12814,8,8,'2019-08-21 15:10:59',1101.512000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12815,8,8,'2019-08-21 15:10:59',1101.928000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12816,8,8,'2019-08-21 15:10:59',1102.710000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12817,8,8,'2019-08-21 15:10:59',1103.576000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12818,8,8,'2019-08-21 15:10:59',1103.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12819,8,8,'2019-08-21 15:10:59',1104.458000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12820,8,8,'2019-08-21 15:10:59',1105.274000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12821,8,8,'2019-08-21 15:10:59',1106.273000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12822,8,8,'2019-08-21 15:10:59',1106.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12823,8,8,'2019-08-21 15:10:59',1107.056000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12824,8,8,'2019-08-21 15:10:59',1107.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12825,8,8,'2019-08-21 15:10:59',1108.721000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12826,8,8,'2019-08-21 15:10:59',1109.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12827,8,8,'2019-08-21 15:10:59',1110.436000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12828,8,8,'2019-08-21 15:10:59',1110.830000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12829,8,8,'2019-08-21 15:10:59',1111.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12830,8,8,'2019-08-21 15:10:59',1111.707000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12831,8,8,'2019-08-21 15:10:59',1112.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12832,8,8,'2019-08-21 15:10:59',1113.148000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12833,8,8,'2019-08-21 15:10:59',1114.031000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12834,8,8,'2019-08-21 15:10:59',1114.847000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12835,8,8,'2019-08-21 15:10:59',1115.663000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12836,8,8,'2019-08-21 15:10:59',1116.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12837,8,8,'2019-08-21 15:10:59',1116.429000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12838,8,8,'2019-08-21 15:10:59',1117.328000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12839,8,8,'2019-08-21 15:10:59',1118.094000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12840,8,8,'2019-08-21 15:10:59',1118.474000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12841,8,8,'2019-08-21 15:10:59',1118.976000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12842,8,8,'2019-08-21 15:10:59',1119.392000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12843,8,8,'2019-08-21 15:10:59',1119.842000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12844,8,8,'2019-08-21 15:10:59',1120.841000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12845,8,8,'2019-08-21 15:10:59',1121.706000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12846,8,8,'2019-08-21 15:10:59',1122.556000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12847,8,8,'2019-08-21 15:10:59',1122.831000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12848,8,8,'2019-08-21 15:10:59',1123.504000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12849,8,8,'2019-08-21 15:10:59',1124.337000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12850,8,8,'2019-08-21 15:10:59',1124.797000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12851,8,8,'2019-08-21 15:10:59',1125.235000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12852,8,8,'2019-08-21 15:10:59',1126.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12853,8,8,'2019-08-21 15:10:59',1126.950000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12854,8,8,'2019-08-21 15:10:59',1127.298000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12855,8,8,'2019-08-21 15:10:59',1127.750000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12856,8,8,'2019-08-21 15:10:59',1128.715000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12857,8,8,'2019-08-21 15:10:59',1129.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12858,8,8,'2019-08-21 15:10:59',1130.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12859,8,8,'2019-08-21 15:10:59',1131.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12860,8,8,'2019-08-21 15:10:59',1132.111000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12861,8,8,'2019-08-21 15:10:59',1132.521000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12862,8,8,'2019-08-21 15:10:59',1132.877000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12863,8,8,'2019-08-21 15:10:59',1133.826000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12864,8,8,'2019-08-21 15:10:59',1134.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12865,8,8,'2019-08-21 15:10:59',1134.659000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12866,8,8,'2019-08-21 15:10:59',1135.458000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12867,8,8,'2019-08-21 15:10:59',1136.290000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12868,8,8,'2019-08-21 15:10:59',1136.606000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12869,8,8,'2019-08-21 15:10:59',1137.206000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12870,8,8,'2019-08-21 15:10:59',1137.726000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12871,8,8,'2019-08-21 15:10:59',1138.122000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12872,8,8,'2019-08-21 15:10:59',1138.971000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12873,8,8,'2019-08-21 15:10:59',1139.803000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12874,8,8,'2019-08-21 15:10:59',1140.669000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12875,8,8,'2019-08-21 15:10:59',1141.518000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12876,8,8,'2019-08-21 15:10:59',1141.841000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12877,8,8,'2019-08-21 15:10:59',1142.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12878,8,8,'2019-08-21 15:10:59',1142.697000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12879,8,8,'2019-08-21 15:10:59',1143.216000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12880,8,8,'2019-08-21 15:10:59',1144.182000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12881,8,8,'2019-08-21 15:10:59',1145.181000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12882,8,8,'2019-08-21 15:10:59',1146.130000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12883,8,8,'2019-08-21 15:10:59',1146.945000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12884,8,8,'2019-08-21 15:10:59',1147.296000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12885,8,8,'2019-08-21 15:10:59',1147.711000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12886,8,8,'2019-08-21 15:10:59',1148.644000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12887,8,8,'2019-08-21 15:10:59',1148.960000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12888,8,8,'2019-08-21 15:10:59',1149.593000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12889,8,8,'2019-08-21 15:10:59',1150.441000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12890,8,8,'2019-08-21 15:10:59',1150.978000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12891,8,8,'2019-08-21 15:10:59',1151.308000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12892,8,8,'2019-08-21 15:10:59',1152.239000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12893,8,8,'2019-08-21 15:10:59',1153.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12894,8,8,'2019-08-21 15:10:59',1154.171000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12895,8,8,'2019-08-21 15:10:59',1154.456000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12896,8,8,'2019-08-21 15:10:59',1154.937000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12897,8,8,'2019-08-21 15:10:59',1155.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12898,8,8,'2019-08-21 15:10:59',1156.434000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12899,8,8,'2019-08-21 15:10:59',1156.701000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12900,8,8,'2019-08-21 15:10:59',1157.617000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12901,8,8,'2019-08-21 15:10:59',1158.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12902,8,8,'2019-08-21 15:10:59',1159.531000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12903,8,8,'2019-08-21 15:10:59',1159.852000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12904,8,8,'2019-08-21 15:10:59',1160.414000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12905,8,8,'2019-08-21 15:10:59',1161.396000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12906,8,8,'2019-08-21 15:10:59',1162.345000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12907,8,8,'2019-08-21 15:10:59',1163.194000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12908,8,8,'2019-08-21 15:10:59',1164.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12909,8,8,'2019-08-21 15:10:59',1164.461000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12910,8,8,'2019-08-21 15:10:59',1164.992000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12911,8,8,'2019-08-21 15:10:59',1165.398000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12912,8,8,'2019-08-21 15:10:59',1165.858000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12913,8,8,'2019-08-21 15:10:59',1166.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12914,8,8,'2019-08-21 15:10:59',1167.214000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12915,8,8,'2019-08-21 15:10:59',1167.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12916,8,8,'2019-08-21 15:10:59',1168.655000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12917,8,8,'2019-08-21 15:10:59',1169.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12918,8,8,'2019-08-21 15:10:59',1170.403000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12919,8,8,'2019-08-21 15:10:59',1170.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12920,8,8,'2019-08-21 15:10:59',1171.285000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12921,8,8,'2019-08-21 15:10:59',1172.068000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12922,8,8,'2019-08-21 15:10:59',1172.851000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12923,8,8,'2019-08-21 15:10:59',1173.265000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12924,8,8,'2019-08-21 15:10:59',1173.716000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12925,8,8,'2019-08-21 15:10:59',1174.499000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12926,8,8,'2019-08-21 15:10:59',1175.298000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12927,8,8,'2019-08-21 15:10:59',1175.655000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12928,8,8,'2019-08-21 15:10:59',1176.180000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12929,8,8,'2019-08-21 15:10:59',1177.146000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12930,8,8,'2019-08-21 15:10:59',1178.128000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12931,8,8,'2019-08-21 15:10:59',1179.061000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12932,8,8,'2019-08-21 15:10:59',1179.447000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12933,8,8,'2019-08-21 15:10:59',1179.992000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12934,8,8,'2019-08-21 15:10:59',1180.991000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12935,8,8,'2019-08-21 15:10:59',1181.282000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12936,8,8,'2019-08-21 15:10:59',1181.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12937,8,8,'2019-08-21 15:10:59',1182.723000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12938,8,8,'2019-08-21 15:10:59',1183.722000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12939,8,8,'2019-08-21 15:10:59',1184.521000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12940,8,8,'2019-08-21 15:10:59',1185.287000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12941,8,8,'2019-08-21 15:10:59',1185.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12942,8,8,'2019-08-21 15:10:59',1186.069000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12943,8,8,'2019-08-21 15:10:59',1186.466000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12944,8,8,'2019-08-21 15:10:59',1186.918000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12945,8,8,'2019-08-21 15:10:59',1187.734000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12946,8,8,'2019-08-21 15:10:59',1188.733000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12947,8,8,'2019-08-21 15:10:59',1189.732000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12948,8,8,'2019-08-21 15:10:59',1190.066000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12949,8,8,'2019-08-21 15:10:59',1190.515000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12950,8,8,'2019-08-21 15:10:59',1190.924000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12951,8,8,'2019-08-21 15:10:59',1191.347000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12952,8,8,'2019-08-21 15:10:59',1192.129000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12953,8,8,'2019-08-21 15:10:59',1193.095000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12954,8,8,'2019-08-21 15:10:59',1193.495000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12955,8,8,'2019-08-21 15:10:59',1193.911000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12956,8,8,'2019-08-21 15:10:59',1194.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12957,8,8,'2019-08-21 15:10:59',1195.659000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12958,8,8,'2019-08-21 15:10:59',1196.047000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12959,8,8,'2019-08-21 15:10:59',1196.491000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12960,8,8,'2019-08-21 15:10:59',1197.407000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12961,8,8,'2019-08-21 15:10:59',1198.339000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12962,8,8,'2019-08-21 15:10:59',1199.122000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12963,8,8,'2019-08-21 15:10:59',1199.566000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12964,8,8,'2019-08-21 15:10:59',1199.921000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12965,8,8,'2019-08-21 15:10:59',1200.753000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12966,8,8,'2019-08-21 15:10:59',1201.702000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12967,8,8,'2019-08-21 15:10:59',1201.997000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12968,8,8,'2019-08-21 15:10:59',1202.534000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12969,8,8,'2019-08-21 15:10:59',1203.434000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12970,8,8,'2019-08-21 15:10:59',1204.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12971,8,8,'2019-08-21 15:10:59',1205.032000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12972,8,8,'2019-08-21 15:10:59',1205.386000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12973,8,8,'2019-08-21 15:10:59',1206.014000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12974,8,8,'2019-08-21 15:10:59',1206.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12975,8,8,'2019-08-21 15:10:59',1207.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12976,8,8,'2019-08-21 15:10:59',1208.158000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12977,8,8,'2019-08-21 15:10:59',1208.578000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12978,8,8,'2019-08-21 15:10:59',1209.394000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12979,8,8,'2019-08-21 15:10:59',1209.833000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12980,8,8,'2019-08-21 15:10:59',1210.210000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12981,8,8,'2019-08-21 15:10:59',1210.579000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12982,8,8,'2019-08-21 15:10:59',1211.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12983,8,8,'2019-08-21 15:10:59',1211.958000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12984,8,8,'2019-08-21 15:10:59',1212.957000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12985,8,8,'2019-08-21 15:10:59',1213.723000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12986,8,8,'2019-08-21 15:10:59',1214.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12987,8,8,'2019-08-21 15:10:59',1214.604000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12988,8,8,'2019-08-21 15:10:59',1215.537000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12989,8,8,'2019-08-21 15:10:59',1216.536000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12990,8,8,'2019-08-21 15:10:59',1216.791000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12991,8,8,'2019-08-21 15:10:59',1217.535000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12992,8,8,'2019-08-21 15:10:59',1218.384000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12993,8,8,'2019-08-21 15:10:59',1219.267000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12994,8,8,'2019-08-21 15:10:59',1220.115000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12995,8,8,'2019-08-21 15:10:59',1221.031000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12996,8,8,'2019-08-21 15:10:59',1221.370000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12997,8,8,'2019-08-21 15:10:59',1221.863000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12998,8,8,'2019-08-21 15:10:59',1222.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (12999,8,8,'2019-08-21 15:10:59',1223.512000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13000,8,8,'2019-08-21 15:10:59',1223.881000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13001,9,9,'2019-08-21 15:11:15',21.647000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13002,9,9,'2019-08-21 15:11:15',22.163000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13003,9,9,'2019-08-21 15:11:15',22.497000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13004,9,9,'2019-08-21 15:11:15',23.262000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13005,9,9,'2019-08-21 15:11:15',24.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13006,9,9,'2019-08-21 15:11:15',25.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13007,9,9,'2019-08-21 15:11:15',25.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13008,9,9,'2019-08-21 15:11:15',25.859000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13009,9,9,'2019-08-21 15:11:15',26.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13010,9,9,'2019-08-21 15:11:15',27.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13011,9,9,'2019-08-21 15:11:15',28.673000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13012,9,9,'2019-08-21 15:11:15',29.037000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13013,9,9,'2019-08-21 15:11:15',29.589000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13014,9,9,'2019-08-21 15:11:15',30.537000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13015,9,9,'2019-08-21 15:11:15',31.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13016,9,9,'2019-08-21 15:11:15',32.285000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13017,9,9,'2019-08-21 15:11:15',33.218000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13018,9,9,'2019-08-21 15:11:15',34.051000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13019,9,9,'2019-08-21 15:11:15',34.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13020,9,9,'2019-08-21 15:11:15',35.865000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13021,9,9,'2019-08-21 15:11:15',36.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13022,9,9,'2019-08-21 15:11:15',36.797000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13023,9,9,'2019-08-21 15:11:15',37.214000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13024,9,9,'2019-08-21 15:11:15',37.729000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13025,9,9,'2019-08-21 15:11:15',38.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13026,9,9,'2019-08-21 15:11:15',39.494000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13027,9,9,'2019-08-21 15:11:15',40.040000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13028,9,9,'2019-08-21 15:11:15',40.327000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13029,9,9,'2019-08-21 15:11:15',40.605000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13030,9,9,'2019-08-21 15:11:15',41.109000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13031,9,9,'2019-08-21 15:11:15',42.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13032,9,9,'2019-08-21 15:11:15',42.990000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13033,9,9,'2019-08-21 15:11:15',43.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13034,9,9,'2019-08-21 15:11:15',44.371000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13035,9,9,'2019-08-21 15:11:15',44.806000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13036,9,9,'2019-08-21 15:11:15',45.017000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13037,9,9,'2019-08-21 15:11:15',45.737000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13038,9,9,'2019-08-21 15:11:15',46.229000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13039,9,9,'2019-08-21 15:11:15',46.587000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13040,9,9,'2019-08-21 15:11:15',47.386000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13041,9,9,'2019-08-21 15:11:15',48.218000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13042,9,9,'2019-08-21 15:11:15',49.001000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13043,9,9,'2019-08-21 15:11:15',49.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13044,9,9,'2019-08-21 15:11:15',50.766000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13045,9,9,'2019-08-21 15:11:15',51.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13046,9,9,'2019-08-21 15:11:15',51.881000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13047,9,9,'2019-08-21 15:11:15',52.380000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13048,9,9,'2019-08-21 15:11:15',52.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13049,9,9,'2019-08-21 15:11:15',53.146000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13050,9,9,'2019-08-21 15:11:15',53.557000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13051,9,9,'2019-08-21 15:11:15',54.078000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13052,9,9,'2019-08-21 15:11:15',54.944000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13053,9,9,'2019-08-21 15:11:15',55.760000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13054,9,9,'2019-08-21 15:11:15',56.643000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13055,9,9,'2019-08-21 15:11:15',56.988000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13056,9,9,'2019-08-21 15:11:15',57.608000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13057,9,9,'2019-08-21 15:11:15',58.424000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13058,9,9,'2019-08-21 15:11:15',59.390000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13059,9,9,'2019-08-21 15:11:15',60.354000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13060,9,9,'2019-08-21 15:11:15',61.171000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13061,9,9,'2019-08-21 15:11:15',61.541000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13062,9,9,'2019-08-21 15:11:15',62.120000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13063,9,9,'2019-08-21 15:11:15',62.919000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13064,9,9,'2019-08-21 15:11:15',63.408000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13065,9,9,'2019-08-21 15:11:15',63.768000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13066,9,9,'2019-08-21 15:11:15',64.650000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13067,9,9,'2019-08-21 15:11:15',65.003000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13068,9,9,'2019-08-21 15:11:15',65.516000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13069,9,9,'2019-08-21 15:11:15',65.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13070,9,9,'2019-08-21 15:11:15',66.465000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13071,9,9,'2019-08-21 15:11:15',67.447000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13072,9,9,'2019-08-21 15:11:15',68.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13073,9,9,'2019-08-21 15:11:15',69.295000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13074,9,9,'2019-08-21 15:11:15',69.707000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13075,9,9,'2019-08-21 15:11:15',70.228000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13076,9,9,'2019-08-21 15:11:15',71.093000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13077,9,9,'2019-08-21 15:11:15',71.942000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13078,9,9,'2019-08-21 15:11:15',72.241000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13079,9,9,'2019-08-21 15:11:15',72.892000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13080,9,9,'2019-08-21 15:11:15',73.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13081,9,9,'2019-08-21 15:11:15',74.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13082,9,9,'2019-08-21 15:11:15',75.538000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13083,9,9,'2019-08-21 15:11:15',76.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13084,9,9,'2019-08-21 15:11:15',77.437000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13085,9,9,'2019-08-21 15:11:15',77.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13086,9,9,'2019-08-21 15:11:15',78.436000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13087,9,9,'2019-08-21 15:11:15',79.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13088,9,9,'2019-08-21 15:11:15',79.701000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13089,9,9,'2019-08-21 15:11:15',80.083000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13090,9,9,'2019-08-21 15:11:15',80.966000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13091,9,9,'2019-08-21 15:11:15',81.882000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13092,9,9,'2019-08-21 15:11:15',82.863000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13093,9,9,'2019-08-21 15:11:15',83.123000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13094,9,9,'2019-08-21 15:11:15',83.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13095,9,9,'2019-08-21 15:11:15',84.479000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13096,9,9,'2019-08-21 15:11:15',84.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13097,9,9,'2019-08-21 15:11:15',85.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13098,9,9,'2019-08-21 15:11:15',86.210000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13099,9,9,'2019-08-21 15:11:15',86.575000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13100,9,9,'2019-08-21 15:11:15',86.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13101,9,9,'2019-08-21 15:11:15',87.759000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13102,9,9,'2019-08-21 15:11:15',88.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13103,9,9,'2019-08-21 15:11:15',89.028000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13104,9,9,'2019-08-21 15:11:15',89.557000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13105,9,9,'2019-08-21 15:11:15',90.505000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13106,9,9,'2019-08-21 15:11:15',91.321000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13107,9,9,'2019-08-21 15:11:15',91.723000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13108,9,9,'2019-08-21 15:11:15',92.153000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13109,9,9,'2019-08-21 15:11:15',93.136000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13110,9,9,'2019-08-21 15:11:15',93.391000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13111,9,9,'2019-08-21 15:11:15',93.985000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13112,9,9,'2019-08-21 15:11:15',94.917000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13113,9,9,'2019-08-21 15:11:15',95.683000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13114,9,9,'2019-08-21 15:11:15',96.013000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13115,9,9,'2019-08-21 15:11:15',96.482000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13116,9,9,'2019-08-21 15:11:15',97.298000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13117,9,9,'2019-08-21 15:11:15',98.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13118,9,9,'2019-08-21 15:11:15',98.446000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13119,9,9,'2019-08-21 15:11:15',99.096000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13120,9,9,'2019-08-21 15:11:15',99.879000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13121,9,9,'2019-08-21 15:11:15',100.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13122,9,9,'2019-08-21 15:11:15',101.727000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13123,9,9,'2019-08-21 15:11:15',102.509000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13124,9,9,'2019-08-21 15:11:15',102.827000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13125,9,9,'2019-08-21 15:11:15',103.308000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13126,9,9,'2019-08-21 15:11:15',103.705000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13127,9,9,'2019-08-21 15:11:15',104.257000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13128,9,9,'2019-08-21 15:11:15',105.039000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13129,9,9,'2019-08-21 15:11:15',105.822000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13130,9,9,'2019-08-21 15:11:15',106.188000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13131,9,9,'2019-08-21 15:11:15',106.638000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13132,9,9,'2019-08-21 15:11:15',107.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13133,9,9,'2019-08-21 15:11:15',108.669000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13134,9,9,'2019-08-21 15:11:15',109.518000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13135,9,9,'2019-08-21 15:11:15',109.843000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13136,9,9,'2019-08-21 15:11:15',110.301000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13137,9,9,'2019-08-21 15:11:15',111.216000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13138,9,9,'2019-08-21 15:11:15',112.016000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13139,9,9,'2019-08-21 15:11:15',112.848000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13140,9,9,'2019-08-21 15:11:15',113.214000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13141,9,9,'2019-08-21 15:11:15',113.747000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13142,9,9,'2019-08-21 15:11:15',114.122000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13143,9,9,'2019-08-21 15:11:15',114.612000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13144,9,9,'2019-08-21 15:11:15',115.578000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13145,9,9,'2019-08-21 15:11:15',116.577000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13146,9,9,'2019-08-21 15:11:15',117.576000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13147,9,9,'2019-08-21 15:11:15',118.441000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13148,9,9,'2019-08-21 15:11:15',119.240000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13149,9,9,'2019-08-21 15:11:15',119.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13150,9,9,'2019-08-21 15:11:15',120.123000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13151,9,9,'2019-08-21 15:11:15',120.472000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13152,9,9,'2019-08-21 15:11:15',121.056000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13153,9,9,'2019-08-21 15:11:15',121.921000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13154,9,9,'2019-08-21 15:11:15',122.771000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13155,9,9,'2019-08-21 15:11:15',123.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13156,9,9,'2019-08-21 15:11:15',123.619000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13157,9,9,'2019-08-21 15:11:15',123.914000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13158,9,9,'2019-08-21 15:11:15',124.469000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13159,9,9,'2019-08-21 15:11:15',125.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13160,9,9,'2019-08-21 15:11:15',126.267000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13161,9,9,'2019-08-21 15:11:15',127.132000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13162,9,9,'2019-08-21 15:11:15',127.965000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13163,9,9,'2019-08-21 15:11:15',128.254000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13164,9,9,'2019-08-21 15:11:15',128.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13165,9,9,'2019-08-21 15:11:15',129.763000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13166,9,9,'2019-08-21 15:11:15',130.628000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13167,9,9,'2019-08-21 15:11:15',131.544000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13168,9,9,'2019-08-21 15:11:15',131.808000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13169,9,9,'2019-08-21 15:11:15',132.310000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13170,9,9,'2019-08-21 15:11:15',133.126000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13171,9,9,'2019-08-21 15:11:15',133.564000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13172,9,9,'2019-08-21 15:11:15',133.991000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13173,9,9,'2019-08-21 15:11:15',134.442000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13174,9,9,'2019-08-21 15:11:15',134.907000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13175,9,9,'2019-08-21 15:11:15',135.673000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13176,9,9,'2019-08-21 15:11:15',136.672000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13177,9,9,'2019-08-21 15:11:15',137.554000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13178,9,9,'2019-08-21 15:11:15',138.320000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13179,9,9,'2019-08-21 15:11:15',139.202000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13180,9,9,'2019-08-21 15:11:15',139.984000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13181,9,9,'2019-08-21 15:11:15',140.337000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13182,9,9,'2019-08-21 15:11:15',140.884000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13183,9,9,'2019-08-21 15:11:15',141.666000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13184,9,9,'2019-08-21 15:11:15',142.023000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13185,9,9,'2019-08-21 15:11:15',142.532000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13186,9,9,'2019-08-21 15:11:15',143.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13187,9,9,'2019-08-21 15:11:15',143.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13188,9,9,'2019-08-21 15:11:15',144.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13189,9,9,'2019-08-21 15:11:15',145.195000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13190,9,9,'2019-08-21 15:11:15',146.128000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13191,9,9,'2019-08-21 15:11:15',146.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13192,9,9,'2019-08-21 15:11:15',147.027000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13193,9,9,'2019-08-21 15:11:15',147.893000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13194,9,9,'2019-08-21 15:11:15',148.792000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13195,9,9,'2019-08-21 15:11:15',149.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13196,9,9,'2019-08-21 15:11:15',149.724000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13197,9,9,'2019-08-21 15:11:15',150.490000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13198,9,9,'2019-08-21 15:11:15',151.289000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13199,9,9,'2019-08-21 15:11:15',151.572000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13200,9,9,'2019-08-21 15:11:15',152.255000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13201,9,9,'2019-08-21 15:11:15',153.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13202,9,9,'2019-08-21 15:11:15',154.036000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13203,9,9,'2019-08-21 15:11:15',155.035000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13204,9,9,'2019-08-21 15:11:15',155.834000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13205,9,9,'2019-08-21 15:11:15',156.750000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13206,9,9,'2019-08-21 15:11:15',157.094000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13207,9,9,'2019-08-21 15:11:15',157.632000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13208,9,9,'2019-08-21 15:11:15',157.992000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13209,9,9,'2019-08-21 15:11:15',158.414000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13210,9,9,'2019-08-21 15:11:15',158.841000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13211,9,9,'2019-08-21 15:11:15',159.181000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13212,9,9,'2019-08-21 15:11:15',160.079000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13213,9,9,'2019-08-21 15:11:15',161.012000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13214,9,9,'2019-08-21 15:11:15',161.911000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13215,9,9,'2019-08-21 15:11:15',162.727000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13216,9,9,'2019-08-21 15:11:15',163.110000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13217,9,9,'2019-08-21 15:11:15',163.709000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13218,9,9,'2019-08-21 15:11:15',164.508000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13219,9,9,'2019-08-21 15:11:15',164.897000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13220,9,9,'2019-08-21 15:11:15',165.290000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13221,9,9,'2019-08-21 15:11:15',165.675000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13222,9,9,'2019-08-21 15:11:15',166.223000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13223,9,9,'2019-08-21 15:11:15',167.105000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13224,9,9,'2019-08-21 15:11:15',167.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13225,9,9,'2019-08-21 15:11:15',168.953000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13226,9,9,'2019-08-21 15:11:15',169.258000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13227,9,9,'2019-08-21 15:11:15',169.936000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13228,9,9,'2019-08-21 15:11:15',170.298000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13229,9,9,'2019-08-21 15:11:15',170.918000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13230,9,9,'2019-08-21 15:11:15',171.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13231,9,9,'2019-08-21 15:11:15',172.699000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13232,9,9,'2019-08-21 15:11:15',173.647000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13233,9,9,'2019-08-21 15:11:15',174.497000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13234,9,9,'2019-08-21 15:11:15',174.850000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13235,9,9,'2019-08-21 15:11:15',175.279000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13236,9,9,'2019-08-21 15:11:15',175.617000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13237,9,9,'2019-08-21 15:11:15',176.195000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13238,9,9,'2019-08-21 15:11:15',177.110000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13239,9,9,'2019-08-21 15:11:15',178.043000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13240,9,9,'2019-08-21 15:11:15',178.909000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13241,9,9,'2019-08-21 15:11:15',179.857000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13242,9,9,'2019-08-21 15:11:15',180.230000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13243,9,9,'2019-08-21 15:11:15',180.707000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13244,9,9,'2019-08-21 15:11:15',181.622000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13245,9,9,'2019-08-21 15:11:15',182.555000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13246,9,9,'2019-08-21 15:11:15',183.537000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13247,9,9,'2019-08-21 15:11:15',183.824000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13248,9,9,'2019-08-21 15:11:15',184.453000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13249,9,9,'2019-08-21 15:11:15',185.401000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13250,9,9,'2019-08-21 15:11:15',186.301000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13251,9,9,'2019-08-21 15:11:15',187.250000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13252,9,9,'2019-08-21 15:11:15',188.115000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13253,9,9,'2019-08-21 15:11:15',188.932000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13254,9,9,'2019-08-21 15:11:15',189.355000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13255,9,9,'2019-08-21 15:11:15',189.730000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13256,9,9,'2019-08-21 15:11:15',190.204000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13257,9,9,'2019-08-21 15:11:15',190.629000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13258,9,9,'2019-08-21 15:11:15',191.545000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13259,9,9,'2019-08-21 15:11:15',192.311000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13260,9,9,'2019-08-21 15:11:15',192.717000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13261,9,9,'2019-08-21 15:11:15',193.077000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13262,9,9,'2019-08-21 15:11:15',193.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13263,9,9,'2019-08-21 15:11:15',193.976000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13264,9,9,'2019-08-21 15:11:15',194.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13265,9,9,'2019-08-21 15:11:15',195.574000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13266,9,9,'2019-08-21 15:11:15',196.423000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13267,9,9,'2019-08-21 15:11:15',196.775000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13268,9,9,'2019-08-21 15:11:15',197.355000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13269,9,9,'2019-08-21 15:11:15',197.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13270,9,9,'2019-08-21 15:11:15',198.121000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13271,9,9,'2019-08-21 15:11:15',199.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13272,9,9,'2019-08-21 15:11:15',200.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13273,9,9,'2019-08-21 15:11:15',201.001000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13274,9,9,'2019-08-21 15:11:15',201.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13275,9,9,'2019-08-21 15:11:15',201.817000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13276,9,9,'2019-08-21 15:11:15',202.649000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13277,9,9,'2019-08-21 15:11:15',203.432000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13278,9,9,'2019-08-21 15:11:15',204.248000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13279,9,9,'2019-08-21 15:11:15',204.527000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13280,9,9,'2019-08-21 15:11:15',205.180000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13281,9,9,'2019-08-21 15:11:15',206.096000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13282,9,9,'2019-08-21 15:11:15',207.045000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13283,9,9,'2019-08-21 15:11:15',207.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13284,9,9,'2019-08-21 15:11:15',208.027000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13285,9,9,'2019-08-21 15:11:15',208.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13286,9,9,'2019-08-21 15:11:15',208.959000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13287,9,9,'2019-08-21 15:11:15',209.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13288,9,9,'2019-08-21 15:11:15',210.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13289,9,9,'2019-08-21 15:11:15',211.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13290,9,9,'2019-08-21 15:11:15',212.289000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13291,9,9,'2019-08-21 15:11:15',212.634000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13292,9,9,'2019-08-21 15:11:15',213.055000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13293,9,9,'2019-08-21 15:11:15',213.441000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13294,9,9,'2019-08-21 15:11:15',213.971000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13295,9,9,'2019-08-21 15:11:15',214.770000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13296,9,9,'2019-08-21 15:11:15',215.735000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13297,9,9,'2019-08-21 15:11:15',216.518000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13298,9,9,'2019-08-21 15:11:15',216.924000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13299,9,9,'2019-08-21 15:11:15',217.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13300,9,9,'2019-08-21 15:11:15',218.433000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13301,9,9,'2019-08-21 15:11:15',219.331000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13302,9,9,'2019-08-21 15:11:15',220.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13303,9,9,'2019-08-21 15:11:15',220.446000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13304,9,9,'2019-08-21 15:11:15',221.029000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13305,9,9,'2019-08-21 15:11:15',221.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13306,9,9,'2019-08-21 15:11:15',222.324000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13307,9,9,'2019-08-21 15:11:15',222.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13308,9,9,'2019-08-21 15:11:15',223.826000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13309,9,9,'2019-08-21 15:11:15',224.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13310,9,9,'2019-08-21 15:11:15',225.080000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13311,9,9,'2019-08-21 15:11:15',225.607000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13312,9,9,'2019-08-21 15:11:15',226.391000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13313,9,9,'2019-08-21 15:11:15',227.355000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13314,9,9,'2019-08-21 15:11:15',228.155000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13315,9,9,'2019-08-21 15:11:15',229.004000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13316,9,9,'2019-08-21 15:11:15',229.887000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13317,9,9,'2019-08-21 15:11:15',230.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13318,9,9,'2019-08-21 15:11:15',230.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13319,9,9,'2019-08-21 15:11:15',231.076000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13320,9,9,'2019-08-21 15:11:15',231.751000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13321,9,9,'2019-08-21 15:11:15',232.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13322,9,9,'2019-08-21 15:11:15',233.004000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13323,9,9,'2019-08-21 15:11:15',233.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13324,9,9,'2019-08-21 15:11:15',234.248000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13325,9,9,'2019-08-21 15:11:15',235.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13326,9,9,'2019-08-21 15:11:15',235.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13327,9,9,'2019-08-21 15:11:15',236.295000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13328,9,9,'2019-08-21 15:11:15',236.779000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13329,9,9,'2019-08-21 15:11:15',237.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13330,9,9,'2019-08-21 15:11:15',238.427000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13331,9,9,'2019-08-21 15:11:15',238.798000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13332,9,9,'2019-08-21 15:11:15',239.326000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13333,9,9,'2019-08-21 15:11:15',240.158000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13334,9,9,'2019-08-21 15:11:15',240.991000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13335,9,9,'2019-08-21 15:11:15',241.823000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13336,9,9,'2019-08-21 15:11:15',242.149000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13337,9,9,'2019-08-21 15:11:15',242.689000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13338,9,9,'2019-08-21 15:11:15',243.538000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13339,9,9,'2019-08-21 15:11:15',243.855000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13340,9,9,'2019-08-21 15:11:15',244.487000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13341,9,9,'2019-08-21 15:11:15',245.270000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13342,9,9,'2019-08-21 15:11:15',246.103000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13343,9,9,'2019-08-21 15:11:15',246.420000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13344,9,9,'2019-08-21 15:11:15',246.901000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13345,9,9,'2019-08-21 15:11:15',247.684000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13346,9,9,'2019-08-21 15:11:15',248.466000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13347,9,9,'2019-08-21 15:11:15',249.249000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13348,9,9,'2019-08-21 15:11:15',249.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13349,9,9,'2019-08-21 15:11:15',250.098000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13350,9,9,'2019-08-21 15:11:15',250.417000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13351,9,9,'2019-08-21 15:11:15',251.063000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13352,9,9,'2019-08-21 15:11:15',251.879000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13353,9,9,'2019-08-21 15:11:15',252.812000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13354,9,9,'2019-08-21 15:11:15',253.693000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13355,9,9,'2019-08-21 15:11:15',254.493000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13356,9,9,'2019-08-21 15:11:15',255.309000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13357,9,9,'2019-08-21 15:11:15',256.308000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13358,9,9,'2019-08-21 15:11:15',256.615000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13359,9,9,'2019-08-21 15:11:15',257.140000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13360,9,9,'2019-08-21 15:11:15',257.503000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13361,9,9,'2019-08-21 15:11:15',258.056000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13362,9,9,'2019-08-21 15:11:15',258.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13363,9,9,'2019-08-21 15:11:15',258.871000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13364,9,9,'2019-08-21 15:11:15',259.870000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13365,9,9,'2019-08-21 15:11:15',260.637000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13366,9,9,'2019-08-21 15:11:15',261.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13367,9,9,'2019-08-21 15:11:15',262.046000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13368,9,9,'2019-08-21 15:11:15',262.401000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13369,9,9,'2019-08-21 15:11:15',263.366000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13370,9,9,'2019-08-21 15:11:15',263.711000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13371,9,9,'2019-08-21 15:11:15',264.216000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13372,9,9,'2019-08-21 15:11:15',265.215000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13373,9,9,'2019-08-21 15:11:15',265.538000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13374,9,9,'2019-08-21 15:11:15',266.214000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13375,9,9,'2019-08-21 15:11:15',267.029000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13376,9,9,'2019-08-21 15:11:15',267.912000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13377,9,9,'2019-08-21 15:11:15',268.827000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13378,9,9,'2019-08-21 15:11:15',269.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13379,9,9,'2019-08-21 15:11:15',270.658000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13380,9,9,'2019-08-21 15:11:15',271.541000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13381,9,9,'2019-08-21 15:11:15',271.888000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13382,9,9,'2019-08-21 15:11:15',272.424000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13383,9,9,'2019-08-21 15:11:15',273.206000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13384,9,9,'2019-08-21 15:11:15',273.634000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13385,9,9,'2019-08-21 15:11:15',274.121000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13386,9,9,'2019-08-21 15:11:15',274.543000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13387,9,9,'2019-08-21 15:11:15',275.087000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13388,9,9,'2019-08-21 15:11:15',275.869000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13389,9,9,'2019-08-21 15:11:15',276.636000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13390,9,9,'2019-08-21 15:11:15',277.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13391,9,9,'2019-08-21 15:11:15',277.783000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13392,9,9,'2019-08-21 15:11:15',278.301000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13393,9,9,'2019-08-21 15:11:15',279.249000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13394,9,9,'2019-08-21 15:11:15',280.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13395,9,9,'2019-08-21 15:11:15',280.498000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13396,9,9,'2019-08-21 15:11:15',281.081000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13397,9,9,'2019-08-21 15:11:15',281.913000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13398,9,9,'2019-08-21 15:11:15',282.812000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13399,9,9,'2019-08-21 15:11:15',283.811000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13400,9,9,'2019-08-21 15:11:15',284.103000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13401,9,9,'2019-08-21 15:11:15',300.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13402,9,9,'2019-08-21 15:11:15',324.487000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13403,9,9,'2019-08-21 15:11:15',325.336000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13404,9,9,'2019-08-21 15:11:15',326.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13405,9,9,'2019-08-21 15:11:15',326.793000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13406,9,9,'2019-08-21 15:11:15',327.084000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13407,9,9,'2019-08-21 15:11:15',327.419000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13408,9,9,'2019-08-21 15:11:15',327.982000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13409,9,9,'2019-08-21 15:11:15',328.849000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13410,9,9,'2019-08-21 15:11:15',329.864000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13411,9,9,'2019-08-21 15:11:15',330.205000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13412,9,9,'2019-08-21 15:11:15',330.780000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13413,9,9,'2019-08-21 15:11:15',331.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13414,9,9,'2019-08-21 15:11:15',332.411000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13415,9,9,'2019-08-21 15:11:15',332.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13416,9,9,'2019-08-21 15:11:15',333.277000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13417,9,9,'2019-08-21 15:11:15',334.143000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13418,9,9,'2019-08-21 15:11:15',335.142000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13419,9,9,'2019-08-21 15:11:15',335.957000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13420,9,9,'2019-08-21 15:11:15',336.740000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13421,9,9,'2019-08-21 15:11:15',337.622000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13422,9,9,'2019-08-21 15:11:15',338.149000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13423,9,9,'2019-08-21 15:11:15',338.571000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13424,9,9,'2019-08-21 15:11:15',339.570000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13425,9,9,'2019-08-21 15:11:15',339.886000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13426,9,9,'2019-08-21 15:11:15',340.386000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13427,9,9,'2019-08-21 15:11:15',341.302000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13428,9,9,'2019-08-21 15:11:15',342.150000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13429,9,9,'2019-08-21 15:11:15',342.420000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13430,9,9,'2019-08-21 15:11:15',343.017000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13431,9,9,'2019-08-21 15:11:15',343.782000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13432,9,9,'2019-08-21 15:11:15',344.598000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13433,9,9,'2019-08-21 15:11:15',345.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13434,9,9,'2019-08-21 15:11:15',345.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13435,9,9,'2019-08-21 15:11:15',345.882000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13436,9,9,'2019-08-21 15:11:15',346.446000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13437,9,9,'2019-08-21 15:11:15',347.361000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13438,9,9,'2019-08-21 15:11:15',348.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13439,9,9,'2019-08-21 15:11:15',348.648000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13440,9,9,'2019-08-21 15:11:15',349.359000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13441,9,9,'2019-08-21 15:11:15',350.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13442,9,9,'2019-08-21 15:11:15',351.041000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13443,9,9,'2019-08-21 15:11:15',351.840000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13444,9,9,'2019-08-21 15:11:15',352.839000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13445,9,9,'2019-08-21 15:11:15',353.639000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13446,9,9,'2019-08-21 15:11:15',354.587000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13447,9,9,'2019-08-21 15:11:15',354.927000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13448,9,9,'2019-08-21 15:11:15',355.470000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13449,9,9,'2019-08-21 15:11:15',355.815000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13450,9,9,'2019-08-21 15:11:15',356.235000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13451,9,9,'2019-08-21 15:11:15',357.135000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13452,9,9,'2019-08-21 15:11:15',358.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13453,9,9,'2019-08-21 15:11:15',358.470000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13454,9,9,'2019-08-21 15:11:15',359.132000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13455,9,9,'2019-08-21 15:11:15',359.438000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13456,9,9,'2019-08-21 15:11:15',360.081000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13457,9,9,'2019-08-21 15:11:15',360.863000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13458,9,9,'2019-08-21 15:11:15',361.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13459,9,9,'2019-08-21 15:11:15',362.043000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13460,9,9,'2019-08-21 15:11:15',362.778000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13461,9,9,'2019-08-21 15:11:15',363.610000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13462,9,9,'2019-08-21 15:11:15',364.460000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13463,9,9,'2019-08-21 15:11:15',364.759000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13464,9,9,'2019-08-21 15:11:15',365.275000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13465,9,9,'2019-08-21 15:11:15',366.108000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13466,9,9,'2019-08-21 15:11:15',367.073000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13467,9,9,'2019-08-21 15:11:15',367.939000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13468,9,9,'2019-08-21 15:11:15',368.302000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13469,9,9,'2019-08-21 15:11:15',368.871000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13470,9,9,'2019-08-21 15:11:15',369.771000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13471,9,9,'2019-08-21 15:11:15',370.108000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13472,9,9,'2019-08-21 15:11:15',370.586000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13473,9,9,'2019-08-21 15:11:15',371.585000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13474,9,9,'2019-08-21 15:11:15',372.484000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13475,9,9,'2019-08-21 15:11:15',372.813000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13476,9,9,'2019-08-21 15:11:15',373.283000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13477,9,9,'2019-08-21 15:11:15',373.642000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13478,9,9,'2019-08-21 15:11:15',374.100000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13479,9,9,'2019-08-21 15:11:15',374.915000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13480,9,9,'2019-08-21 15:11:15',375.864000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13481,9,9,'2019-08-21 15:11:15',376.663000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13482,9,9,'2019-08-21 15:11:15',377.646000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13483,9,9,'2019-08-21 15:11:15',378.013000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13484,9,9,'2019-08-21 15:11:15',378.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13485,9,9,'2019-08-21 15:11:15',379.377000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13486,9,9,'2019-08-21 15:11:15',380.359000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13487,9,9,'2019-08-21 15:11:15',380.728000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13488,9,9,'2019-08-21 15:11:15',381.142000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13489,9,9,'2019-08-21 15:11:15',382.023000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13490,9,9,'2019-08-21 15:11:15',383.022000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13491,9,9,'2019-08-21 15:11:15',383.872000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13492,9,9,'2019-08-21 15:11:15',384.638000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13493,9,9,'2019-08-21 15:11:15',385.049000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13494,9,9,'2019-08-21 15:11:15',385.521000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13495,9,9,'2019-08-21 15:11:15',386.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13496,9,9,'2019-08-21 15:11:15',387.269000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13497,9,9,'2019-08-21 15:11:15',387.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13498,9,9,'2019-08-21 15:11:15',388.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13499,9,9,'2019-08-21 15:11:15',389.050000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13500,9,9,'2019-08-21 15:11:15',389.358000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13501,9,9,'2019-08-21 15:11:15',389.882000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13502,9,9,'2019-08-21 15:11:15',390.848000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13503,9,9,'2019-08-21 15:11:15',391.747000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13504,9,9,'2019-08-21 15:11:15',392.612000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13505,9,9,'2019-08-21 15:11:15',392.933000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13506,9,9,'2019-08-21 15:11:15',393.611000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13507,9,9,'2019-08-21 15:11:15',394.032000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13508,9,9,'2019-08-21 15:11:15',394.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13509,9,9,'2019-08-21 15:11:15',395.426000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13510,9,9,'2019-08-21 15:11:15',395.749000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13511,9,9,'2019-08-21 15:11:15',396.259000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13512,9,9,'2019-08-21 15:11:15',397.107000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13513,9,9,'2019-08-21 15:11:15',397.939000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13514,9,9,'2019-08-21 15:11:15',398.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13515,9,9,'2019-08-21 15:11:15',399.755000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13516,9,9,'2019-08-21 15:11:15',400.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13517,9,9,'2019-08-21 15:11:15',400.947000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13518,9,9,'2019-08-21 15:11:15',401.503000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13519,9,9,'2019-08-21 15:11:15',402.418000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13520,9,9,'2019-08-21 15:11:15',402.734000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13521,9,9,'2019-08-21 15:11:15',403.351000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13522,9,9,'2019-08-21 15:11:15',404.166000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13523,9,9,'2019-08-21 15:11:15',405.032000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13524,9,9,'2019-08-21 15:11:15',405.897000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13525,9,9,'2019-08-21 15:11:15',406.697000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13526,9,9,'2019-08-21 15:11:15',407.104000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13527,9,9,'2019-08-21 15:11:15',407.679000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13528,9,9,'2019-08-21 15:11:15',408.044000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13529,9,9,'2019-08-21 15:11:15',408.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13530,9,9,'2019-08-21 15:11:15',409.410000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13531,9,9,'2019-08-21 15:11:15',409.780000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13532,9,9,'2019-08-21 15:11:15',410.326000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13533,9,9,'2019-08-21 15:11:15',411.325000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13534,9,9,'2019-08-21 15:11:15',412.124000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13535,9,9,'2019-08-21 15:11:15',413.007000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13536,9,9,'2019-08-21 15:11:15',413.973000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13537,9,9,'2019-08-21 15:11:15',414.292000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13538,9,9,'2019-08-21 15:11:15',414.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13539,9,9,'2019-08-21 15:11:15',415.332000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13540,9,9,'2019-08-21 15:11:15',415.903000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13541,9,9,'2019-08-21 15:11:15',416.720000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13542,9,9,'2019-08-21 15:11:15',417.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13543,9,9,'2019-08-21 15:11:15',418.017000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13544,9,9,'2019-08-21 15:11:15',418.501000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13545,9,9,'2019-08-21 15:11:15',419.483000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13546,9,9,'2019-08-21 15:11:15',420.266000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13547,9,9,'2019-08-21 15:11:15',420.723000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13548,9,9,'2019-08-21 15:11:15',421.131000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13549,9,9,'2019-08-21 15:11:15',421.914000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13550,9,9,'2019-08-21 15:11:15',422.206000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13551,9,9,'2019-08-21 15:11:15',422.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13552,9,9,'2019-08-21 15:11:15',423.595000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13553,9,9,'2019-08-21 15:11:15',424.544000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13554,9,9,'2019-08-21 15:11:15',425.377000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13555,9,9,'2019-08-21 15:11:15',425.830000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13556,9,9,'2019-08-21 15:11:15',426.259000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13557,9,9,'2019-08-21 15:11:15',427.158000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13558,9,9,'2019-08-21 15:11:15',427.476000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13559,9,9,'2019-08-21 15:11:15',428.057000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13560,9,9,'2019-08-21 15:11:15',428.840000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13561,9,9,'2019-08-21 15:11:15',429.639000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13562,9,9,'2019-08-21 15:11:15',430.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13563,9,9,'2019-08-21 15:11:15',431.254000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13564,9,9,'2019-08-21 15:11:15',431.563000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13565,9,9,'2019-08-21 15:11:15',432.020000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13566,9,9,'2019-08-21 15:11:15',432.935000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13567,9,9,'2019-08-21 15:11:15',433.934000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13568,9,9,'2019-08-21 15:11:15',434.883000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13569,9,9,'2019-08-21 15:11:15',435.208000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13570,9,9,'2019-08-21 15:11:15',435.731000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13571,9,9,'2019-08-21 15:11:15',436.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13572,9,9,'2019-08-21 15:11:15',437.547000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13573,9,9,'2019-08-21 15:11:15',438.064000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13574,9,9,'2019-08-21 15:11:15',438.495000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13575,9,9,'2019-08-21 15:11:15',439.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13576,9,9,'2019-08-21 15:11:15',439.730000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13577,9,9,'2019-08-21 15:11:15',440.360000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13578,9,9,'2019-08-21 15:11:15',441.209000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13579,9,9,'2019-08-21 15:11:15',442.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13580,9,9,'2019-08-21 15:11:15',442.907000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13581,9,9,'2019-08-21 15:11:15',443.233000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13582,9,9,'2019-08-21 15:11:15',443.773000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13583,9,9,'2019-08-21 15:11:15',444.182000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13584,9,9,'2019-08-21 15:11:15',444.539000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13585,9,9,'2019-08-21 15:11:15',445.421000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13586,9,9,'2019-08-21 15:11:15',446.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13587,9,9,'2019-08-21 15:11:15',447.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13588,9,9,'2019-08-21 15:11:15',448.002000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13589,9,9,'2019-08-21 15:11:15',448.341000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13590,9,9,'2019-08-21 15:11:15',448.851000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13591,9,9,'2019-08-21 15:11:15',449.700000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13592,9,9,'2019-08-21 15:11:15',450.649000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13593,9,9,'2019-08-21 15:11:15',450.976000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13594,9,9,'2019-08-21 15:11:15',451.415000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13595,9,9,'2019-08-21 15:11:15',451.914000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13596,9,9,'2019-08-21 15:11:15',452.347000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13597,9,9,'2019-08-21 15:11:15',453.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13598,9,9,'2019-08-21 15:11:15',454.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13599,9,9,'2019-08-21 15:11:15',454.878000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13600,9,9,'2019-08-21 15:11:15',455.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13601,9,9,'2019-08-21 15:11:15',455.776000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13602,9,9,'2019-08-21 15:11:15',456.742000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13603,9,9,'2019-08-21 15:11:15',457.658000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13604,9,9,'2019-08-21 15:11:15',458.474000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13605,9,9,'2019-08-21 15:11:15',459.373000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13606,9,9,'2019-08-21 15:11:15',459.737000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13607,9,9,'2019-08-21 15:11:15',460.338000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13608,9,9,'2019-08-21 15:11:15',460.747000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13609,9,9,'2019-08-21 15:11:15',461.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13610,9,9,'2019-08-21 15:11:15',462.104000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13611,9,9,'2019-08-21 15:11:15',462.463000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13612,9,9,'2019-08-21 15:11:15',463.068000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13613,9,9,'2019-08-21 15:11:15',464.001000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13614,9,9,'2019-08-21 15:11:15',464.917000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13615,9,9,'2019-08-21 15:11:15',465.815000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13616,9,9,'2019-08-21 15:11:15',466.581000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13617,9,9,'2019-08-21 15:11:15',466.915000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13618,9,9,'2019-08-21 15:11:15',467.480000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13619,9,9,'2019-08-21 15:11:15',468.263000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13620,9,9,'2019-08-21 15:11:15',469.179000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13621,9,9,'2019-08-21 15:11:15',469.519000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13622,9,9,'2019-08-21 15:11:15',469.961000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13623,9,9,'2019-08-21 15:11:15',470.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13624,9,9,'2019-08-21 15:11:15',471.084000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13625,9,9,'2019-08-21 15:11:15',471.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13626,9,9,'2019-08-21 15:11:15',472.559000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13627,9,9,'2019-08-21 15:11:15',473.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13628,9,9,'2019-08-21 15:11:15',474.224000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13629,9,9,'2019-08-21 15:11:15',475.155000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13630,9,9,'2019-08-21 15:11:15',476.121000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13631,9,9,'2019-08-21 15:11:15',476.686000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13632,9,9,'2019-08-21 15:11:15',476.903000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13633,9,9,'2019-08-21 15:11:15',477.322000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13634,9,9,'2019-08-21 15:11:15',477.803000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13635,9,9,'2019-08-21 15:11:15',478.251000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13636,9,9,'2019-08-21 15:11:15',478.585000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13637,9,9,'2019-08-21 15:11:15',479.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13638,9,9,'2019-08-21 15:11:15',480.399000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13639,9,9,'2019-08-21 15:11:15',480.916000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13640,9,9,'2019-08-21 15:11:15',481.332000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13641,9,9,'2019-08-21 15:11:15',482.147000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13642,9,9,'2019-08-21 15:11:15',483.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13643,9,9,'2019-08-21 15:11:15',483.946000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13644,9,9,'2019-08-21 15:11:15',484.911000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13645,9,9,'2019-08-21 15:11:15',485.297000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13646,9,9,'2019-08-21 15:11:15',485.777000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13647,9,9,'2019-08-21 15:11:15',486.760000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13648,9,9,'2019-08-21 15:11:15',487.083000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13649,9,9,'2019-08-21 15:11:15',487.608000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13650,9,9,'2019-08-21 15:11:15',488.407000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13651,9,9,'2019-08-21 15:11:15',488.749000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13652,9,9,'2019-08-21 15:11:15',489.257000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13653,9,9,'2019-08-21 15:11:15',490.206000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13654,9,9,'2019-08-21 15:11:15',491.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13655,9,9,'2019-08-21 15:11:15',491.424000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13656,9,9,'2019-08-21 15:11:15',491.938000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13657,9,9,'2019-08-21 15:11:15',492.803000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13658,9,9,'2019-08-21 15:11:15',493.785000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13659,9,9,'2019-08-21 15:11:15',494.784000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13660,9,9,'2019-08-21 15:11:15',495.068000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13661,9,9,'2019-08-21 15:11:15',495.717000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13662,9,9,'2019-08-21 15:11:15',496.088000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13663,9,9,'2019-08-21 15:11:15',496.615000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13664,9,9,'2019-08-21 15:11:15',497.448000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13665,9,9,'2019-08-21 15:11:15',498.280000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13666,9,9,'2019-08-21 15:11:15',499.213000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13667,9,9,'2019-08-21 15:11:15',500.161000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13668,9,9,'2019-08-21 15:11:15',500.488000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13669,9,9,'2019-08-21 15:11:15',501.027000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13670,9,9,'2019-08-21 15:11:15',501.960000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13671,9,9,'2019-08-21 15:11:15',502.759000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13672,9,9,'2019-08-21 15:11:15',503.691000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13673,9,9,'2019-08-21 15:11:15',503.972000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13674,9,9,'2019-08-21 15:11:15',504.474000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13675,9,9,'2019-08-21 15:11:15',504.900000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13676,9,9,'2019-08-21 15:11:15',505.406000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13677,9,9,'2019-08-21 15:11:15',505.708000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13678,9,9,'2019-08-21 15:11:15',506.188000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13679,9,9,'2019-08-21 15:11:15',507.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13680,9,9,'2019-08-21 15:11:15',508.170000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13681,9,9,'2019-08-21 15:11:15',509.068000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13682,9,9,'2019-08-21 15:11:15',509.918000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13683,9,9,'2019-08-21 15:11:15',510.933000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13684,9,9,'2019-08-21 15:11:15',511.815000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13685,9,9,'2019-08-21 15:11:15',512.138000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13686,9,9,'2019-08-21 15:11:15',512.765000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13687,9,9,'2019-08-21 15:11:15',513.696000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13688,9,9,'2019-08-21 15:11:15',514.096000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13689,9,9,'2019-08-21 15:11:15',514.579000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13690,9,9,'2019-08-21 15:11:15',515.411000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13691,9,9,'2019-08-21 15:11:15',516.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13692,9,9,'2019-08-21 15:11:15',516.650000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13693,9,9,'2019-08-21 15:11:15',517.126000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13694,9,9,'2019-08-21 15:11:15',517.976000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13695,9,9,'2019-08-21 15:11:15',518.234000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13696,9,9,'2019-08-21 15:11:15',518.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13697,9,9,'2019-08-21 15:11:15',519.823000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13698,9,9,'2019-08-21 15:11:15',520.656000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13699,9,9,'2019-08-21 15:11:15',521.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13700,9,9,'2019-08-21 15:11:15',521.778000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13701,9,9,'2019-08-21 15:11:15',522.204000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13702,9,9,'2019-08-21 15:11:15',522.656000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13703,9,9,'2019-08-21 15:11:15',523.036000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13704,9,9,'2019-08-21 15:11:15',523.869000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13705,9,9,'2019-08-21 15:11:15',524.635000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13706,9,9,'2019-08-21 15:11:15',525.450000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13707,9,9,'2019-08-21 15:11:15',526.300000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13708,9,9,'2019-08-21 15:11:15',527.198000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13709,9,9,'2019-08-21 15:11:15',527.502000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13710,9,9,'2019-08-21 15:11:15',527.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13711,9,9,'2019-08-21 15:11:15',528.431000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13712,9,9,'2019-08-21 15:11:15',528.913000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13713,9,9,'2019-08-21 15:11:15',529.680000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13714,9,9,'2019-08-21 15:11:15',530.445000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13715,9,9,'2019-08-21 15:11:15',530.752000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13716,9,9,'2019-08-21 15:11:15',531.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13717,9,9,'2019-08-21 15:11:15',532.443000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13718,9,9,'2019-08-21 15:11:15',533.408000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13719,9,9,'2019-08-21 15:11:15',534.391000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13720,9,9,'2019-08-21 15:11:15',535.240000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13721,9,9,'2019-08-21 15:11:15',535.567000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13722,9,9,'2019-08-21 15:11:15',536.172000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13723,9,9,'2019-08-21 15:11:15',536.476000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13724,9,9,'2019-08-21 15:11:15',536.988000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13725,9,9,'2019-08-21 15:11:15',537.920000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13726,9,9,'2019-08-21 15:11:15',538.242000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13727,9,9,'2019-08-21 15:11:15',538.703000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13728,9,9,'2019-08-21 15:11:15',539.585000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13729,9,9,'2019-08-21 15:11:15',540.584000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13730,9,9,'2019-08-21 15:11:15',541.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13731,9,9,'2019-08-21 15:11:15',542.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13732,9,9,'2019-08-21 15:11:15',543.364000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13733,9,9,'2019-08-21 15:11:15',544.163000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13734,9,9,'2019-08-21 15:11:15',544.521000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13735,9,9,'2019-08-21 15:11:15',544.930000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13736,9,9,'2019-08-21 15:11:15',545.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13737,9,9,'2019-08-21 15:11:15',546.236000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13738,9,9,'2019-08-21 15:11:15',546.910000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13739,9,9,'2019-08-21 15:11:15',547.236000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13740,9,9,'2019-08-21 15:11:15',547.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13741,9,9,'2019-08-21 15:11:15',548.658000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13742,9,9,'2019-08-21 15:11:15',549.508000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13743,9,9,'2019-08-21 15:11:15',549.981000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13744,9,9,'2019-08-21 15:11:15',550.323000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13745,9,9,'2019-08-21 15:11:15',551.322000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13746,9,9,'2019-08-21 15:11:15',552.238000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13747,9,9,'2019-08-21 15:11:15',552.596000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13748,9,9,'2019-08-21 15:11:15',553.087000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13749,9,9,'2019-08-21 15:11:15',554.003000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13750,9,9,'2019-08-21 15:11:15',554.918000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13751,9,9,'2019-08-21 15:11:15',555.685000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13752,9,9,'2019-08-21 15:11:15',556.633000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13753,9,9,'2019-08-21 15:11:15',556.916000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13754,9,9,'2019-08-21 15:11:15',557.532000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13755,9,9,'2019-08-21 15:11:15',557.926000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13756,9,9,'2019-08-21 15:11:15',558.515000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13757,9,9,'2019-08-21 15:11:15',558.764000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13758,9,9,'2019-08-21 15:11:15',559.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13759,9,9,'2019-08-21 15:11:15',560.462000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13760,9,9,'2019-08-21 15:11:15',561.295000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13761,9,9,'2019-08-21 15:11:15',562.261000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13762,9,9,'2019-08-21 15:11:15',563.260000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13763,9,9,'2019-08-21 15:11:15',564.258000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13764,9,9,'2019-08-21 15:11:15',564.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13765,9,9,'2019-08-21 15:11:15',565.157000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13766,9,9,'2019-08-21 15:11:15',565.567000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13767,9,9,'2019-08-21 15:11:15',566.057000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13768,9,9,'2019-08-21 15:11:15',566.839000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13769,9,9,'2019-08-21 15:11:15',567.838000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13770,9,9,'2019-08-21 15:11:15',568.737000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13771,9,9,'2019-08-21 15:11:15',569.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13772,9,9,'2019-08-21 15:11:15',570.451000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13773,9,9,'2019-08-21 15:11:15',571.284000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13774,9,9,'2019-08-21 15:11:15',571.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13775,9,9,'2019-08-21 15:11:15',572.216000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13776,9,9,'2019-08-21 15:11:15',572.542000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13777,9,9,'2019-08-21 15:11:15',573.182000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13778,9,9,'2019-08-21 15:11:15',574.131000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13779,9,9,'2019-08-21 15:11:15',574.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13780,9,9,'2019-08-21 15:11:15',575.746000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13781,9,9,'2019-08-21 15:11:15',576.116000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13782,9,9,'2019-08-21 15:11:15',576.694000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13783,9,9,'2019-08-21 15:11:15',576.964000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13784,9,9,'2019-08-21 15:11:15',577.644000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13785,9,9,'2019-08-21 15:11:15',578.426000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13786,9,9,'2019-08-21 15:11:15',579.242000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13787,9,9,'2019-08-21 15:11:15',579.639000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13788,9,9,'2019-08-21 15:11:15',580.224000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13789,9,9,'2019-08-21 15:11:15',581.239000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13790,9,9,'2019-08-21 15:11:15',582.056000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13791,9,9,'2019-08-21 15:11:15',582.415000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13792,9,9,'2019-08-21 15:11:15',582.921000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13793,9,9,'2019-08-21 15:11:15',583.870000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13794,9,9,'2019-08-21 15:11:15',584.803000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13795,9,9,'2019-08-21 15:11:15',585.768000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13796,9,9,'2019-08-21 15:11:15',586.567000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13797,9,9,'2019-08-21 15:11:15',587.566000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13798,9,9,'2019-08-21 15:11:15',588.549000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13799,9,9,'2019-08-21 15:11:15',588.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13800,9,9,'2019-08-21 15:11:15',589.447000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13801,9,9,'2019-08-21 15:11:15',589.753000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13802,9,9,'2019-08-21 15:11:15',602.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13803,9,9,'2019-08-21 15:11:15',626.723000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13804,9,9,'2019-08-21 15:11:15',627.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13805,9,9,'2019-08-21 15:11:15',628.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13806,9,9,'2019-08-21 15:11:15',629.053000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13807,9,9,'2019-08-21 15:11:15',629.503000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13808,9,9,'2019-08-21 15:11:15',629.936000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13809,9,9,'2019-08-21 15:11:15',630.701000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13810,9,9,'2019-08-21 15:11:15',631.037000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13811,9,9,'2019-08-21 15:11:15',631.584000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13812,9,9,'2019-08-21 15:11:15',631.986000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13813,9,9,'2019-08-21 15:11:15',632.399000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13814,9,9,'2019-08-21 15:11:15',633.165000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13815,9,9,'2019-08-21 15:11:15',633.980000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13816,9,9,'2019-08-21 15:11:15',634.258000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13817,9,9,'2019-08-21 15:11:15',634.880000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13818,9,9,'2019-08-21 15:11:15',635.829000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13819,9,9,'2019-08-21 15:11:15',636.661000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13820,9,9,'2019-08-21 15:11:15',637.561000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13821,9,9,'2019-08-21 15:11:15',637.871000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13822,9,9,'2019-08-21 15:11:15',638.359000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13823,9,9,'2019-08-21 15:11:15',639.342000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13824,9,9,'2019-08-21 15:11:15',640.291000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13825,9,9,'2019-08-21 15:11:15',641.239000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13826,9,9,'2019-08-21 15:11:15',641.576000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13827,9,9,'2019-08-21 15:11:15',642.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13828,9,9,'2019-08-21 15:11:15',642.535000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13829,9,9,'2019-08-21 15:11:15',643.055000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13830,9,9,'2019-08-21 15:11:15',643.362000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13831,9,9,'2019-08-21 15:11:15',643.854000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13832,9,9,'2019-08-21 15:11:15',644.619000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13833,9,9,'2019-08-21 15:11:15',645.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13834,9,9,'2019-08-21 15:11:15',646.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13835,9,9,'2019-08-21 15:11:15',647.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13836,9,9,'2019-08-21 15:11:15',648.382000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13837,9,9,'2019-08-21 15:11:15',649.197000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13838,9,9,'2019-08-21 15:11:15',650.180000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13839,9,9,'2019-08-21 15:11:15',650.591000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13840,9,9,'2019-08-21 15:11:15',651.013000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13841,9,9,'2019-08-21 15:11:15',651.861000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13842,9,9,'2019-08-21 15:11:15',652.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13843,9,9,'2019-08-21 15:11:15',652.660000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13844,9,9,'2019-08-21 15:11:15',653.477000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13845,9,9,'2019-08-21 15:11:15',654.408000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13846,9,9,'2019-08-21 15:11:15',655.225000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13847,9,9,'2019-08-21 15:11:15',656.106000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13848,9,9,'2019-08-21 15:11:15',656.526000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13849,9,9,'2019-08-21 15:11:15',656.890000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13850,9,9,'2019-08-21 15:11:15',657.334000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13851,9,9,'2019-08-21 15:11:15',657.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13852,9,9,'2019-08-21 15:11:15',658.303000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13853,9,9,'2019-08-21 15:11:15',658.754000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13854,9,9,'2019-08-21 15:11:15',659.653000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13855,9,9,'2019-08-21 15:11:15',660.552000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13856,9,9,'2019-08-21 15:11:15',661.518000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13857,9,9,'2019-08-21 15:11:15',661.916000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13858,9,9,'2019-08-21 15:11:15',662.300000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13859,9,9,'2019-08-21 15:11:15',663.116000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13860,9,9,'2019-08-21 15:11:15',663.981000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13861,9,9,'2019-08-21 15:11:15',664.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13862,9,9,'2019-08-21 15:11:15',665.490000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13863,9,9,'2019-08-21 15:11:15',665.862000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13864,9,9,'2019-08-21 15:11:15',666.267000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13865,9,9,'2019-08-21 15:11:15',666.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13866,9,9,'2019-08-21 15:11:15',667.611000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13867,9,9,'2019-08-21 15:11:15',668.394000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13868,9,9,'2019-08-21 15:11:15',669.176000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13869,9,9,'2019-08-21 15:11:15',670.125000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13870,9,9,'2019-08-21 15:11:15',670.437000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13871,9,9,'2019-08-21 15:11:15',671.107000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13872,9,9,'2019-08-21 15:11:15',672.006000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13873,9,9,'2019-08-21 15:11:15',672.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13874,9,9,'2019-08-21 15:11:15',673.303000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13875,9,9,'2019-08-21 15:11:15',673.721000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13876,9,9,'2019-08-21 15:11:15',674.570000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13877,9,9,'2019-08-21 15:11:15',674.969000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13878,9,9,'2019-08-21 15:11:15',675.369000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13879,9,9,'2019-08-21 15:11:15',675.645000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13880,9,9,'2019-08-21 15:11:15',676.268000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13881,9,9,'2019-08-21 15:11:15',677.084000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13882,9,9,'2019-08-21 15:11:15',677.982000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13883,9,9,'2019-08-21 15:11:15',678.898000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13884,9,9,'2019-08-21 15:11:15',679.278000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13885,9,9,'2019-08-21 15:11:15',679.765000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13886,9,9,'2019-08-21 15:11:15',680.746000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13887,9,9,'2019-08-21 15:11:15',681.729000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13888,9,9,'2019-08-21 15:11:15',682.528000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13889,9,9,'2019-08-21 15:11:15',683.394000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13890,9,9,'2019-08-21 15:11:15',683.831000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13891,9,9,'2019-08-21 15:11:15',684.409000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13892,9,9,'2019-08-21 15:11:15',685.292000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13893,9,9,'2019-08-21 15:11:15',685.628000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13894,9,9,'2019-08-21 15:11:15',686.257000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13895,9,9,'2019-08-21 15:11:15',687.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13896,9,9,'2019-08-21 15:11:15',688.072000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13897,9,9,'2019-08-21 15:11:15',688.425000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13898,9,9,'2019-08-21 15:11:15',689.021000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13899,9,9,'2019-08-21 15:11:15',689.887000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13900,9,9,'2019-08-21 15:11:15',690.652000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13901,9,9,'2019-08-21 15:11:15',691.585000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13902,9,9,'2019-08-21 15:11:15',691.896000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13903,9,9,'2019-08-21 15:11:15',692.601000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13904,9,9,'2019-08-21 15:11:15',693.582000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13905,9,9,'2019-08-21 15:11:15',693.936000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13906,9,9,'2019-08-21 15:11:15',694.581000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13907,9,9,'2019-08-21 15:11:15',695.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13908,9,9,'2019-08-21 15:11:15',696.380000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13909,9,9,'2019-08-21 15:11:15',697.295000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13910,9,9,'2019-08-21 15:11:15',698.094000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13911,9,9,'2019-08-21 15:11:15',698.751000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13912,9,9,'2019-08-21 15:11:15',698.943000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13913,9,9,'2019-08-21 15:11:15',699.266000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13914,9,9,'2019-08-21 15:11:15',699.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13915,9,9,'2019-08-21 15:11:15',700.625000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13916,9,9,'2019-08-21 15:11:15',701.474000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13917,9,9,'2019-08-21 15:11:15',702.307000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13918,9,9,'2019-08-21 15:11:15',703.188000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13919,9,9,'2019-08-21 15:11:15',703.954000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13920,9,9,'2019-08-21 15:11:15',704.323000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13921,9,9,'2019-08-21 15:11:15',704.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13922,9,9,'2019-08-21 15:11:15',705.171000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13923,9,9,'2019-08-21 15:11:15',705.853000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13924,9,9,'2019-08-21 15:11:15',706.785000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13925,9,9,'2019-08-21 15:11:15',707.617000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13926,9,9,'2019-08-21 15:11:15',708.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13927,9,9,'2019-08-21 15:11:15',709.398000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13928,9,9,'2019-08-21 15:11:15',709.845000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13929,9,9,'2019-08-21 15:11:15',710.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13930,9,9,'2019-08-21 15:11:15',710.622000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13931,9,9,'2019-08-21 15:11:15',711.246000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13932,9,9,'2019-08-21 15:11:15',712.146000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13933,9,9,'2019-08-21 15:11:15',712.489000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13934,9,9,'2019-08-21 15:11:15',713.111000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13935,9,9,'2019-08-21 15:11:15',713.960000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13936,9,9,'2019-08-21 15:11:15',714.843000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13937,9,9,'2019-08-21 15:11:15',715.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13938,9,9,'2019-08-21 15:11:15',715.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13939,9,9,'2019-08-21 15:11:15',716.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13940,9,9,'2019-08-21 15:11:15',717.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13941,9,9,'2019-08-21 15:11:15',717.920000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13942,9,9,'2019-08-21 15:11:15',718.488000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13943,9,9,'2019-08-21 15:11:15',719.421000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13944,9,9,'2019-08-21 15:11:15',720.187000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13945,9,9,'2019-08-21 15:11:15',720.534000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13946,9,9,'2019-08-21 15:11:15',721.086000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13947,9,9,'2019-08-21 15:11:15',721.951000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13948,9,9,'2019-08-21 15:11:15',722.718000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13949,9,9,'2019-08-21 15:11:15',723.099000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13950,9,9,'2019-08-21 15:11:15',723.666000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13951,9,9,'2019-08-21 15:11:15',724.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13952,9,9,'2019-08-21 15:11:15',724.615000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13953,9,9,'2019-08-21 15:11:15',725.397000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13954,9,9,'2019-08-21 15:11:15',726.181000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13955,9,9,'2019-08-21 15:11:15',727.013000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13956,9,9,'2019-08-21 15:11:15',727.349000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13957,9,9,'2019-08-21 15:11:15',727.962000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13958,9,9,'2019-08-21 15:11:15',728.811000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13959,9,9,'2019-08-21 15:11:15',729.176000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13960,9,9,'2019-08-21 15:11:15',729.626000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13961,9,9,'2019-08-21 15:11:15',730.459000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13962,9,9,'2019-08-21 15:11:15',731.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13963,9,9,'2019-08-21 15:11:15',732.141000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13964,9,9,'2019-08-21 15:11:15',733.056000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13965,9,9,'2019-08-21 15:11:15',733.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13966,9,9,'2019-08-21 15:11:15',734.293000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13967,9,9,'2019-08-21 15:11:15',734.754000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13968,9,9,'2019-08-21 15:11:15',735.554000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13969,9,9,'2019-08-21 15:11:15',736.552000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13970,9,9,'2019-08-21 15:11:15',736.867000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13971,9,9,'2019-08-21 15:11:15',737.401000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13972,9,9,'2019-08-21 15:11:15',738.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13973,9,9,'2019-08-21 15:11:15',739.100000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13974,9,9,'2019-08-21 15:11:15',739.522000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13975,9,9,'2019-08-21 15:11:15',740.032000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13976,9,9,'2019-08-21 15:11:15',740.798000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13977,9,9,'2019-08-21 15:11:15',741.178000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13978,9,9,'2019-08-21 15:11:15',741.630000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13979,9,9,'2019-08-21 15:11:15',742.629000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13980,9,9,'2019-08-21 15:11:15',743.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13981,9,9,'2019-08-21 15:11:15',743.428000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13982,9,9,'2019-08-21 15:11:15',744.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13983,9,9,'2019-08-21 15:11:15',744.630000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13984,9,9,'2019-08-21 15:11:15',745.043000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13985,9,9,'2019-08-21 15:11:15',745.875000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13986,9,9,'2019-08-21 15:11:15',746.658000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13987,9,9,'2019-08-21 15:11:15',747.507000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13988,9,9,'2019-08-21 15:11:15',747.860000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13989,9,9,'2019-08-21 15:11:15',748.423000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13990,9,9,'2019-08-21 15:11:15',749.188000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13991,9,9,'2019-08-21 15:11:15',750.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13992,9,9,'2019-08-21 15:11:15',750.887000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13993,9,9,'2019-08-21 15:11:15',751.719000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13994,9,9,'2019-08-21 15:11:15',752.060000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13995,9,9,'2019-08-21 15:11:15',752.484000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13996,9,9,'2019-08-21 15:11:15',753.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13997,9,9,'2019-08-21 15:11:15',754.449000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13998,9,9,'2019-08-21 15:11:15',755.332000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (13999,9,9,'2019-08-21 15:11:15',755.693000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14000,9,9,'2019-08-21 15:11:15',756.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14001,9,9,'2019-08-21 15:11:15',756.673000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14002,9,9,'2019-08-21 15:11:15',757.130000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14003,9,9,'2019-08-21 15:11:15',758.046000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14004,9,9,'2019-08-21 15:11:15',758.994000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14005,9,9,'2019-08-21 15:11:15',759.910000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14006,9,9,'2019-08-21 15:11:15',760.296000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14007,9,9,'2019-08-21 15:11:15',760.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14008,9,9,'2019-08-21 15:11:15',761.336000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14009,9,9,'2019-08-21 15:11:15',761.808000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14010,9,9,'2019-08-21 15:11:15',762.641000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14011,9,9,'2019-08-21 15:11:15',763.489000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14012,9,9,'2019-08-21 15:11:15',764.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14013,9,9,'2019-08-21 15:11:15',764.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14014,9,9,'2019-08-21 15:11:15',765.254000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14015,9,9,'2019-08-21 15:11:15',765.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14016,9,9,'2019-08-21 15:11:15',766.137000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14017,9,9,'2019-08-21 15:11:15',767.035000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14018,9,9,'2019-08-21 15:11:15',768.018000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14019,9,9,'2019-08-21 15:11:15',768.867000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14020,9,9,'2019-08-21 15:11:15',769.239000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14021,9,9,'2019-08-21 15:11:15',769.833000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14022,9,9,'2019-08-21 15:11:15',770.731000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14023,9,9,'2019-08-21 15:11:15',771.681000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14024,9,9,'2019-08-21 15:11:15',772.463000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14025,9,9,'2019-08-21 15:11:15',772.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14026,9,9,'2019-08-21 15:11:15',773.362000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14027,9,9,'2019-08-21 15:11:15',774.311000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14028,9,9,'2019-08-21 15:11:15',775.310000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14029,9,9,'2019-08-21 15:11:15',775.640000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14030,9,9,'2019-08-21 15:11:15',776.226000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14031,9,9,'2019-08-21 15:11:15',776.608000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14032,9,9,'2019-08-21 15:11:15',777.142000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14033,9,9,'2019-08-21 15:11:15',777.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14034,9,9,'2019-08-21 15:11:15',778.723000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14035,9,9,'2019-08-21 15:11:15',779.539000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14036,9,9,'2019-08-21 15:11:15',780.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14037,9,9,'2019-08-21 15:11:15',780.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14038,9,9,'2019-08-21 15:11:15',781.370000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14039,9,9,'2019-08-21 15:11:15',782.169000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14040,9,9,'2019-08-21 15:11:15',782.523000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14041,9,9,'2019-08-21 15:11:15',783.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14042,9,9,'2019-08-21 15:11:15',784.084000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14043,9,9,'2019-08-21 15:11:15',784.999000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14044,9,9,'2019-08-21 15:11:15',785.411000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14045,9,9,'2019-08-21 15:11:15',785.766000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14046,9,9,'2019-08-21 15:11:15',786.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14047,9,9,'2019-08-21 15:11:15',787.530000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14048,9,9,'2019-08-21 15:11:15',787.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14049,9,9,'2019-08-21 15:11:15',788.296000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14050,9,9,'2019-08-21 15:11:15',789.178000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14051,9,9,'2019-08-21 15:11:15',790.160000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14052,9,9,'2019-08-21 15:11:15',791.109000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14053,9,9,'2019-08-21 15:11:15',791.991000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14054,9,9,'2019-08-21 15:11:15',792.758000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14055,9,9,'2019-08-21 15:11:15',793.689000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14056,9,9,'2019-08-21 15:11:15',794.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14057,9,9,'2019-08-21 15:11:15',794.522000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14058,9,9,'2019-08-21 15:11:15',794.939000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14059,9,9,'2019-08-21 15:11:15',795.371000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14060,9,9,'2019-08-21 15:11:15',796.137000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14061,9,9,'2019-08-21 15:11:15',797.003000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14062,9,9,'2019-08-21 15:11:15',797.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14063,9,9,'2019-08-21 15:11:15',797.785000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14064,9,9,'2019-08-21 15:11:15',798.210000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14065,9,9,'2019-08-21 15:11:15',798.567000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14066,9,9,'2019-08-21 15:11:15',799.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14067,9,9,'2019-08-21 15:11:15',800.183000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14068,9,9,'2019-08-21 15:11:15',801.016000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14069,9,9,'2019-08-21 15:11:15',801.864000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14070,9,9,'2019-08-21 15:11:15',802.764000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14071,9,9,'2019-08-21 15:11:15',803.177000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14072,9,9,'2019-08-21 15:11:15',803.629000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14073,9,9,'2019-08-21 15:11:15',803.974000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14074,9,9,'2019-08-21 15:11:15',804.512000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14075,9,9,'2019-08-21 15:11:15',805.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14076,9,9,'2019-08-21 15:11:15',805.730000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14077,9,9,'2019-08-21 15:11:15',806.176000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14078,9,9,'2019-08-21 15:11:15',806.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14079,9,9,'2019-08-21 15:11:15',807.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14080,9,9,'2019-08-21 15:11:15',808.082000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14081,9,9,'2019-08-21 15:11:15',808.724000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14082,9,9,'2019-08-21 15:11:15',809.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14083,9,9,'2019-08-21 15:11:15',810.488000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14084,9,9,'2019-08-21 15:11:15',811.404000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14085,9,9,'2019-08-21 15:11:15',811.767000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14086,9,9,'2019-08-21 15:11:15',812.170000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14087,9,9,'2019-08-21 15:11:15',812.952000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14088,9,9,'2019-08-21 15:11:15',813.321000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14089,9,9,'2019-08-21 15:11:15',813.852000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14090,9,9,'2019-08-21 15:11:15',814.816000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14091,9,9,'2019-08-21 15:11:15',815.666000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14092,9,9,'2019-08-21 15:11:15',816.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14093,9,9,'2019-08-21 15:11:15',816.895000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14094,9,9,'2019-08-21 15:11:15',817.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14095,9,9,'2019-08-21 15:11:15',818.413000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14096,9,9,'2019-08-21 15:11:15',818.994000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14097,9,9,'2019-08-21 15:11:15',819.212000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14098,9,9,'2019-08-21 15:11:15',820.161000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14099,9,9,'2019-08-21 15:11:15',821.093000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14100,9,9,'2019-08-21 15:11:15',821.926000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14101,9,9,'2019-08-21 15:11:15',822.315000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14102,9,9,'2019-08-21 15:11:15',822.791000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14103,9,9,'2019-08-21 15:11:15',823.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14104,9,9,'2019-08-21 15:11:15',823.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14105,9,9,'2019-08-21 15:11:15',824.606000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14106,9,9,'2019-08-21 15:11:15',825.389000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14107,9,9,'2019-08-21 15:11:15',826.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14108,9,9,'2019-08-21 15:11:15',827.303000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14109,9,9,'2019-08-21 15:11:15',828.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14110,9,9,'2019-08-21 15:11:15',829.168000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14111,9,9,'2019-08-21 15:11:15',829.563000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14112,9,9,'2019-08-21 15:11:15',830.033000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14113,9,9,'2019-08-21 15:11:15',830.916000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14114,9,9,'2019-08-21 15:11:15',831.259000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14115,9,9,'2019-08-21 15:11:15',831.698000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14116,9,9,'2019-08-21 15:11:15',832.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14117,9,9,'2019-08-21 15:11:15',833.546000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14118,9,9,'2019-08-21 15:11:15',833.944000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14119,9,9,'2019-08-21 15:11:15',834.512000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14120,9,9,'2019-08-21 15:11:15',835.378000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14121,9,9,'2019-08-21 15:11:15',835.761000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14122,9,9,'2019-08-21 15:11:15',836.243000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14123,9,9,'2019-08-21 15:11:15',837.060000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14124,9,9,'2019-08-21 15:11:15',837.875000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14125,9,9,'2019-08-21 15:11:15',838.690000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14126,9,9,'2019-08-21 15:11:15',838.961000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14127,9,9,'2019-08-21 15:11:15',839.640000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14128,9,9,'2019-08-21 15:11:15',840.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14129,9,9,'2019-08-21 15:11:15',840.605000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14130,9,9,'2019-08-21 15:11:15',841.521000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14131,9,9,'2019-08-21 15:11:15',842.453000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14132,9,9,'2019-08-21 15:11:15',843.353000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14133,9,9,'2019-08-21 15:11:15',844.251000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14134,9,9,'2019-08-21 15:11:15',844.614000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14135,9,9,'2019-08-21 15:11:15',845.084000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14136,9,9,'2019-08-21 15:11:15',845.999000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14137,9,9,'2019-08-21 15:11:15',846.593000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14138,9,9,'2019-08-21 15:11:15',846.981000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14139,9,9,'2019-08-21 15:11:15',847.964000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14140,9,9,'2019-08-21 15:11:15',848.746000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14141,9,9,'2019-08-21 15:11:15',849.197000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14142,9,9,'2019-08-21 15:11:15',849.529000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14143,9,9,'2019-08-21 15:11:15',849.894000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14144,9,9,'2019-08-21 15:11:15',850.312000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14145,9,9,'2019-08-21 15:11:15',851.144000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14146,9,9,'2019-08-21 15:11:15',851.977000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14147,9,9,'2019-08-21 15:11:15',852.759000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14148,9,9,'2019-08-21 15:11:15',853.607000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14149,9,9,'2019-08-21 15:11:15',854.424000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14150,9,9,'2019-08-21 15:11:15',855.011000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14151,9,9,'2019-08-21 15:11:15',855.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14152,9,9,'2019-08-21 15:11:15',856.238000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14153,9,9,'2019-08-21 15:11:15',856.606000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14154,9,9,'2019-08-21 15:11:15',857.237000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14155,9,9,'2019-08-21 15:11:15',858.069000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14156,9,9,'2019-08-21 15:11:15',858.464000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14157,9,9,'2019-08-21 15:11:15',859.052000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14158,9,9,'2019-08-21 15:11:15',859.817000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14159,9,9,'2019-08-21 15:11:15',860.717000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14160,9,9,'2019-08-21 15:11:15',861.582000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14161,9,9,'2019-08-21 15:11:15',862.398000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14162,9,9,'2019-08-21 15:11:15',862.804000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14163,9,9,'2019-08-21 15:11:15',863.264000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14164,9,9,'2019-08-21 15:11:15',863.713000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14165,9,9,'2019-08-21 15:11:15',864.279000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14166,9,9,'2019-08-21 15:11:15',864.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14167,9,9,'2019-08-21 15:11:15',865.179000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14168,9,9,'2019-08-21 15:11:15',866.178000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14169,9,9,'2019-08-21 15:11:15',867.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14170,9,9,'2019-08-21 15:11:15',868.025000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14171,9,9,'2019-08-21 15:11:15',868.808000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14172,9,9,'2019-08-21 15:11:15',869.657000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14173,9,9,'2019-08-21 15:11:15',870.522000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14174,9,9,'2019-08-21 15:11:15',870.971000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14175,9,9,'2019-08-21 15:11:15',871.372000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14176,9,9,'2019-08-21 15:11:15',872.354000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14177,9,9,'2019-08-21 15:11:15',872.828000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14178,9,9,'2019-08-21 15:11:15',873.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14179,9,9,'2019-08-21 15:11:15',874.119000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14180,9,9,'2019-08-21 15:11:15',874.483000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14181,9,9,'2019-08-21 15:11:15',874.885000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14182,9,9,'2019-08-21 15:11:15',875.700000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14183,9,9,'2019-08-21 15:11:15',876.683000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14184,9,9,'2019-08-21 15:11:15',877.515000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14185,9,9,'2019-08-21 15:11:15',878.314000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14186,9,9,'2019-08-21 15:11:15',878.753000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14187,9,9,'2019-08-21 15:11:15',879.146000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14188,9,9,'2019-08-21 15:11:15',879.672000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14189,9,9,'2019-08-21 15:11:15',879.962000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14190,9,9,'2019-08-21 15:11:15',880.878000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14191,9,9,'2019-08-21 15:11:15',881.677000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14192,9,9,'2019-08-21 15:11:15',882.692000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14193,9,9,'2019-08-21 15:11:15',883.347000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14194,9,9,'2019-08-21 15:11:15',883.642000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14195,9,9,'2019-08-21 15:11:15',884.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14196,9,9,'2019-08-21 15:11:15',884.931000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14197,9,9,'2019-08-21 15:11:15',885.323000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14198,9,9,'2019-08-21 15:11:15',886.105000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14199,9,9,'2019-08-21 15:11:15',887.088000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14200,9,9,'2019-08-21 15:11:15',887.455000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14201,9,9,'2019-08-21 15:11:15',887.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14202,9,9,'2019-08-21 15:11:15',888.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14203,9,9,'2019-08-21 15:11:15',900.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14204,9,9,'2019-08-21 15:11:15',925.412000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14205,9,9,'2019-08-21 15:11:15',926.327000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14206,9,9,'2019-08-21 15:11:15',927.176000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14207,9,9,'2019-08-21 15:11:15',928.175000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14208,9,9,'2019-08-21 15:11:15',929.041000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14209,9,9,'2019-08-21 15:11:15',929.605000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14210,9,9,'2019-08-21 15:11:15',929.807000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14211,9,9,'2019-08-21 15:11:15',930.010000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14212,9,9,'2019-08-21 15:11:15',930.639000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14213,9,9,'2019-08-21 15:11:15',931.538000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14214,9,9,'2019-08-21 15:11:15',931.856000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14215,9,9,'2019-08-21 15:11:15',932.537000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14216,9,9,'2019-08-21 15:11:15',933.369000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14217,9,9,'2019-08-21 15:11:15',934.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14218,9,9,'2019-08-21 15:11:15',934.532000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14219,9,9,'2019-08-21 15:11:15',935.251000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14220,9,9,'2019-08-21 15:11:15',936.149000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14221,9,9,'2019-08-21 15:11:15',936.982000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14222,9,9,'2019-08-21 15:11:15',937.947000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14223,9,9,'2019-08-21 15:11:15',938.880000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14224,9,9,'2019-08-21 15:11:15',939.165000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14225,9,9,'2019-08-21 15:11:15',939.879000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14226,9,9,'2019-08-21 15:11:15',940.226000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14227,9,9,'2019-08-21 15:11:15',940.694000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14228,9,9,'2019-08-21 15:11:15',941.561000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14229,9,9,'2019-08-21 15:11:15',942.477000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14230,9,9,'2019-08-21 15:11:15',942.810000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14231,9,9,'2019-08-21 15:11:15',943.375000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14232,9,9,'2019-08-21 15:11:15',944.174000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14233,9,9,'2019-08-21 15:11:15',944.475000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14234,9,9,'2019-08-21 15:11:15',945.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14235,9,9,'2019-08-21 15:11:15',945.973000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14236,9,9,'2019-08-21 15:11:15',946.854000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14237,9,9,'2019-08-21 15:11:15',947.130000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14238,9,9,'2019-08-21 15:11:15',947.870000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14239,9,9,'2019-08-21 15:11:15',948.869000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14240,9,9,'2019-08-21 15:11:15',949.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14241,9,9,'2019-08-21 15:11:15',949.701000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14242,9,9,'2019-08-21 15:11:15',950.634000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14243,9,9,'2019-08-21 15:11:15',951.416000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14244,9,9,'2019-08-21 15:11:15',952.349000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14245,9,9,'2019-08-21 15:11:15',953.114000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14246,9,9,'2019-08-21 15:11:15',954.014000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14247,9,9,'2019-08-21 15:11:15',954.337000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14248,9,9,'2019-08-21 15:11:15',954.812000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14249,9,9,'2019-08-21 15:11:15',955.695000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14250,9,9,'2019-08-21 15:11:15',956.610000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14251,9,9,'2019-08-21 15:11:15',957.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14252,9,9,'2019-08-21 15:11:15',957.410000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14253,9,9,'2019-08-21 15:11:15',958.259000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14254,9,9,'2019-08-21 15:11:15',958.516000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14255,9,9,'2019-08-21 15:11:15',959.142000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14256,9,9,'2019-08-21 15:11:15',960.073000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14257,9,9,'2019-08-21 15:11:15',960.855000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14258,9,9,'2019-08-21 15:11:15',961.639000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14259,9,9,'2019-08-21 15:11:15',962.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14260,9,9,'2019-08-21 15:11:15',962.471000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14261,9,9,'2019-08-21 15:11:15',963.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14262,9,9,'2019-08-21 15:11:15',963.644000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14263,9,9,'2019-08-21 15:11:15',964.036000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14264,9,9,'2019-08-21 15:11:15',964.381000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14265,9,9,'2019-08-21 15:11:15',964.835000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14266,9,9,'2019-08-21 15:11:15',965.768000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14267,9,9,'2019-08-21 15:11:15',966.649000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14268,9,9,'2019-08-21 15:11:15',967.615000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14269,9,9,'2019-08-21 15:11:15',968.531000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14270,9,9,'2019-08-21 15:11:15',968.994000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14271,9,9,'2019-08-21 15:11:15',969.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14272,9,9,'2019-08-21 15:11:15',970.195000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14273,9,9,'2019-08-21 15:11:15',971.128000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14274,9,9,'2019-08-21 15:11:15',971.437000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14275,9,9,'2019-08-21 15:11:15',972.127000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14276,9,9,'2019-08-21 15:11:15',973.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14277,9,9,'2019-08-21 15:11:15',973.364000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14278,9,9,'2019-08-21 15:11:15',973.975000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14279,9,9,'2019-08-21 15:11:15',974.974000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14280,9,9,'2019-08-21 15:11:15',975.890000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14281,9,9,'2019-08-21 15:11:15',976.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14282,9,9,'2019-08-21 15:11:15',977.120000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14283,9,9,'2019-08-21 15:11:15',977.820000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14284,9,9,'2019-08-21 15:11:15',978.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14285,9,9,'2019-08-21 15:11:15',978.947000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14286,9,9,'2019-08-21 15:11:15',979.402000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14287,9,9,'2019-08-21 15:11:15',980.335000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14288,9,9,'2019-08-21 15:11:15',981.101000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14289,9,9,'2019-08-21 15:11:15',982.000000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14290,9,9,'2019-08-21 15:11:15',982.948000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14291,9,9,'2019-08-21 15:11:15',983.247000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14292,9,9,'2019-08-21 15:11:15',983.947000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14293,9,9,'2019-08-21 15:11:15',984.780000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14294,9,9,'2019-08-21 15:11:15',985.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14295,9,9,'2019-08-21 15:11:15',986.444000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14296,9,9,'2019-08-21 15:11:15',986.790000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14297,9,9,'2019-08-21 15:11:15',987.394000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14298,9,9,'2019-08-21 15:11:15',987.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14299,9,9,'2019-08-21 15:11:15',988.209000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14300,9,9,'2019-08-21 15:11:15',989.142000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14301,9,9,'2019-08-21 15:11:15',990.058000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14302,9,9,'2019-08-21 15:11:15',990.354000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14303,9,9,'2019-08-21 15:11:15',991.007000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14304,9,9,'2019-08-21 15:11:15',991.855000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14305,9,9,'2019-08-21 15:11:15',992.201000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14306,9,9,'2019-08-21 15:11:15',992.755000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14307,9,9,'2019-08-21 15:11:15',993.720000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14308,9,9,'2019-08-21 15:11:15',994.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14309,9,9,'2019-08-21 15:11:15',995.602000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14310,9,9,'2019-08-21 15:11:15',996.417000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14311,9,9,'2019-08-21 15:11:15',997.250000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14312,9,9,'2019-08-21 15:11:15',998.265000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14313,9,9,'2019-08-21 15:11:15',998.712000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14314,9,9,'2019-08-21 15:11:15',999.064000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14315,9,9,'2019-08-21 15:11:15',999.357000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14316,9,9,'2019-08-21 15:11:15',1000.030000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14317,9,9,'2019-08-21 15:11:15',1000.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14318,9,9,'2019-08-21 15:11:15',1001.795000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14319,9,9,'2019-08-21 15:11:15',1002.083000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14320,9,9,'2019-08-21 15:11:15',1002.627000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14321,9,9,'2019-08-21 15:11:15',1003.459000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14322,9,9,'2019-08-21 15:11:15',1003.860000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14323,9,9,'2019-08-21 15:11:15',1004.309000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14324,9,9,'2019-08-21 15:11:15',1005.308000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14325,9,9,'2019-08-21 15:11:15',1006.173000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14326,9,9,'2019-08-21 15:11:15',1007.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14327,9,9,'2019-08-21 15:11:15',1007.474000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14328,9,9,'2019-08-21 15:11:15',1007.954000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14329,9,9,'2019-08-21 15:11:15',1008.281000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14330,9,9,'2019-08-21 15:11:15',1008.903000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14331,9,9,'2019-08-21 15:11:15',1009.770000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14332,9,9,'2019-08-21 15:11:15',1010.701000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14333,9,9,'2019-08-21 15:11:15',1011.584000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14334,9,9,'2019-08-21 15:11:15',1012.006000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14335,9,9,'2019-08-21 15:11:15',1012.350000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14336,9,9,'2019-08-21 15:11:15',1013.148000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14337,9,9,'2019-08-21 15:11:15',1013.470000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14338,9,9,'2019-08-21 15:11:15',1013.981000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14339,9,9,'2019-08-21 15:11:15',1014.964000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14340,9,9,'2019-08-21 15:11:15',1015.929000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14341,9,9,'2019-08-21 15:11:15',1016.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14342,9,9,'2019-08-21 15:11:15',1017.511000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14343,9,9,'2019-08-21 15:11:15',1018.460000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14344,9,9,'2019-08-21 15:11:15',1018.779000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14345,9,9,'2019-08-21 15:11:15',1019.309000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14346,9,9,'2019-08-21 15:11:15',1020.108000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14347,9,9,'2019-08-21 15:11:15',1020.425000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14348,9,9,'2019-08-21 15:11:15',1021.057000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14349,9,9,'2019-08-21 15:11:15',1021.475000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14350,9,9,'2019-08-21 15:11:15',1021.923000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14351,9,9,'2019-08-21 15:11:15',1022.705000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14352,9,9,'2019-08-21 15:11:15',1023.504000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14353,9,9,'2019-08-21 15:11:15',1024.304000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14354,9,9,'2019-08-21 15:11:15',1024.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14355,9,9,'2019-08-21 15:11:15',1025.186000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14356,9,9,'2019-08-21 15:11:15',1026.102000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14357,9,9,'2019-08-21 15:11:15',1026.934000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14358,9,9,'2019-08-21 15:11:15',1027.800000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14359,9,9,'2019-08-21 15:11:15',1028.615000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14360,9,9,'2019-08-21 15:11:15',1028.984000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14361,9,9,'2019-08-21 15:11:15',1029.431000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14362,9,9,'2019-08-21 15:11:15',1029.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14363,9,9,'2019-08-21 15:11:15',1030.430000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14364,9,9,'2019-08-21 15:11:15',1031.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14365,9,9,'2019-08-21 15:11:15',1031.781000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14366,9,9,'2019-08-21 15:11:15',1032.245000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14367,9,9,'2019-08-21 15:11:15',1032.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14368,9,9,'2019-08-21 15:11:15',1033.110000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14369,9,9,'2019-08-21 15:11:15',1034.093000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14370,9,9,'2019-08-21 15:11:15',1035.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14371,9,9,'2019-08-21 15:11:15',1035.990000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14372,9,9,'2019-08-21 15:11:15',1036.856000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14373,9,9,'2019-08-21 15:11:15',1037.655000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14374,9,9,'2019-08-21 15:11:15',1038.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14375,9,9,'2019-08-21 15:11:15',1039.019000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14376,9,9,'2019-08-21 15:11:15',1039.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14377,9,9,'2019-08-21 15:11:15',1040.386000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14378,9,9,'2019-08-21 15:11:15',1041.318000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14379,9,9,'2019-08-21 15:11:15',1041.653000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14380,9,9,'2019-08-21 15:11:15',1042.184000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14381,9,9,'2019-08-21 15:11:15',1043.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14382,9,9,'2019-08-21 15:11:15',1043.490000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14383,9,9,'2019-08-21 15:11:15',1043.915000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14384,9,9,'2019-08-21 15:11:15',1044.881000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14385,9,9,'2019-08-21 15:11:15',1045.713000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14386,9,9,'2019-08-21 15:11:15',1046.085000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14387,9,9,'2019-08-21 15:11:15',1046.513000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14388,9,9,'2019-08-21 15:11:15',1047.444000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14389,9,9,'2019-08-21 15:11:15',1048.377000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14390,9,9,'2019-08-21 15:11:15',1048.699000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14391,9,9,'2019-08-21 15:11:15',1049.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14392,9,9,'2019-08-21 15:11:15',1049.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14393,9,9,'2019-08-21 15:11:15',1050.092000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14394,9,9,'2019-08-21 15:11:15',1051.041000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14395,9,9,'2019-08-21 15:11:15',1051.444000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14396,9,9,'2019-08-21 15:11:15',1052.057000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14397,9,9,'2019-08-21 15:11:15',1053.021000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14398,9,9,'2019-08-21 15:11:15',1053.362000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14399,9,9,'2019-08-21 15:11:15',1053.921000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14400,9,9,'2019-08-21 15:11:15',1054.920000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14401,9,9,'2019-08-21 15:11:15',1055.735000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14402,9,9,'2019-08-21 15:11:15',1056.535000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14403,9,9,'2019-08-21 15:11:15',1057.317000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14404,9,9,'2019-08-21 15:11:15',1057.673000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14405,9,9,'2019-08-21 15:11:15',1058.149000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14406,9,9,'2019-08-21 15:11:15',1059.065000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14407,9,9,'2019-08-21 15:11:15',1059.379000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14408,9,9,'2019-08-21 15:11:15',1059.897000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14409,9,9,'2019-08-21 15:11:15',1060.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14410,9,9,'2019-08-21 15:11:15',1061.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14411,9,9,'2019-08-21 15:11:15',1062.795000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14412,9,9,'2019-08-21 15:11:15',1063.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14413,9,9,'2019-08-21 15:11:15',1063.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14414,9,9,'2019-08-21 15:11:15',1064.692000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14415,9,9,'2019-08-21 15:11:15',1065.542000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14416,9,9,'2019-08-21 15:11:15',1066.457000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14417,9,9,'2019-08-21 15:11:15',1066.798000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14418,9,9,'2019-08-21 15:11:15',1067.257000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14419,9,9,'2019-08-21 15:11:15',1067.696000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14420,9,9,'2019-08-21 15:11:15',1068.056000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14421,9,9,'2019-08-21 15:11:15',1068.821000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14422,9,9,'2019-08-21 15:11:15',1069.190000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14423,9,9,'2019-08-21 15:11:15',1069.620000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14424,9,9,'2019-08-21 15:11:15',1070.603000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14425,9,9,'2019-08-21 15:11:15',1071.452000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14426,9,9,'2019-08-21 15:11:15',1071.744000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14427,9,9,'2019-08-21 15:11:15',1072.400000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14428,9,9,'2019-08-21 15:11:15',1073.383000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14429,9,9,'2019-08-21 15:11:15',1074.249000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14430,9,9,'2019-08-21 15:11:15',1074.591000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14431,9,9,'2019-08-21 15:11:15',1075.081000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14432,9,9,'2019-08-21 15:11:15',1076.014000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14433,9,9,'2019-08-21 15:11:15',1076.912000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14434,9,9,'2019-08-21 15:11:15',1077.186000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14435,9,9,'2019-08-21 15:11:15',1077.762000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14436,9,9,'2019-08-21 15:11:15',1078.594000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14437,9,9,'2019-08-21 15:11:15',1079.394000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14438,9,9,'2019-08-21 15:11:15',1080.309000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14439,9,9,'2019-08-21 15:11:15',1081.191000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14440,9,9,'2019-08-21 15:11:15',1081.957000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14441,9,9,'2019-08-21 15:11:15',1082.323000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14442,9,9,'2019-08-21 15:11:15',1082.789000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14443,9,9,'2019-08-21 15:11:15',1083.788000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14444,9,9,'2019-08-21 15:11:15',1084.222000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14445,9,9,'2019-08-21 15:11:15',1084.571000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14446,9,9,'2019-08-21 15:11:15',1084.998000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14447,9,9,'2019-08-21 15:11:15',1085.520000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14448,9,9,'2019-08-21 15:11:15',1086.319000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14449,9,9,'2019-08-21 15:11:15',1086.685000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14450,9,9,'2019-08-21 15:11:15',1087.151000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14451,9,9,'2019-08-21 15:11:15',1087.950000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14452,9,9,'2019-08-21 15:11:15',1088.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14453,9,9,'2019-08-21 15:11:15',1089.648000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14454,9,9,'2019-08-21 15:11:15',1090.548000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14455,9,9,'2019-08-21 15:11:15',1091.413000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14456,9,9,'2019-08-21 15:11:15',1092.296000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14457,9,9,'2019-08-21 15:11:15',1092.711000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14458,9,9,'2019-08-21 15:11:15',1093.229000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14459,9,9,'2019-08-21 15:11:15',1094.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14460,9,9,'2019-08-21 15:11:15',1094.446000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14461,9,9,'2019-08-21 15:11:15',1094.893000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14462,9,9,'2019-08-21 15:11:15',1095.892000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14463,9,9,'2019-08-21 15:11:15',1096.304000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14464,9,9,'2019-08-21 15:11:15',1096.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14465,9,9,'2019-08-21 15:11:15',1097.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14466,9,9,'2019-08-21 15:11:15',1098.339000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14467,9,9,'2019-08-21 15:11:15',1098.696000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14468,9,9,'2019-08-21 15:11:15',1099.288000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14469,9,9,'2019-08-21 15:11:15',1100.171000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14470,9,9,'2019-08-21 15:11:15',1101.036000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14471,9,9,'2019-08-21 15:11:15',1101.818000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14472,9,9,'2019-08-21 15:11:15',1102.801000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14473,9,9,'2019-08-21 15:11:15',1103.583000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14474,9,9,'2019-08-21 15:11:15',1103.926000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14475,9,9,'2019-08-21 15:11:15',1104.399000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14476,9,9,'2019-08-21 15:11:15',1104.813000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14477,9,9,'2019-08-21 15:11:15',1105.365000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14478,9,9,'2019-08-21 15:11:15',1106.264000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14479,9,9,'2019-08-21 15:11:15',1107.080000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14480,9,9,'2019-08-21 15:11:15',1107.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14481,9,9,'2019-08-21 15:11:15',1108.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14482,9,9,'2019-08-21 15:11:15',1108.794000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14483,9,9,'2019-08-21 15:11:15',1109.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14484,9,9,'2019-08-21 15:11:15',1109.561000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14485,9,9,'2019-08-21 15:11:15',1110.376000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14486,9,9,'2019-08-21 15:11:15',1111.191000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14487,9,9,'2019-08-21 15:11:15',1112.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14488,9,9,'2019-08-21 15:11:15',1112.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14489,9,9,'2019-08-21 15:11:15',1112.974000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14490,9,9,'2019-08-21 15:11:15',1113.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14491,9,9,'2019-08-21 15:11:15',1114.921000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14492,9,9,'2019-08-21 15:11:15',1115.241000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14493,9,9,'2019-08-21 15:11:15',1115.870000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14494,9,9,'2019-08-21 15:11:15',1116.853000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14495,9,9,'2019-08-21 15:11:15',1117.818000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14496,9,9,'2019-08-21 15:11:15',1118.767000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14497,9,9,'2019-08-21 15:11:15',1119.550000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14498,9,9,'2019-08-21 15:11:15',1119.914000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14499,9,9,'2019-08-21 15:11:15',1120.548000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14500,9,9,'2019-08-21 15:11:15',1120.873000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14501,9,9,'2019-08-21 15:11:15',1121.480000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14502,9,9,'2019-08-21 15:11:15',1122.246000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14503,9,9,'2019-08-21 15:11:15',1123.162000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14504,9,9,'2019-08-21 15:11:15',1123.488000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14505,9,9,'2019-08-21 15:11:15',1124.011000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14506,9,9,'2019-08-21 15:11:15',1124.910000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14507,9,9,'2019-08-21 15:11:15',1125.826000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14508,9,9,'2019-08-21 15:11:15',1126.243000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14509,9,9,'2019-08-21 15:11:15',1126.758000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14510,9,9,'2019-08-21 15:11:15',1127.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14511,9,9,'2019-08-21 15:11:15',1127.899000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14512,9,9,'2019-08-21 15:11:15',1128.323000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14513,9,9,'2019-08-21 15:11:15',1129.105000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14514,9,9,'2019-08-21 15:11:15',1129.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14515,9,9,'2019-08-21 15:11:15',1130.005000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14516,9,9,'2019-08-21 15:11:15',1130.920000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14517,9,9,'2019-08-21 15:11:15',1131.803000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14518,9,9,'2019-08-21 15:11:15',1132.099000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14519,9,9,'2019-08-21 15:11:15',1132.585000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14520,9,9,'2019-08-21 15:11:15',1133.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14521,9,9,'2019-08-21 15:11:15',1134.316000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14522,9,9,'2019-08-21 15:11:15',1134.622000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14523,9,9,'2019-08-21 15:11:15',1135.149000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14524,9,9,'2019-08-21 15:11:15',1135.981000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14525,9,9,'2019-08-21 15:11:15',1136.980000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14526,9,9,'2019-08-21 15:11:15',1137.746000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14527,9,9,'2019-08-21 15:11:15',1138.612000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14528,9,9,'2019-08-21 15:11:15',1138.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14529,9,9,'2019-08-21 15:11:15',1139.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14530,9,9,'2019-08-21 15:11:15',1140.210000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14531,9,9,'2019-08-21 15:11:15',1141.176000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14532,9,9,'2019-08-21 15:11:15',1141.466000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14533,9,9,'2019-08-21 15:11:15',1142.041000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14534,9,9,'2019-08-21 15:11:15',1142.404000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14535,9,9,'2019-08-21 15:11:15',1142.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14536,9,9,'2019-08-21 15:11:15',1143.723000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14537,9,9,'2019-08-21 15:11:15',1144.655000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14538,9,9,'2019-08-21 15:11:15',1145.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14539,9,9,'2019-08-21 15:11:15',1145.816000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14540,9,9,'2019-08-21 15:11:15',1146.287000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14541,9,9,'2019-08-21 15:11:15',1147.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14542,9,9,'2019-08-21 15:11:15',1147.562000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14543,9,9,'2019-08-21 15:11:15',1148.118000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14544,9,9,'2019-08-21 15:11:15',1149.084000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14545,9,9,'2019-08-21 15:11:15',1149.390000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14546,9,9,'2019-08-21 15:11:15',1149.899000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14547,9,9,'2019-08-21 15:11:15',1150.749000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14548,9,9,'2019-08-21 15:11:15',1151.697000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14549,9,9,'2019-08-21 15:11:15',1152.696000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14550,9,9,'2019-08-21 15:11:15',1153.529000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14551,9,9,'2019-08-21 15:11:15',1154.295000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14552,9,9,'2019-08-21 15:11:15',1155.277000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14553,9,9,'2019-08-21 15:11:15',1156.275000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14554,9,9,'2019-08-21 15:11:15',1156.587000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14555,9,9,'2019-08-21 15:11:15',1157.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14556,9,9,'2019-08-21 15:11:15',1157.616000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14557,9,9,'2019-08-21 15:11:15',1158.091000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14558,9,9,'2019-08-21 15:11:15',1158.484000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14559,9,9,'2019-08-21 15:11:15',1159.039000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14560,9,9,'2019-08-21 15:11:15',1160.021000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14561,9,9,'2019-08-21 15:11:15',1160.888000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14562,9,9,'2019-08-21 15:11:15',1161.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14563,9,9,'2019-08-21 15:11:15',1161.720000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14564,9,9,'2019-08-21 15:11:15',1162.520000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14565,9,9,'2019-08-21 15:11:15',1163.468000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14566,9,9,'2019-08-21 15:11:15',1164.400000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14567,9,9,'2019-08-21 15:11:15',1165.333000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14568,9,9,'2019-08-21 15:11:15',1165.702000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14569,9,9,'2019-08-21 15:11:15',1166.231000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14570,9,9,'2019-08-21 15:11:15',1166.580000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14571,9,9,'2019-08-21 15:11:15',1167.197000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14572,9,9,'2019-08-21 15:11:15',1168.180000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14573,9,9,'2019-08-21 15:11:15',1169.129000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14574,9,9,'2019-08-21 15:11:15',1169.961000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14575,9,9,'2019-08-21 15:11:15',1170.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14576,9,9,'2019-08-21 15:11:15',1171.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14577,9,9,'2019-08-21 15:11:15',1172.041000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14578,9,9,'2019-08-21 15:11:15',1172.625000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14579,9,9,'2019-08-21 15:11:15',1172.970000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14580,9,9,'2019-08-21 15:11:15',1173.424000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14581,9,9,'2019-08-21 15:11:15',1174.272000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14582,9,9,'2019-08-21 15:11:15',1175.205000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14583,9,9,'2019-08-21 15:11:15',1176.071000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14584,9,9,'2019-08-21 15:11:15',1176.392000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14585,9,9,'2019-08-21 15:11:15',1176.970000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14586,9,9,'2019-08-21 15:11:15',1177.853000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14587,9,9,'2019-08-21 15:11:15',1178.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14588,9,9,'2019-08-21 15:11:15',1178.768000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14589,9,9,'2019-08-21 15:11:15',1179.667000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14590,9,9,'2019-08-21 15:11:15',1180.106000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14591,9,9,'2019-08-21 15:11:15',1180.499000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14592,9,9,'2019-08-21 15:11:15',1181.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14593,9,9,'2019-08-21 15:11:15',1181.974000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14594,9,9,'2019-08-21 15:11:15',1182.364000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14595,9,9,'2019-08-21 15:11:15',1183.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14596,9,9,'2019-08-21 15:11:15',1184.046000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14597,9,9,'2019-08-21 15:11:15',1184.994000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14598,9,9,'2019-08-21 15:11:15',1185.960000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14599,9,9,'2019-08-21 15:11:15',1186.759000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14600,9,9,'2019-08-21 15:11:15',1187.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14601,9,9,'2019-08-21 15:11:15',1187.575000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14602,9,9,'2019-08-21 15:11:15',1188.357000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14603,9,9,'2019-08-21 15:11:15',1188.737000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14604,9,9,'2019-08-21 15:11:15',1189.356000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14605,10,10,'2019-08-21 15:11:22',0.488000,0.000000,NULL,NULL,NULL,NULL,'e-254',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14606,10,10,'2019-08-21 15:11:22',6.255000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14607,10,10,'2019-08-21 15:11:22',6.682000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14608,10,10,'2019-08-21 15:11:22',7.071000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14609,10,10,'2019-08-21 15:11:22',7.419000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14610,10,10,'2019-08-21 15:11:22',7.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14611,10,10,'2019-08-21 15:11:22',8.603000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14612,10,10,'2019-08-21 15:11:22',9.519000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14613,10,10,'2019-08-21 15:11:22',10.351000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14614,10,10,'2019-08-21 15:11:22',11.300000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14615,10,10,'2019-08-21 15:11:22',12.299000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14616,10,10,'2019-08-21 15:11:22',12.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14617,10,10,'2019-08-21 15:11:22',13.164000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14618,10,10,'2019-08-21 15:11:22',13.435000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14619,10,10,'2019-08-21 15:11:22',14.080000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14620,10,10,'2019-08-21 15:11:22',15.029000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14621,10,10,'2019-08-21 15:11:22',15.878000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14622,10,10,'2019-08-21 15:11:22',16.894000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14623,10,10,'2019-08-21 15:11:22',17.742000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14624,10,10,'2019-08-21 15:11:22',18.525000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14625,10,10,'2019-08-21 15:11:22',18.936000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14626,10,10,'2019-08-21 15:11:22',19.357000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14627,10,10,'2019-08-21 15:11:22',20.140000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14628,10,10,'2019-08-21 15:11:22',20.470000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14629,10,10,'2019-08-21 15:11:22',20.939000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14630,10,10,'2019-08-21 15:11:22',21.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14631,10,10,'2019-08-21 15:11:22',21.854000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14632,10,10,'2019-08-21 15:11:22',22.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14633,10,10,'2019-08-21 15:11:22',23.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14634,10,10,'2019-08-21 15:11:22',23.932000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14635,10,10,'2019-08-21 15:11:22',24.519000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14636,10,10,'2019-08-21 15:11:22',25.468000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14637,10,10,'2019-08-21 15:11:22',26.366000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14638,10,10,'2019-08-21 15:11:22',27.299000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14639,10,10,'2019-08-21 15:11:22',28.198000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14640,10,10,'2019-08-21 15:11:22',28.585000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14641,10,10,'2019-08-21 15:11:22',29.196000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14642,10,10,'2019-08-21 15:11:22',29.453000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14643,10,10,'2019-08-21 15:11:22',29.996000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14644,10,10,'2019-08-21 15:11:22',30.928000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14645,10,10,'2019-08-21 15:11:22',31.761000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14646,10,10,'2019-08-21 15:11:22',32.128000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14647,10,10,'2019-08-21 15:11:22',32.710000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14648,10,10,'2019-08-21 15:11:22',33.658000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14649,10,10,'2019-08-21 15:11:22',33.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14650,10,10,'2019-08-21 15:11:22',34.641000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14651,10,10,'2019-08-21 15:11:22',35.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14652,10,10,'2019-08-21 15:11:22',36.372000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14653,10,10,'2019-08-21 15:11:22',37.338000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14654,10,10,'2019-08-21 15:11:22',38.104000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14655,10,10,'2019-08-21 15:11:22',38.886000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14656,10,10,'2019-08-21 15:11:22',39.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14657,10,10,'2019-08-21 15:11:22',39.802000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14658,10,10,'2019-08-21 15:11:22',40.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14659,10,10,'2019-08-21 15:11:22',40.617000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14660,10,10,'2019-08-21 15:11:22',41.600000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14661,10,10,'2019-08-21 15:11:22',42.382000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14662,10,10,'2019-08-21 15:11:22',43.231000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14663,10,10,'2019-08-21 15:11:22',43.514000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14664,10,10,'2019-08-21 15:11:22',44.197000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14665,10,10,'2019-08-21 15:11:22',44.963000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14666,10,10,'2019-08-21 15:11:22',45.311000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14667,10,10,'2019-08-21 15:11:22',45.896000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14668,10,10,'2019-08-21 15:11:22',46.711000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14669,10,10,'2019-08-21 15:11:22',47.493000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14670,10,10,'2019-08-21 15:11:22',47.844000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14671,10,10,'2019-08-21 15:11:22',48.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14672,10,10,'2019-08-21 15:11:22',48.723000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14673,10,10,'2019-08-21 15:11:22',49.225000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14674,10,10,'2019-08-21 15:11:22',50.074000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14675,10,10,'2019-08-21 15:11:22',50.906000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14676,10,10,'2019-08-21 15:11:22',51.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14677,10,10,'2019-08-21 15:11:22',52.588000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14678,10,10,'2019-08-21 15:11:22',53.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14679,10,10,'2019-08-21 15:11:22',53.840000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14680,10,10,'2019-08-21 15:11:22',54.319000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14681,10,10,'2019-08-21 15:11:22',55.252000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14682,10,10,'2019-08-21 15:11:22',55.546000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14683,10,10,'2019-08-21 15:11:22',56.067000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14684,10,10,'2019-08-21 15:11:22',57.066000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14685,10,10,'2019-08-21 15:11:22',57.982000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14686,10,10,'2019-08-21 15:11:22',58.997000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14687,10,10,'2019-08-21 15:11:22',59.847000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14688,10,10,'2019-08-21 15:11:22',60.646000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14689,10,10,'2019-08-21 15:11:22',61.066000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14690,10,10,'2019-08-21 15:11:22',61.462000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14691,10,10,'2019-08-21 15:11:22',62.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14692,10,10,'2019-08-21 15:11:22',62.611000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14693,10,10,'2019-08-21 15:11:22',63.243000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14694,10,10,'2019-08-21 15:11:22',64.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14695,10,10,'2019-08-21 15:11:22',64.941000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14696,10,10,'2019-08-21 15:11:22',65.296000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14697,10,10,'2019-08-21 15:11:22',65.807000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14698,10,10,'2019-08-21 15:11:22',66.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14699,10,10,'2019-08-21 15:11:22',66.605000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14700,10,10,'2019-08-21 15:11:22',67.422000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14701,10,10,'2019-08-21 15:11:22',68.304000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14702,10,10,'2019-08-21 15:11:22',69.187000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14703,10,10,'2019-08-21 15:11:22',69.605000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14704,10,10,'2019-08-21 15:11:22',70.102000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14705,10,10,'2019-08-21 15:11:22',71.034000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14706,10,10,'2019-08-21 15:11:22',71.353000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14707,10,10,'2019-08-21 15:11:22',71.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14708,10,10,'2019-08-21 15:11:22',72.766000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14709,10,10,'2019-08-21 15:11:22',73.564000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14710,10,10,'2019-08-21 15:11:22',74.480000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14711,10,10,'2019-08-21 15:11:22',75.430000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14712,10,10,'2019-08-21 15:11:22',76.328000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14713,10,10,'2019-08-21 15:11:22',76.772000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14714,10,10,'2019-08-21 15:11:22',77.261000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14715,10,10,'2019-08-21 15:11:22',78.043000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14716,10,10,'2019-08-21 15:11:22',78.407000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14717,10,10,'2019-08-21 15:11:22',78.976000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14718,10,10,'2019-08-21 15:11:22',79.578000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14719,10,10,'2019-08-21 15:11:22',79.825000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14720,10,10,'2019-08-21 15:11:22',80.790000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14721,10,10,'2019-08-21 15:11:22',81.294000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14722,10,10,'2019-08-21 15:11:22',81.623000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14723,10,10,'2019-08-21 15:11:22',82.555000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14724,10,10,'2019-08-21 15:11:22',83.487000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14725,10,10,'2019-08-21 15:11:22',84.370000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14726,10,10,'2019-08-21 15:11:22',84.736000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14727,10,10,'2019-08-21 15:11:22',85.369000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14728,10,10,'2019-08-21 15:11:22',86.351000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14729,10,10,'2019-08-21 15:11:22',87.134000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14730,10,10,'2019-08-21 15:11:22',87.933000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14731,10,10,'2019-08-21 15:11:22',88.360000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14732,10,10,'2019-08-21 15:11:22',88.832000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14733,10,10,'2019-08-21 15:11:22',89.647000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14734,10,10,'2019-08-21 15:11:22',90.045000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14735,10,10,'2019-08-21 15:11:22',90.496000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14736,10,10,'2019-08-21 15:11:22',91.362000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14737,10,10,'2019-08-21 15:11:22',92.194000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14738,10,10,'2019-08-21 15:11:22',93.127000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14739,10,10,'2019-08-21 15:11:22',94.093000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14740,10,10,'2019-08-21 15:11:22',94.405000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14741,10,10,'2019-08-21 15:11:22',94.975000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14742,10,10,'2019-08-21 15:11:22',95.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14743,10,10,'2019-08-21 15:11:22',96.723000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14744,10,10,'2019-08-21 15:11:22',97.589000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14745,10,10,'2019-08-21 15:11:22',97.929000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14746,10,10,'2019-08-21 15:11:22',98.538000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14747,10,10,'2019-08-21 15:11:22',99.028000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14748,10,10,'2019-08-21 15:11:22',99.453000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14749,10,10,'2019-08-21 15:11:22',100.436000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14750,10,10,'2019-08-21 15:11:22',101.335000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14751,10,10,'2019-08-21 15:11:22',102.233000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14752,10,10,'2019-08-21 15:11:22',103.166000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14753,10,10,'2019-08-21 15:11:22',103.530000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14754,10,10,'2019-08-21 15:11:22',103.965000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14755,10,10,'2019-08-21 15:11:22',104.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14756,10,10,'2019-08-21 15:11:22',104.864000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14757,10,10,'2019-08-21 15:11:22',105.863000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14758,10,10,'2019-08-21 15:11:22',106.326000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14759,10,10,'2019-08-21 15:11:22',106.846000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14760,10,10,'2019-08-21 15:11:22',107.728000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14761,10,10,'2019-08-21 15:11:22',108.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14762,10,10,'2019-08-21 15:11:22',109.409000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14763,10,10,'2019-08-21 15:11:22',110.241000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14764,10,10,'2019-08-21 15:11:22',110.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14765,10,10,'2019-08-21 15:11:22',111.058000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14766,10,10,'2019-08-21 15:11:22',111.923000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14767,10,10,'2019-08-21 15:11:22',112.789000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14768,10,10,'2019-08-21 15:11:22',113.180000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14769,10,10,'2019-08-21 15:11:22',113.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14770,10,10,'2019-08-21 15:11:22',114.341000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14771,10,10,'2019-08-21 15:11:22',114.637000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14772,10,10,'2019-08-21 15:11:22',115.469000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14773,10,10,'2019-08-21 15:11:22',116.468000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14774,10,10,'2019-08-21 15:11:22',117.367000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14775,10,10,'2019-08-21 15:11:22',117.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14776,10,10,'2019-08-21 15:11:22',118.166000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14777,10,10,'2019-08-21 15:11:22',119.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14778,10,10,'2019-08-21 15:11:22',119.964000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14779,10,10,'2019-08-21 15:11:22',120.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14780,10,10,'2019-08-21 15:11:22',121.386000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14781,10,10,'2019-08-21 15:11:22',121.779000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14782,10,10,'2019-08-21 15:11:22',122.694000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14783,10,10,'2019-08-21 15:11:22',123.112000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14784,10,10,'2019-08-21 15:11:22',123.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14785,10,10,'2019-08-21 15:11:22',124.510000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14786,10,10,'2019-08-21 15:11:22',125.491000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14787,10,10,'2019-08-21 15:11:22',126.258000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14788,10,10,'2019-08-21 15:11:22',126.655000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14789,10,10,'2019-08-21 15:11:22',127.140000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14790,10,10,'2019-08-21 15:11:22',127.482000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14791,10,10,'2019-08-21 15:11:22',127.989000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14792,10,10,'2019-08-21 15:11:22',128.391000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14793,10,10,'2019-08-21 15:11:22',128.805000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14794,10,10,'2019-08-21 15:11:22',129.653000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14795,10,10,'2019-08-21 15:11:22',130.470000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14796,10,10,'2019-08-21 15:11:22',131.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14797,10,10,'2019-08-21 15:11:22',132.384000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14798,10,10,'2019-08-21 15:11:22',133.233000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14799,10,10,'2019-08-21 15:11:22',133.640000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14800,10,10,'2019-08-21 15:11:22',134.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14801,10,10,'2019-08-21 15:11:22',134.831000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14802,10,10,'2019-08-21 15:11:22',135.730000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14803,10,10,'2019-08-21 15:11:22',136.529000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14804,10,10,'2019-08-21 15:11:22',136.950000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14805,10,10,'2019-08-21 15:11:22',137.346000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14806,10,10,'2019-08-21 15:11:22',138.294000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14807,10,10,'2019-08-21 15:11:22',139.127000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14808,10,10,'2019-08-21 15:11:22',139.514000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14809,10,10,'2019-08-21 15:11:22',140.075000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14810,10,10,'2019-08-21 15:11:22',141.058000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14811,10,10,'2019-08-21 15:11:22',141.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14812,10,10,'2019-08-21 15:11:22',141.957000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14813,10,10,'2019-08-21 15:11:22',142.739000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14814,10,10,'2019-08-21 15:11:22',143.639000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14815,10,10,'2019-08-21 15:11:22',144.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14816,10,10,'2019-08-21 15:11:22',144.854000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14817,10,10,'2019-08-21 15:11:22',145.470000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14818,10,10,'2019-08-21 15:11:22',145.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14819,10,10,'2019-08-21 15:11:22',146.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14820,10,10,'2019-08-21 15:11:22',147.168000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14821,10,10,'2019-08-21 15:11:22',147.983000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14822,10,10,'2019-08-21 15:11:22',148.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14823,10,10,'2019-08-21 15:11:22',148.850000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14824,10,10,'2019-08-21 15:11:22',149.748000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14825,10,10,'2019-08-21 15:11:22',150.681000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14826,10,10,'2019-08-21 15:11:22',151.496000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14827,10,10,'2019-08-21 15:11:22',151.849000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14828,10,10,'2019-08-21 15:11:22',152.479000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14829,10,10,'2019-08-21 15:11:22',153.444000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14830,10,10,'2019-08-21 15:11:22',154.311000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14831,10,10,'2019-08-21 15:11:22',154.745000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14832,10,10,'2019-08-21 15:11:22',155.259000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14833,10,10,'2019-08-21 15:11:22',156.225000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14834,10,10,'2019-08-21 15:11:22',157.007000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14835,10,10,'2019-08-21 15:11:22',157.807000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14836,10,10,'2019-08-21 15:11:22',158.248000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14837,10,10,'2019-08-21 15:11:22',158.655000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14838,10,10,'2019-08-21 15:11:22',159.487000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14839,10,10,'2019-08-21 15:11:22',160.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14840,10,10,'2019-08-21 15:11:22',160.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14841,10,10,'2019-08-21 15:11:22',161.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14842,10,10,'2019-08-21 15:11:22',162.151000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14843,10,10,'2019-08-21 15:11:22',163.134000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14844,10,10,'2019-08-21 15:11:22',163.507000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14845,10,10,'2019-08-21 15:11:22',164.066000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14846,10,10,'2019-08-21 15:11:22',165.065000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14847,10,10,'2019-08-21 15:11:22',166.030000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14848,10,10,'2019-08-21 15:11:22',166.524000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14849,10,10,'2019-08-21 15:11:22',166.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14850,10,10,'2019-08-21 15:11:22',167.629000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14851,10,10,'2019-08-21 15:11:22',168.611000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14852,10,10,'2019-08-21 15:11:22',168.887000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14853,10,10,'2019-08-21 15:11:22',169.510000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14854,10,10,'2019-08-21 15:11:22',170.442000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14855,10,10,'2019-08-21 15:11:22',170.865000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14856,10,10,'2019-08-21 15:11:22',171.458000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14857,10,10,'2019-08-21 15:11:22',172.257000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14858,10,10,'2019-08-21 15:11:22',172.602000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14859,10,10,'2019-08-21 15:11:22',173.057000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14860,10,10,'2019-08-21 15:11:22',173.922000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14861,10,10,'2019-08-21 15:11:22',174.921000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14862,10,10,'2019-08-21 15:11:22',175.736000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14863,10,10,'2019-08-21 15:11:22',176.205000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14864,10,10,'2019-08-21 15:11:22',176.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14865,10,10,'2019-08-21 15:11:22',177.435000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14866,10,10,'2019-08-21 15:11:22',178.400000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14867,10,10,'2019-08-21 15:11:22',178.697000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14868,10,10,'2019-08-21 15:11:22',179.199000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14869,10,10,'2019-08-21 15:11:22',179.982000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14870,10,10,'2019-08-21 15:11:22',180.947000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14871,10,10,'2019-08-21 15:11:22',181.896000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14872,10,10,'2019-08-21 15:11:22',182.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14873,10,10,'2019-08-21 15:11:22',183.331000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14874,10,10,'2019-08-21 15:11:22',183.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14875,10,10,'2019-08-21 15:11:22',184.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14876,10,10,'2019-08-21 15:11:22',184.776000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14877,10,10,'2019-08-21 15:11:22',185.659000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14878,10,10,'2019-08-21 15:11:22',186.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14879,10,10,'2019-08-21 15:11:22',187.591000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14880,10,10,'2019-08-21 15:11:22',187.934000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14881,10,10,'2019-08-21 15:11:22',188.572000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14882,10,10,'2019-08-21 15:11:22',189.472000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14883,10,10,'2019-08-21 15:11:22',190.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14884,10,10,'2019-08-21 15:11:22',190.770000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14885,10,10,'2019-08-21 15:11:22',191.319000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14886,10,10,'2019-08-21 15:11:22',191.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14887,10,10,'2019-08-21 15:11:22',192.252000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14888,10,10,'2019-08-21 15:11:22',193.084000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14889,10,10,'2019-08-21 15:11:22',194.033000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14890,10,10,'2019-08-21 15:11:22',194.866000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14891,10,10,'2019-08-21 15:11:22',195.211000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14892,10,10,'2019-08-21 15:11:22',195.715000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14893,10,10,'2019-08-21 15:11:22',196.514000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14894,10,10,'2019-08-21 15:11:22',197.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14895,10,10,'2019-08-21 15:11:22',197.795000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14896,10,10,'2019-08-21 15:11:22',198.146000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14897,10,10,'2019-08-21 15:11:22',198.978000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14898,10,10,'2019-08-21 15:11:22',199.400000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14899,10,10,'2019-08-21 15:11:22',199.894000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14900,10,10,'2019-08-21 15:11:22',200.709000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14901,10,10,'2019-08-21 15:11:22',201.658000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14902,10,10,'2019-08-21 15:11:22',202.246000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14903,10,10,'2019-08-21 15:11:22',202.524000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14904,10,10,'2019-08-21 15:11:22',202.913000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14905,10,10,'2019-08-21 15:11:22',203.340000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14906,10,10,'2019-08-21 15:11:22',204.272000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14907,10,10,'2019-08-21 15:11:22',205.138000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14908,10,10,'2019-08-21 15:11:22',205.921000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14909,10,10,'2019-08-21 15:11:22',206.687000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14910,10,10,'2019-08-21 15:11:22',207.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14911,10,10,'2019-08-21 15:11:22',207.469000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14912,10,10,'2019-08-21 15:11:22',207.858000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14913,10,10,'2019-08-21 15:11:22',208.234000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14914,10,10,'2019-08-21 15:11:22',208.615000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14915,10,10,'2019-08-21 15:11:22',209.000000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14916,10,10,'2019-08-21 15:11:22',209.783000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14917,10,10,'2019-08-21 15:11:22',210.549000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14918,10,10,'2019-08-21 15:11:22',211.331000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14919,10,10,'2019-08-21 15:11:22',212.097000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14920,10,10,'2019-08-21 15:11:22',212.979000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14921,10,10,'2019-08-21 15:11:22',213.431000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14922,10,10,'2019-08-21 15:11:22',213.878000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14923,10,10,'2019-08-21 15:11:22',214.761000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14924,10,10,'2019-08-21 15:11:22',215.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14925,10,10,'2019-08-21 15:11:22',215.660000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14926,10,10,'2019-08-21 15:11:22',216.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14927,10,10,'2019-08-21 15:11:22',217.458000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14928,10,10,'2019-08-21 15:11:22',218.224000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14929,10,10,'2019-08-21 15:11:22',219.123000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14930,10,10,'2019-08-21 15:11:22',220.005000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14931,10,10,'2019-08-21 15:11:22',220.415000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14932,10,10,'2019-08-21 15:11:22',220.954000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14933,10,10,'2019-08-21 15:11:22',221.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14934,10,10,'2019-08-21 15:11:22',221.887000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14935,10,10,'2019-08-21 15:11:22',222.231000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14936,10,10,'2019-08-21 15:11:22',222.785000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14937,10,10,'2019-08-21 15:11:22',223.651000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14938,10,10,'2019-08-21 15:11:22',224.434000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14939,10,10,'2019-08-21 15:11:22',225.416000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14940,10,10,'2019-08-21 15:11:22',226.265000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14941,10,10,'2019-08-21 15:11:22',226.684000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14942,10,10,'2019-08-21 15:11:22',227.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14943,10,10,'2019-08-21 15:11:22',228.079000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14944,10,10,'2019-08-21 15:11:22',228.929000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14945,10,10,'2019-08-21 15:11:22',229.348000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14946,10,10,'2019-08-21 15:11:22',229.728000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14947,10,10,'2019-08-21 15:11:22',230.136000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14948,10,10,'2019-08-21 15:11:22',230.627000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14949,10,10,'2019-08-21 15:11:22',231.542000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14950,10,10,'2019-08-21 15:11:22',232.508000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14951,10,10,'2019-08-21 15:11:22',233.440000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14952,10,10,'2019-08-21 15:11:22',234.423000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14953,10,10,'2019-08-21 15:11:22',235.305000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14954,10,10,'2019-08-21 15:11:22',235.737000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14955,10,10,'2019-08-21 15:11:22',236.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14956,10,10,'2019-08-21 15:11:22',237.036000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14957,10,10,'2019-08-21 15:11:22',237.443000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14958,10,10,'2019-08-21 15:11:22',237.902000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14959,10,10,'2019-08-21 15:11:22',238.868000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14960,10,10,'2019-08-21 15:11:22',239.733000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14961,10,10,'2019-08-21 15:11:22',240.169000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14962,10,10,'2019-08-21 15:11:22',240.699000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14963,10,10,'2019-08-21 15:11:22',241.698000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14964,10,10,'2019-08-21 15:11:22',242.006000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14965,10,10,'2019-08-21 15:11:22',242.647000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14966,10,10,'2019-08-21 15:11:22',243.463000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14967,10,10,'2019-08-21 15:11:22',243.843000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14968,10,10,'2019-08-21 15:11:22',244.278000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14969,10,10,'2019-08-21 15:11:22',244.690000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14970,10,10,'2019-08-21 15:11:22',245.178000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14971,10,10,'2019-08-21 15:11:22',246.144000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14972,10,10,'2019-08-21 15:11:22',247.092000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14973,10,10,'2019-08-21 15:11:22',247.991000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14974,10,10,'2019-08-21 15:11:22',248.873000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14975,10,10,'2019-08-21 15:11:22',249.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14976,10,10,'2019-08-21 15:11:22',250.738000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14977,10,10,'2019-08-21 15:11:22',251.090000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14978,10,10,'2019-08-21 15:11:22',251.554000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14979,10,10,'2019-08-21 15:11:22',252.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14980,10,10,'2019-08-21 15:11:22',253.318000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14981,10,10,'2019-08-21 15:11:22',253.634000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14982,10,10,'2019-08-21 15:11:22',254.151000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14983,10,10,'2019-08-21 15:11:22',254.967000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14984,10,10,'2019-08-21 15:11:22',255.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14985,10,10,'2019-08-21 15:11:22',255.966000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14986,10,10,'2019-08-21 15:11:22',256.849000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14987,10,10,'2019-08-21 15:11:22',257.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14988,10,10,'2019-08-21 15:11:22',257.830000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14989,10,10,'2019-08-21 15:11:22',258.763000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14990,10,10,'2019-08-21 15:11:22',259.679000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14991,10,10,'2019-08-21 15:11:22',260.134000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14992,10,10,'2019-08-21 15:11:22',260.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14993,10,10,'2019-08-21 15:11:22',261.427000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14994,10,10,'2019-08-21 15:11:22',262.342000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14995,10,10,'2019-08-21 15:11:22',262.708000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14996,10,10,'2019-08-21 15:11:22',263.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14997,10,10,'2019-08-21 15:11:22',264.190000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14998,10,10,'2019-08-21 15:11:22',265.040000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (14999,10,10,'2019-08-21 15:11:22',265.955000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15000,10,10,'2019-08-21 15:11:22',266.312000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15001,10,10,'2019-08-21 15:11:22',266.737000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15002,10,10,'2019-08-21 15:11:22',267.587000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15003,10,10,'2019-08-21 15:11:22',268.369000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15004,10,10,'2019-08-21 15:11:22',268.724000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15005,10,10,'2019-08-21 15:11:22',269.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15006,10,10,'2019-08-21 15:11:22',274.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15007,10,10,'2019-08-21 15:11:22',274.387000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15008,10,10,'2019-08-21 15:11:22',280.314000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15009,10,10,'2019-08-21 15:11:22',280.905000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15010,10,10,'2019-08-21 15:11:22',281.854000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15011,10,10,'2019-08-21 15:11:22',282.787000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15012,10,10,'2019-08-21 15:11:22',283.753000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15013,10,10,'2019-08-21 15:11:22',284.535000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15014,10,10,'2019-08-21 15:11:22',284.896000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15015,10,10,'2019-08-21 15:11:22',285.418000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15016,10,10,'2019-08-21 15:11:22',285.855000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15017,10,10,'2019-08-21 15:11:22',286.217000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15018,10,10,'2019-08-21 15:11:22',287.032000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15019,10,10,'2019-08-21 15:11:22',287.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15020,10,10,'2019-08-21 15:11:22',288.207000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15021,10,10,'2019-08-21 15:11:22',288.847000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15022,10,10,'2019-08-21 15:11:22',289.613000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15023,10,10,'2019-08-21 15:11:22',290.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15024,10,10,'2019-08-21 15:11:22',291.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15025,10,10,'2019-08-21 15:11:22',291.710000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15026,10,10,'2019-08-21 15:11:22',292.160000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15027,10,10,'2019-08-21 15:11:22',292.926000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15028,10,10,'2019-08-21 15:11:22',293.325000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15029,10,10,'2019-08-21 15:11:22',293.792000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15030,10,10,'2019-08-21 15:11:22',294.707000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15031,10,10,'2019-08-21 15:11:22',295.573000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15032,10,10,'2019-08-21 15:11:22',296.372000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15033,10,10,'2019-08-21 15:11:22',297.321000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15034,10,10,'2019-08-21 15:11:22',298.104000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15035,10,10,'2019-08-21 15:11:22',298.869000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15036,10,10,'2019-08-21 15:11:22',299.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15037,10,10,'2019-08-21 15:11:22',299.669000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15038,10,10,'2019-08-21 15:11:22',299.977000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15039,10,10,'2019-08-21 15:11:22',300.451000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15040,10,10,'2019-08-21 15:11:22',301.417000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15041,10,10,'2019-08-21 15:11:22',301.773000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15042,10,10,'2019-08-21 15:11:22',302.433000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15043,10,10,'2019-08-21 15:11:22',303.298000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15044,10,10,'2019-08-21 15:11:22',304.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15045,10,10,'2019-08-21 15:11:22',305.246000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15046,10,10,'2019-08-21 15:11:22',305.599000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15047,10,10,'2019-08-21 15:11:22',306.178000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15048,10,10,'2019-08-21 15:11:22',306.588000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15049,10,10,'2019-08-21 15:11:22',306.961000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15050,10,10,'2019-08-21 15:11:22',307.793000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15051,10,10,'2019-08-21 15:11:22',308.608000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15052,10,10,'2019-08-21 15:11:22',309.524000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15053,10,10,'2019-08-21 15:11:22',309.869000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15054,10,10,'2019-08-21 15:11:22',310.374000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15055,10,10,'2019-08-21 15:11:22',311.140000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15056,10,10,'2019-08-21 15:11:22',311.474000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15057,10,10,'2019-08-21 15:11:22',311.972000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15058,10,10,'2019-08-21 15:11:22',312.737000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15059,10,10,'2019-08-21 15:11:22',313.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15060,10,10,'2019-08-21 15:11:22',314.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15061,10,10,'2019-08-21 15:11:22',315.385000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15062,10,10,'2019-08-21 15:11:22',315.692000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15063,10,10,'2019-08-21 15:11:22',316.367000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15064,10,10,'2019-08-21 15:11:22',316.773000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15065,10,10,'2019-08-21 15:11:22',317.249000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15066,10,10,'2019-08-21 15:11:22',318.198000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15067,10,10,'2019-08-21 15:11:22',319.197000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15068,10,10,'2019-08-21 15:11:22',319.519000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15069,10,10,'2019-08-21 15:11:22',319.979000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15070,10,10,'2019-08-21 15:11:22',320.745000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15071,10,10,'2019-08-21 15:11:22',321.744000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15072,10,10,'2019-08-21 15:11:22',322.610000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15073,10,10,'2019-08-21 15:11:22',323.476000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15074,10,10,'2019-08-21 15:11:22',324.408000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15075,10,10,'2019-08-21 15:11:22',324.737000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15076,10,10,'2019-08-21 15:11:22',325.258000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15077,10,10,'2019-08-21 15:11:22',325.615000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15078,10,10,'2019-08-21 15:11:22',326.156000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15079,10,10,'2019-08-21 15:11:22',327.122000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15080,10,10,'2019-08-21 15:11:22',327.987000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15081,10,10,'2019-08-21 15:11:22',328.311000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15082,10,10,'2019-08-21 15:11:22',328.870000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15083,10,10,'2019-08-21 15:11:22',329.836000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15084,10,10,'2019-08-21 15:11:22',330.802000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15085,10,10,'2019-08-21 15:11:22',331.116000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15086,10,10,'2019-08-21 15:11:22',331.800000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15087,10,10,'2019-08-21 15:11:22',332.782000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15088,10,10,'2019-08-21 15:11:22',333.715000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15089,10,10,'2019-08-21 15:11:22',334.104000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15090,10,10,'2019-08-21 15:11:22',334.563000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15091,10,10,'2019-08-21 15:11:22',334.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15092,10,10,'2019-08-21 15:11:22',335.363000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15093,10,10,'2019-08-21 15:11:22',336.245000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15094,10,10,'2019-08-21 15:11:22',337.095000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15095,10,10,'2019-08-21 15:11:22',337.927000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15096,10,10,'2019-08-21 15:11:22',338.726000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15097,10,10,'2019-08-21 15:11:22',339.708000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15098,10,10,'2019-08-21 15:11:22',340.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15099,10,10,'2019-08-21 15:11:22',340.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15100,10,10,'2019-08-21 15:11:22',341.456000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15101,10,10,'2019-08-21 15:11:22',342.422000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15102,10,10,'2019-08-21 15:11:22',342.886000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15103,10,10,'2019-08-21 15:11:22',343.338000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15104,10,10,'2019-08-21 15:11:22',344.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15105,10,10,'2019-08-21 15:11:22',345.152000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15106,10,10,'2019-08-21 15:11:22',345.601000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15107,10,10,'2019-08-21 15:11:22',346.068000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15108,10,10,'2019-08-21 15:11:22',346.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15109,10,10,'2019-08-21 15:11:22',347.235000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15110,10,10,'2019-08-21 15:11:22',347.833000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15111,10,10,'2019-08-21 15:11:22',348.632000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15112,10,10,'2019-08-21 15:11:22',349.581000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15113,10,10,'2019-08-21 15:11:22',350.479000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15114,10,10,'2019-08-21 15:11:22',350.859000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15115,10,10,'2019-08-21 15:11:22',351.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15116,10,10,'2019-08-21 15:11:22',352.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15117,10,10,'2019-08-21 15:11:22',352.687000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15118,10,10,'2019-08-21 15:11:22',353.193000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15119,10,10,'2019-08-21 15:11:22',353.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15120,10,10,'2019-08-21 15:11:22',354.825000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15121,10,10,'2019-08-21 15:11:22',355.690000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15122,10,10,'2019-08-21 15:11:22',356.099000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15123,10,10,'2019-08-21 15:11:22',356.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15124,10,10,'2019-08-21 15:11:22',356.956000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15125,10,10,'2019-08-21 15:11:22',357.389000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15126,10,10,'2019-08-21 15:11:22',358.371000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15127,10,10,'2019-08-21 15:11:22',359.387000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15128,10,10,'2019-08-21 15:11:22',360.353000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15129,10,10,'2019-08-21 15:11:22',361.201000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15130,10,10,'2019-08-21 15:11:22',362.117000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15131,10,10,'2019-08-21 15:11:22',362.478000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15132,10,10,'2019-08-21 15:11:22',362.982000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15133,10,10,'2019-08-21 15:11:22',363.832000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15134,10,10,'2019-08-21 15:11:22',364.203000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15135,10,10,'2019-08-21 15:11:22',364.647000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15136,10,10,'2019-08-21 15:11:22',365.563000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15137,10,10,'2019-08-21 15:11:22',366.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15138,10,10,'2019-08-21 15:11:22',366.858000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15139,10,10,'2019-08-21 15:11:22',367.345000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15140,10,10,'2019-08-21 15:11:22',367.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15141,10,10,'2019-08-21 15:11:22',368.327000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15142,10,10,'2019-08-21 15:11:22',369.293000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15143,10,10,'2019-08-21 15:11:22',370.092000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15144,10,10,'2019-08-21 15:11:22',371.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15145,10,10,'2019-08-21 15:11:22',372.090000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15146,10,10,'2019-08-21 15:11:22',372.470000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15147,10,10,'2019-08-21 15:11:22',373.005000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15148,10,10,'2019-08-21 15:11:22',373.389000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15149,10,10,'2019-08-21 15:11:22',373.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15150,10,10,'2019-08-21 15:11:22',374.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15151,10,10,'2019-08-21 15:11:22',375.936000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15152,10,10,'2019-08-21 15:11:22',376.336000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15153,10,10,'2019-08-21 15:11:22',376.701000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15154,10,10,'2019-08-21 15:11:22',377.566000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15155,10,10,'2019-08-21 15:11:22',378.383000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15156,10,10,'2019-08-21 15:11:22',378.729000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15157,10,10,'2019-08-21 15:11:22',379.231000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15158,10,10,'2019-08-21 15:11:22',379.998000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15159,10,10,'2019-08-21 15:11:22',380.946000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15160,10,10,'2019-08-21 15:11:22',381.332000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15161,10,10,'2019-08-21 15:11:22',381.779000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15162,10,10,'2019-08-21 15:11:22',382.160000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15163,10,10,'2019-08-21 15:11:22',382.761000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15164,10,10,'2019-08-21 15:11:22',383.577000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15165,10,10,'2019-08-21 15:11:22',384.409000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15166,10,10,'2019-08-21 15:11:22',385.175000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15167,10,10,'2019-08-21 15:11:22',385.975000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15168,10,10,'2019-08-21 15:11:22',386.339000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15169,10,10,'2019-08-21 15:11:22',386.740000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15170,10,10,'2019-08-21 15:11:22',387.605000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15171,10,10,'2019-08-21 15:11:22',388.015000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15172,10,10,'2019-08-21 15:11:22',388.505000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15173,10,10,'2019-08-21 15:11:22',389.271000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15174,10,10,'2019-08-21 15:11:22',390.187000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15175,10,10,'2019-08-21 15:11:22',391.186000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15176,10,10,'2019-08-21 15:11:22',392.168000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15177,10,10,'2019-08-21 15:11:22',392.526000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15178,10,10,'2019-08-21 15:11:22',392.967000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15179,10,10,'2019-08-21 15:11:22',393.933000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15180,10,10,'2019-08-21 15:11:22',394.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15181,10,10,'2019-08-21 15:11:22',395.262000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15182,10,10,'2019-08-21 15:11:22',395.697000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15183,10,10,'2019-08-21 15:11:22',396.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15184,10,10,'2019-08-21 15:11:22',397.445000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15185,10,10,'2019-08-21 15:11:22',398.428000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15186,10,10,'2019-08-21 15:11:22',399.326000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15187,10,10,'2019-08-21 15:11:22',400.093000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15188,10,10,'2019-08-21 15:11:22',400.551000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15189,10,10,'2019-08-21 15:11:22',400.908000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15190,10,10,'2019-08-21 15:11:22',401.389000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15191,10,10,'2019-08-21 15:11:22',401.773000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15192,10,10,'2019-08-21 15:11:22',402.540000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15193,10,10,'2019-08-21 15:11:22',403.004000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15194,10,10,'2019-08-21 15:11:22',403.389000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15195,10,10,'2019-08-21 15:11:22',404.171000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15196,10,10,'2019-08-21 15:11:22',404.558000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15197,10,10,'2019-08-21 15:11:22',405.104000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15198,10,10,'2019-08-21 15:11:22',406.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15199,10,10,'2019-08-21 15:11:22',406.885000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15200,10,10,'2019-08-21 15:11:22',407.334000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15201,10,10,'2019-08-21 15:11:22',407.784000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15202,10,10,'2019-08-21 15:11:22',408.666000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15203,10,10,'2019-08-21 15:11:22',409.516000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15204,10,10,'2019-08-21 15:11:22',410.414000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15205,10,10,'2019-08-21 15:11:22',410.806000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15206,10,10,'2019-08-21 15:11:22',411.430000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15207,10,10,'2019-08-21 15:11:22',412.379000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15208,10,10,'2019-08-21 15:11:22',412.714000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15209,10,10,'2019-08-21 15:11:22',413.178000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15210,10,10,'2019-08-21 15:11:22',413.943000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15211,10,10,'2019-08-21 15:11:22',414.926000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15212,10,10,'2019-08-21 15:11:22',415.809000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15213,10,10,'2019-08-21 15:11:22',416.146000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15214,10,10,'2019-08-21 15:11:22',416.674000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15215,10,10,'2019-08-21 15:11:22',417.557000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15216,10,10,'2019-08-21 15:11:22',418.556000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15217,10,10,'2019-08-21 15:11:22',418.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15218,10,10,'2019-08-21 15:11:22',419.487000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15219,10,10,'2019-08-21 15:11:22',419.880000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15220,10,10,'2019-08-21 15:11:22',420.271000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15221,10,10,'2019-08-21 15:11:22',421.186000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15222,10,10,'2019-08-21 15:11:22',421.969000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15223,10,10,'2019-08-21 15:11:22',422.917000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15224,10,10,'2019-08-21 15:11:22',423.750000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15225,10,10,'2019-08-21 15:11:22',424.119000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15226,10,10,'2019-08-21 15:11:22',424.615000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15227,10,10,'2019-08-21 15:11:22',424.927000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15228,10,10,'2019-08-21 15:11:22',425.398000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15229,10,10,'2019-08-21 15:11:22',426.181000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15230,10,10,'2019-08-21 15:11:22',427.096000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15231,10,10,'2019-08-21 15:11:22',427.879000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15232,10,10,'2019-08-21 15:11:22',428.878000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15233,10,10,'2019-08-21 15:11:22',429.876000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15234,10,10,'2019-08-21 15:11:22',430.216000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15235,10,10,'2019-08-21 15:11:22',430.692000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15236,10,10,'2019-08-21 15:11:22',431.607000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15237,10,10,'2019-08-21 15:11:22',432.440000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15238,10,10,'2019-08-21 15:11:22',432.760000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15239,10,10,'2019-08-21 15:11:22',433.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15240,10,10,'2019-08-21 15:11:22',434.205000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15241,10,10,'2019-08-21 15:11:22',435.004000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15242,10,10,'2019-08-21 15:11:22',435.986000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15243,10,10,'2019-08-21 15:11:22',436.333000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15244,10,10,'2019-08-21 15:11:22',436.886000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15245,10,10,'2019-08-21 15:11:22',437.801000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15246,10,10,'2019-08-21 15:11:22',438.130000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15247,10,10,'2019-08-21 15:11:22',438.684000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15248,10,10,'2019-08-21 15:11:22',439.038000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15249,10,10,'2019-08-21 15:11:22',439.582000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15250,10,10,'2019-08-21 15:11:22',440.432000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15251,10,10,'2019-08-21 15:11:22',440.744000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15252,10,10,'2019-08-21 15:11:22',441.214000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15253,10,10,'2019-08-21 15:11:22',442.113000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15254,10,10,'2019-08-21 15:11:22',442.995000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15255,10,10,'2019-08-21 15:11:22',443.762000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15256,10,10,'2019-08-21 15:11:22',444.610000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15257,10,10,'2019-08-21 15:11:22',445.426000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15258,10,10,'2019-08-21 15:11:22',445.781000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15259,10,10,'2019-08-21 15:11:22',446.292000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15260,10,10,'2019-08-21 15:11:22',446.599000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15261,10,10,'2019-08-21 15:11:22',447.157000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15262,10,10,'2019-08-21 15:11:22',448.140000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15263,10,10,'2019-08-21 15:11:22',449.072000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15264,10,10,'2019-08-21 15:11:22',449.904000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15265,10,10,'2019-08-21 15:11:22',450.363000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15266,10,10,'2019-08-21 15:11:22',450.754000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15267,10,10,'2019-08-21 15:11:22',451.050000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15268,10,10,'2019-08-21 15:11:22',451.669000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15269,10,10,'2019-08-21 15:11:22',452.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15270,10,10,'2019-08-21 15:11:22',453.468000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15271,10,10,'2019-08-21 15:11:22',454.283000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15272,10,10,'2019-08-21 15:11:22',454.633000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15273,10,10,'2019-08-21 15:11:22',455.115000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15274,10,10,'2019-08-21 15:11:22',456.114000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15275,10,10,'2019-08-21 15:11:22',456.980000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15276,10,10,'2019-08-21 15:11:22',457.812000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15277,10,10,'2019-08-21 15:11:22',458.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15278,10,10,'2019-08-21 15:11:22',458.812000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15279,10,10,'2019-08-21 15:11:22',459.610000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15280,10,10,'2019-08-21 15:11:22',460.626000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15281,10,10,'2019-08-21 15:11:22',461.575000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15282,10,10,'2019-08-21 15:11:22',462.374000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15283,10,10,'2019-08-21 15:11:22',462.769000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15284,10,10,'2019-08-21 15:11:22',463.290000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15285,10,10,'2019-08-21 15:11:22',463.688000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15286,10,10,'2019-08-21 15:11:22',464.272000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15287,10,10,'2019-08-21 15:11:22',465.038000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15288,10,10,'2019-08-21 15:11:22',465.971000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15289,10,10,'2019-08-21 15:11:22',466.803000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15290,10,10,'2019-08-21 15:11:22',467.170000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15291,10,10,'2019-08-21 15:11:22',467.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15292,10,10,'2019-08-21 15:11:22',468.401000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15293,10,10,'2019-08-21 15:11:22',469.300000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15294,10,10,'2019-08-21 15:11:22',469.643000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15295,10,10,'2019-08-21 15:11:22',470.133000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15296,10,10,'2019-08-21 15:11:22',470.581000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15297,10,10,'2019-08-21 15:11:22',470.915000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15298,10,10,'2019-08-21 15:11:22',471.288000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15299,10,10,'2019-08-21 15:11:22',471.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15300,10,10,'2019-08-21 15:11:22',472.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15301,10,10,'2019-08-21 15:11:22',473.528000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15302,10,10,'2019-08-21 15:11:22',474.444000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15303,10,10,'2019-08-21 15:11:22',475.443000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15304,10,10,'2019-08-21 15:11:22',476.343000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15305,10,10,'2019-08-21 15:11:22',477.142000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15306,10,10,'2019-08-21 15:11:22',477.586000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15307,10,10,'2019-08-21 15:11:22',477.924000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15308,10,10,'2019-08-21 15:11:22',478.303000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15309,10,10,'2019-08-21 15:11:22',478.790000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15310,10,10,'2019-08-21 15:11:22',479.688000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15311,10,10,'2019-08-21 15:11:22',480.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15312,10,10,'2019-08-21 15:11:22',481.503000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15313,10,10,'2019-08-21 15:11:22',482.485000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15314,10,10,'2019-08-21 15:11:22',482.825000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15315,10,10,'2019-08-21 15:11:22',483.435000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15316,10,10,'2019-08-21 15:11:22',483.733000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15317,10,10,'2019-08-21 15:11:22',484.351000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15318,10,10,'2019-08-21 15:11:22',485.299000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15319,10,10,'2019-08-21 15:11:22',486.132000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15320,10,10,'2019-08-21 15:11:22',487.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15321,10,10,'2019-08-21 15:11:22',487.913000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15322,10,10,'2019-08-21 15:11:22',488.266000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15323,10,10,'2019-08-21 15:11:22',488.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15324,10,10,'2019-08-21 15:11:22',489.728000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15325,10,10,'2019-08-21 15:11:22',490.123000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15326,10,10,'2019-08-21 15:11:22',490.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15327,10,10,'2019-08-21 15:11:22',491.476000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15328,10,10,'2019-08-21 15:11:22',491.879000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15329,10,10,'2019-08-21 15:11:22',492.458000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15330,10,10,'2019-08-21 15:11:22',493.324000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15331,10,10,'2019-08-21 15:11:22',493.655000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15332,10,10,'2019-08-21 15:11:22',494.156000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15333,10,10,'2019-08-21 15:11:22',495.105000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15334,10,10,'2019-08-21 15:11:22',496.104000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15335,10,10,'2019-08-21 15:11:22',497.069000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15336,10,10,'2019-08-21 15:11:22',498.052000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15337,10,10,'2019-08-21 15:11:22',498.430000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15338,10,10,'2019-08-21 15:11:22',498.835000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15339,10,10,'2019-08-21 15:11:22',499.634000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15340,10,10,'2019-08-21 15:11:22',500.005000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15341,10,10,'2019-08-21 15:11:22',500.583000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15342,10,10,'2019-08-21 15:11:22',501.448000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15343,10,10,'2019-08-21 15:11:22',502.348000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15344,10,10,'2019-08-21 15:11:22',503.279000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15345,10,10,'2019-08-21 15:11:22',504.079000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15346,10,10,'2019-08-21 15:11:22',504.617000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15347,10,10,'2019-08-21 15:11:22',505.044000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15348,10,10,'2019-08-21 15:11:22',505.667000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15349,10,10,'2019-08-21 15:11:22',505.827000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15350,10,10,'2019-08-21 15:11:22',506.810000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15351,10,10,'2019-08-21 15:11:22',507.725000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15352,10,10,'2019-08-21 15:11:22',508.724000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15353,10,10,'2019-08-21 15:11:22',509.099000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15354,10,10,'2019-08-21 15:11:22',509.506000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15355,10,10,'2019-08-21 15:11:22',510.472000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15356,10,10,'2019-08-21 15:11:22',510.875000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15357,10,10,'2019-08-21 15:11:22',511.388000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15358,10,10,'2019-08-21 15:11:22',512.286000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15359,10,10,'2019-08-21 15:11:22',513.186000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15360,10,10,'2019-08-21 15:11:22',513.550000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15361,10,10,'2019-08-21 15:11:22',514.201000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15362,10,10,'2019-08-21 15:11:22',515.050000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15363,10,10,'2019-08-21 15:11:22',515.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15364,10,10,'2019-08-21 15:11:22',516.798000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15365,10,10,'2019-08-21 15:11:22',517.681000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15366,10,10,'2019-08-21 15:11:22',518.103000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15367,10,10,'2019-08-21 15:11:22',518.580000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15368,10,10,'2019-08-21 15:11:22',519.379000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15369,10,10,'2019-08-21 15:11:22',519.758000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15370,10,10,'2019-08-21 15:11:22',520.277000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15371,10,10,'2019-08-21 15:11:22',521.210000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15372,10,10,'2019-08-21 15:11:22',522.009000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15373,10,10,'2019-08-21 15:11:22',522.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15374,10,10,'2019-08-21 15:11:22',523.361000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15375,10,10,'2019-08-21 15:11:22',523.791000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15376,10,10,'2019-08-21 15:11:22',524.739000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15377,10,10,'2019-08-21 15:11:22',525.572000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15378,10,10,'2019-08-21 15:11:22',526.504000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15379,10,10,'2019-08-21 15:11:22',526.904000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15380,10,10,'2019-08-21 15:11:22',527.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15381,10,10,'2019-08-21 15:11:22',528.336000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15382,10,10,'2019-08-21 15:11:22',528.771000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15383,10,10,'2019-08-21 15:11:22',529.251000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15384,10,10,'2019-08-21 15:11:22',530.167000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15385,10,10,'2019-08-21 15:11:22',531.100000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15386,10,10,'2019-08-21 15:11:22',531.527000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15387,10,10,'2019-08-21 15:11:22',532.115000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15388,10,10,'2019-08-21 15:11:22',533.014000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15389,10,10,'2019-08-21 15:11:22',533.616000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15390,10,10,'2019-08-21 15:11:22',533.913000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15391,10,10,'2019-08-21 15:11:22',534.845000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15392,10,10,'2019-08-21 15:11:22',535.744000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15393,10,10,'2019-08-21 15:11:22',536.743000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15394,10,10,'2019-08-21 15:11:22',537.129000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15395,10,10,'2019-08-21 15:11:22',537.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15396,10,10,'2019-08-21 15:11:22',538.007000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15397,10,10,'2019-08-21 15:11:22',538.574000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15398,10,10,'2019-08-21 15:11:22',539.440000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15399,10,10,'2019-08-21 15:11:22',540.239000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15400,10,10,'2019-08-21 15:11:22',541.038000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15401,10,10,'2019-08-21 15:11:22',541.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15402,10,10,'2019-08-21 15:11:22',542.770000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15403,10,10,'2019-08-21 15:11:22',543.216000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15404,10,10,'2019-08-21 15:11:22',543.636000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15405,10,10,'2019-08-21 15:11:22',544.618000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15406,10,10,'2019-08-21 15:11:22',544.922000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15407,10,10,'2019-08-21 15:11:22',577.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15408,10,10,'2019-08-21 15:11:22',584.202000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15409,10,10,'2019-08-21 15:11:22',584.604000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15410,10,10,'2019-08-21 15:11:22',585.067000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15411,10,10,'2019-08-21 15:11:22',585.967000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15412,10,10,'2019-08-21 15:11:22',586.866000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15413,10,10,'2019-08-21 15:11:22',587.248000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15414,10,10,'2019-08-21 15:11:22',587.682000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15415,10,10,'2019-08-21 15:11:22',588.681000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15416,10,10,'2019-08-21 15:11:22',589.479000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15417,10,10,'2019-08-21 15:11:22',589.862000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15418,10,10,'2019-08-21 15:11:22',590.278000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15419,10,10,'2019-08-21 15:11:22',591.161000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15420,10,10,'2019-08-21 15:11:22',592.160000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15421,10,10,'2019-08-21 15:11:22',592.942000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15422,10,10,'2019-08-21 15:11:22',593.741000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15423,10,10,'2019-08-21 15:11:22',594.162000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15424,10,10,'2019-08-21 15:11:22',594.591000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15425,10,10,'2019-08-21 15:11:22',595.406000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15426,10,10,'2019-08-21 15:11:22',595.837000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15427,10,10,'2019-08-21 15:11:22',596.239000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15428,10,10,'2019-08-21 15:11:22',597.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15429,10,10,'2019-08-21 15:11:22',598.054000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15430,10,10,'2019-08-21 15:11:22',598.462000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15431,10,10,'2019-08-21 15:11:22',598.886000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15432,10,10,'2019-08-21 15:11:22',599.835000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15433,10,10,'2019-08-21 15:11:22',600.768000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15434,10,10,'2019-08-21 15:11:22',601.137000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15435,10,10,'2019-08-21 15:11:22',601.616000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15436,10,10,'2019-08-21 15:11:22',602.415000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15437,10,10,'2019-08-21 15:11:22',602.812000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15438,10,10,'2019-08-21 15:11:22',603.381000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15439,10,10,'2019-08-21 15:11:22',604.330000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15440,10,10,'2019-08-21 15:11:22',605.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15441,10,10,'2019-08-21 15:11:22',605.995000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15442,10,10,'2019-08-21 15:11:22',606.894000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15443,10,10,'2019-08-21 15:11:22',607.293000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15444,10,10,'2019-08-21 15:11:22',607.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15445,10,10,'2019-08-21 15:11:22',608.476000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15446,10,10,'2019-08-21 15:11:22',608.838000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15447,10,10,'2019-08-21 15:11:22',609.241000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15448,10,10,'2019-08-21 15:11:22',610.190000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15449,10,10,'2019-08-21 15:11:22',611.072000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15450,10,10,'2019-08-21 15:11:22',611.482000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15451,10,10,'2019-08-21 15:11:22',612.021000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15452,10,10,'2019-08-21 15:11:22',612.954000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15453,10,10,'2019-08-21 15:11:22',613.803000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15454,10,10,'2019-08-21 15:11:22',614.218000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15455,10,10,'2019-08-21 15:11:22',614.636000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15456,10,10,'2019-08-21 15:11:22',615.435000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15457,10,10,'2019-08-21 15:11:22',616.250000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15458,10,10,'2019-08-21 15:11:22',616.650000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15459,10,10,'2019-08-21 15:11:22',617.166000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15460,10,10,'2019-08-21 15:11:22',617.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15461,10,10,'2019-08-21 15:11:22',618.148000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15462,10,10,'2019-08-21 15:11:22',619.048000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15463,10,10,'2019-08-21 15:11:22',619.913000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15464,10,10,'2019-08-21 15:11:22',620.796000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15465,10,10,'2019-08-21 15:11:22',621.794000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15466,10,10,'2019-08-21 15:11:22',622.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15467,10,10,'2019-08-21 15:11:22',623.643000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15468,10,10,'2019-08-21 15:11:22',624.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15469,10,10,'2019-08-21 15:11:22',624.491000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15470,10,10,'2019-08-21 15:11:22',625.474000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15471,10,10,'2019-08-21 15:11:22',625.795000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15472,10,10,'2019-08-21 15:11:22',626.473000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15473,10,10,'2019-08-21 15:11:22',627.472000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15474,10,10,'2019-08-21 15:11:22',627.732000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15475,10,10,'2019-08-21 15:11:22',628.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15476,10,10,'2019-08-21 15:11:22',629.319000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15477,10,10,'2019-08-21 15:11:22',630.085000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15478,10,10,'2019-08-21 15:11:22',630.428000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15479,10,10,'2019-08-21 15:11:22',630.852000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15480,10,10,'2019-08-21 15:11:22',631.850000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15481,10,10,'2019-08-21 15:11:22',632.616000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15482,10,10,'2019-08-21 15:11:22',633.415000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15483,10,10,'2019-08-21 15:11:22',633.991000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15484,10,10,'2019-08-21 15:11:22',634.397000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15485,10,10,'2019-08-21 15:11:22',635.296000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15486,10,10,'2019-08-21 15:11:22',636.245000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15487,10,10,'2019-08-21 15:11:22',636.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15488,10,10,'2019-08-21 15:11:22',637.244000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15489,10,10,'2019-08-21 15:11:22',638.160000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15490,10,10,'2019-08-21 15:11:22',639.075000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15491,10,10,'2019-08-21 15:11:22',640.008000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15492,10,10,'2019-08-21 15:11:22',640.891000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15493,10,10,'2019-08-21 15:11:22',641.872000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15494,10,10,'2019-08-21 15:11:22',642.228000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15495,10,10,'2019-08-21 15:11:22',642.655000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15496,10,10,'2019-08-21 15:11:22',643.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15497,10,10,'2019-08-21 15:11:22',644.336000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15498,10,10,'2019-08-21 15:11:22',645.235000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15499,10,10,'2019-08-21 15:11:22',645.720000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15500,10,10,'2019-08-21 15:11:22',646.102000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15501,10,10,'2019-08-21 15:11:22',647.033000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15502,10,10,'2019-08-21 15:11:22',647.445000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15503,10,10,'2019-08-21 15:11:22',647.799000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15504,10,10,'2019-08-21 15:11:22',648.615000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15505,10,10,'2019-08-21 15:11:22',649.464000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15506,10,10,'2019-08-21 15:11:22',650.080000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15507,10,10,'2019-08-21 15:11:22',650.330000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15508,10,10,'2019-08-21 15:11:22',651.146000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15509,10,10,'2019-08-21 15:11:22',651.665000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15510,10,10,'2019-08-21 15:11:22',652.078000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15511,10,10,'2019-08-21 15:11:22',653.077000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15512,10,10,'2019-08-21 15:11:22',653.859000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15513,10,10,'2019-08-21 15:11:22',654.858000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15514,10,10,'2019-08-21 15:11:22',655.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15515,10,10,'2019-08-21 15:11:22',655.690000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15516,10,10,'2019-08-21 15:11:22',656.523000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15517,10,10,'2019-08-21 15:11:22',657.015000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15518,10,10,'2019-08-21 15:11:22',657.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15519,10,10,'2019-08-21 15:11:22',658.071000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15520,10,10,'2019-08-21 15:11:22',658.971000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15521,10,10,'2019-08-21 15:11:22',659.376000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15522,10,10,'2019-08-21 15:11:22',659.986000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15523,10,10,'2019-08-21 15:11:22',660.918000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15524,10,10,'2019-08-21 15:11:22',661.395000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15525,10,10,'2019-08-21 15:11:22',661.801000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15526,10,10,'2019-08-21 15:11:22',662.666000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15527,10,10,'2019-08-21 15:11:22',663.532000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15528,10,10,'2019-08-21 15:11:22',664.364000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15529,10,10,'2019-08-21 15:11:22',664.544000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15530,10,10,'2019-08-21 15:11:22',665.297000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15531,10,10,'2019-08-21 15:11:22',666.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15532,10,10,'2019-08-21 15:11:22',666.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15533,10,10,'2019-08-21 15:11:22',667.161000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15534,10,10,'2019-08-21 15:11:22',668.027000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15535,10,10,'2019-08-21 15:11:22',668.571000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15536,10,10,'2019-08-21 15:11:22',668.859000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15537,10,10,'2019-08-21 15:11:22',669.792000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15538,10,10,'2019-08-21 15:11:22',670.176000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15539,10,10,'2019-08-21 15:11:22',670.591000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15540,10,10,'2019-08-21 15:11:22',671.457000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15541,10,10,'2019-08-21 15:11:22',672.406000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15542,10,10,'2019-08-21 15:11:22',673.338000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15543,10,10,'2019-08-21 15:11:22',674.304000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15544,10,10,'2019-08-21 15:11:22',675.069000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15545,10,10,'2019-08-21 15:11:22',675.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15546,10,10,'2019-08-21 15:11:22',676.253000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15547,10,10,'2019-08-21 15:11:22',676.718000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15548,10,10,'2019-08-21 15:11:22',677.101000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15549,10,10,'2019-08-21 15:11:22',677.517000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15550,10,10,'2019-08-21 15:11:22',678.282000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15551,10,10,'2019-08-21 15:11:22',679.065000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15552,10,10,'2019-08-21 15:11:22',679.452000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15553,10,10,'2019-08-21 15:11:22',679.831000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15554,10,10,'2019-08-21 15:11:22',680.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15555,10,10,'2019-08-21 15:11:22',681.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15556,10,10,'2019-08-21 15:11:22',682.661000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15557,10,10,'2019-08-21 15:11:22',682.995000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15558,10,10,'2019-08-21 15:11:22',683.660000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15559,10,10,'2019-08-21 15:11:22',684.492000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15560,10,10,'2019-08-21 15:11:22',685.441000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15561,10,10,'2019-08-21 15:11:22',686.424000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15562,10,10,'2019-08-21 15:11:22',687.289000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15563,10,10,'2019-08-21 15:11:22',687.679000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15564,10,10,'2019-08-21 15:11:22',688.056000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15565,10,10,'2019-08-21 15:11:22',689.038000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15566,10,10,'2019-08-21 15:11:22',689.374000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15567,10,10,'2019-08-21 15:11:22',689.804000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15568,10,10,'2019-08-21 15:11:22',690.586000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15569,10,10,'2019-08-21 15:11:22',691.131000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15570,10,10,'2019-08-21 15:11:22',691.469000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15571,10,10,'2019-08-21 15:11:22',691.907000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15572,10,10,'2019-08-21 15:11:22',692.467000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15573,10,10,'2019-08-21 15:11:22',693.449000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15574,10,10,'2019-08-21 15:11:22',694.266000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15575,10,10,'2019-08-21 15:11:22',695.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15576,10,10,'2019-08-21 15:11:22',696.163000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15577,10,10,'2019-08-21 15:11:22',696.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15578,10,10,'2019-08-21 15:11:22',697.878000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15579,10,10,'2019-08-21 15:11:22',698.276000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15580,10,10,'2019-08-21 15:11:22',698.844000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15581,10,10,'2019-08-21 15:11:22',699.307000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15582,10,10,'2019-08-21 15:11:22',699.692000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15583,10,10,'2019-08-21 15:11:22',700.658000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15584,10,10,'2019-08-21 15:11:22',701.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15585,10,10,'2019-08-21 15:11:22',702.406000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15586,10,10,'2019-08-21 15:11:22',703.188000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15587,10,10,'2019-08-21 15:11:22',703.667000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15588,10,10,'2019-08-21 15:11:22',704.204000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15589,10,10,'2019-08-21 15:11:22',704.696000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15590,10,10,'2019-08-21 15:11:22',705.137000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15591,10,10,'2019-08-21 15:11:22',705.969000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15592,10,10,'2019-08-21 15:11:22',706.901000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15593,10,10,'2019-08-21 15:11:22',707.717000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15594,10,10,'2019-08-21 15:11:22',708.239000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15595,10,10,'2019-08-21 15:11:22',708.600000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15596,10,10,'2019-08-21 15:11:22',709.036000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15597,10,10,'2019-08-21 15:11:22',709.516000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15598,10,10,'2019-08-21 15:11:22',710.314000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15599,10,10,'2019-08-21 15:11:22',711.180000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15600,10,10,'2019-08-21 15:11:22',711.862000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15601,10,10,'2019-08-21 15:11:22',712.112000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15602,10,10,'2019-08-21 15:11:22',713.078000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15603,10,10,'2019-08-21 15:11:22',713.844000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15604,10,10,'2019-08-21 15:11:22',714.677000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15605,10,10,'2019-08-21 15:11:22',715.072000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15606,10,10,'2019-08-21 15:11:22',715.642000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15607,10,10,'2019-08-21 15:11:22',716.458000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15608,10,10,'2019-08-21 15:11:22',717.423000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15609,10,10,'2019-08-21 15:11:22',717.889000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15610,10,10,'2019-08-21 15:11:22',718.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15611,10,10,'2019-08-21 15:11:22',719.138000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15612,10,10,'2019-08-21 15:11:22',720.120000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15613,10,10,'2019-08-21 15:11:22',720.543000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15614,10,10,'2019-08-21 15:11:22',721.086000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15615,10,10,'2019-08-21 15:11:22',721.935000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15616,10,10,'2019-08-21 15:11:22',722.319000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15617,10,10,'2019-08-21 15:11:22',722.718000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15618,10,10,'2019-08-21 15:11:22',723.566000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15619,10,10,'2019-08-21 15:11:22',723.944000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15620,10,10,'2019-08-21 15:11:22',724.549000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15621,10,10,'2019-08-21 15:11:22',725.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15622,10,10,'2019-08-21 15:11:22',726.330000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15623,10,10,'2019-08-21 15:11:22',727.312000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15624,10,10,'2019-08-21 15:11:22',727.729000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15625,10,10,'2019-08-21 15:11:22',728.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15626,10,10,'2019-08-21 15:11:22',729.193000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15627,10,10,'2019-08-21 15:11:22',730.043000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15628,10,10,'2019-08-21 15:11:22',730.925000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15629,10,10,'2019-08-21 15:11:22',731.444000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15630,10,10,'2019-08-21 15:11:22',731.708000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15631,10,10,'2019-08-21 15:11:22',732.557000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15632,10,10,'2019-08-21 15:11:22',733.028000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15633,10,10,'2019-08-21 15:11:22',733.355000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15634,10,10,'2019-08-21 15:11:22',733.906000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15635,10,10,'2019-08-21 15:11:22',734.255000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15636,10,10,'2019-08-21 15:11:22',735.221000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15637,10,10,'2019-08-21 15:11:22',736.220000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15638,10,10,'2019-08-21 15:11:22',737.168000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15639,10,10,'2019-08-21 15:11:22',737.951000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15640,10,10,'2019-08-21 15:11:22',738.540000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15641,10,10,'2019-08-21 15:11:22',738.950000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15642,10,10,'2019-08-21 15:11:22',739.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15643,10,10,'2019-08-21 15:11:22',740.515000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15644,10,10,'2019-08-21 15:11:22',741.364000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15645,10,10,'2019-08-21 15:11:22',742.362000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15646,10,10,'2019-08-21 15:11:22',742.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15647,10,10,'2019-08-21 15:11:22',743.245000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15648,10,10,'2019-08-21 15:11:22',744.145000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15649,10,10,'2019-08-21 15:11:22',745.060000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15650,10,10,'2019-08-21 15:11:22',745.859000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15651,10,10,'2019-08-21 15:11:22',746.251000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15652,10,10,'2019-08-21 15:11:22',746.625000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15653,10,10,'2019-08-21 15:11:22',747.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15654,10,10,'2019-08-21 15:11:22',747.523000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15655,10,10,'2019-08-21 15:11:22',748.423000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15656,10,10,'2019-08-21 15:11:22',749.405000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15657,10,10,'2019-08-21 15:11:22',750.388000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15658,10,10,'2019-08-21 15:11:22',751.253000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15659,10,10,'2019-08-21 15:11:22',751.661000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15660,10,10,'2019-08-21 15:11:22',752.085000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15661,10,10,'2019-08-21 15:11:22',752.590000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15662,10,10,'2019-08-21 15:11:22',753.084000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15663,10,10,'2019-08-21 15:11:22',753.917000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15664,10,10,'2019-08-21 15:11:22',754.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15665,10,10,'2019-08-21 15:11:22',754.866000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15666,10,10,'2019-08-21 15:11:22',755.748000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15667,10,10,'2019-08-21 15:11:22',756.563000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15668,10,10,'2019-08-21 15:11:22',757.396000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15669,10,10,'2019-08-21 15:11:22',757.707000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15670,10,10,'2019-08-21 15:11:22',758.179000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15671,10,10,'2019-08-21 15:11:22',759.178000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15672,10,10,'2019-08-21 15:11:22',760.043000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15673,10,10,'2019-08-21 15:11:22',761.009000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15674,10,10,'2019-08-21 15:11:22',761.341000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15675,10,10,'2019-08-21 15:11:22',761.958000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15676,10,10,'2019-08-21 15:11:22',762.330000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15677,10,10,'2019-08-21 15:11:22',762.740000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15678,10,10,'2019-08-21 15:11:22',763.573000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15679,10,10,'2019-08-21 15:11:22',764.555000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15680,10,10,'2019-08-21 15:11:22',764.894000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15681,10,10,'2019-08-21 15:11:22',765.537000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15682,10,10,'2019-08-21 15:11:22',766.536000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15683,10,10,'2019-08-21 15:11:22',767.318000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15684,10,10,'2019-08-21 15:11:22',768.218000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15685,10,10,'2019-08-21 15:11:22',769.033000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15686,10,10,'2019-08-21 15:11:22',769.477000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15687,10,10,'2019-08-21 15:11:22',770.049000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15688,10,10,'2019-08-21 15:11:22',770.932000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15689,10,10,'2019-08-21 15:11:22',771.454000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15690,10,10,'2019-08-21 15:11:22',771.830000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15691,10,10,'2019-08-21 15:11:22',772.613000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15692,10,10,'2019-08-21 15:11:22',773.512000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15693,10,10,'2019-08-21 15:11:22',774.527000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15694,10,10,'2019-08-21 15:11:22',774.846000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15695,10,10,'2019-08-21 15:11:22',775.427000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15696,10,10,'2019-08-21 15:11:22',776.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15697,10,10,'2019-08-21 15:11:22',776.309000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15698,10,10,'2019-08-21 15:11:22',777.191000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15699,10,10,'2019-08-21 15:11:22',778.190000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15700,10,10,'2019-08-21 15:11:22',779.189000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15701,10,10,'2019-08-21 15:11:22',780.055000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15702,10,10,'2019-08-21 15:11:22',780.498000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15703,10,10,'2019-08-21 15:11:22',781.037000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15704,10,10,'2019-08-21 15:11:22',781.457000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15705,10,10,'2019-08-21 15:11:22',781.953000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15706,10,10,'2019-08-21 15:11:22',782.719000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15707,10,10,'2019-08-21 15:11:22',783.551000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15708,10,10,'2019-08-21 15:11:22',784.550000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15709,10,10,'2019-08-21 15:11:22',784.949000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15710,10,10,'2019-08-21 15:11:22',785.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15711,10,10,'2019-08-21 15:11:22',786.331000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15712,10,10,'2019-08-21 15:11:22',787.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15713,10,10,'2019-08-21 15:11:22',787.996000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15714,10,10,'2019-08-21 15:11:22',788.896000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15715,10,10,'2019-08-21 15:11:22',789.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15716,10,10,'2019-08-21 15:11:22',789.777000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15717,10,10,'2019-08-21 15:11:22',790.760000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15718,10,10,'2019-08-21 15:11:22',791.056000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15719,10,10,'2019-08-21 15:11:22',791.676000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15720,10,10,'2019-08-21 15:11:22',792.541000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15721,10,10,'2019-08-21 15:11:22',793.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15722,10,10,'2019-08-21 15:11:22',794.272000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15723,10,10,'2019-08-21 15:11:22',795.172000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15724,10,10,'2019-08-21 15:11:22',795.770000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15725,10,10,'2019-08-21 15:11:22',795.938000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15726,10,10,'2019-08-21 15:11:22',796.787000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15727,10,10,'2019-08-21 15:11:22',797.173000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15728,10,10,'2019-08-21 15:11:22',797.686000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15729,10,10,'2019-08-21 15:11:22',798.344000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15730,10,10,'2019-08-21 15:11:22',798.602000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15731,10,10,'2019-08-21 15:11:22',799.533000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15732,10,10,'2019-08-21 15:11:22',800.366000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15733,10,10,'2019-08-21 15:11:22',801.315000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15734,10,10,'2019-08-21 15:11:22',802.081000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15735,10,10,'2019-08-21 15:11:22',802.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15736,10,10,'2019-08-21 15:11:22',803.896000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15737,10,10,'2019-08-21 15:11:22',804.350000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15738,10,10,'2019-08-21 15:11:22',804.778000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15739,10,10,'2019-08-21 15:11:22',805.288000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15740,10,10,'2019-08-21 15:11:22',805.677000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15741,10,10,'2019-08-21 15:11:22',806.442000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15742,10,10,'2019-08-21 15:11:22',807.425000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15743,10,10,'2019-08-21 15:11:22',808.357000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15744,10,10,'2019-08-21 15:11:22',809.189000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15745,10,10,'2019-08-21 15:11:22',809.547000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15746,10,10,'2019-08-21 15:11:22',810.205000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15747,10,10,'2019-08-21 15:11:22',810.496000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15748,10,10,'2019-08-21 15:11:22',811.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15749,10,10,'2019-08-21 15:11:22',812.003000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15750,10,10,'2019-08-21 15:11:22',812.969000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15751,10,10,'2019-08-21 15:11:22',813.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15752,10,10,'2019-08-21 15:11:22',813.968000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15753,10,10,'2019-08-21 15:11:22',814.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15754,10,10,'2019-08-21 15:11:22',815.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15755,10,10,'2019-08-21 15:11:22',816.515000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15756,10,10,'2019-08-21 15:11:22',816.915000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15757,10,10,'2019-08-21 15:11:22',817.331000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15758,10,10,'2019-08-21 15:11:22',818.297000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15759,10,10,'2019-08-21 15:11:22',818.581000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15760,10,10,'2019-08-21 15:11:22',819.278000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15761,10,10,'2019-08-21 15:11:22',820.261000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15762,10,10,'2019-08-21 15:11:22',821.110000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15763,10,10,'2019-08-21 15:11:22',822.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15764,10,10,'2019-08-21 15:11:22',822.477000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15765,10,10,'2019-08-21 15:11:22',822.875000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15766,10,10,'2019-08-21 15:11:22',823.740000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15767,10,10,'2019-08-21 15:11:22',824.656000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15768,10,10,'2019-08-21 15:11:22',825.041000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15769,10,10,'2019-08-21 15:11:22',825.572000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15770,10,10,'2019-08-21 15:11:22',826.371000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15771,10,10,'2019-08-21 15:11:22',827.320000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15772,10,10,'2019-08-21 15:11:22',828.319000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15773,10,10,'2019-08-21 15:11:22',828.654000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15774,10,10,'2019-08-21 15:11:22',829.317000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15775,10,10,'2019-08-21 15:11:22',830.184000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15776,10,10,'2019-08-21 15:11:22',830.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15777,10,10,'2019-08-21 15:11:22',831.032000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15778,10,10,'2019-08-21 15:11:22',831.898000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15779,10,10,'2019-08-21 15:11:22',832.714000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15780,10,10,'2019-08-21 15:11:22',833.065000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15781,10,10,'2019-08-21 15:11:22',833.496000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15782,10,10,'2019-08-21 15:11:22',834.312000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15783,10,10,'2019-08-21 15:11:22',835.194000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15784,10,10,'2019-08-21 15:11:22',836.011000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15785,10,10,'2019-08-21 15:11:22',836.467000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15786,10,10,'2019-08-21 15:11:22',836.793000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15787,10,10,'2019-08-21 15:11:22',837.385000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15788,10,10,'2019-08-21 15:11:22',837.642000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15789,10,10,'2019-08-21 15:11:22',838.558000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15790,10,10,'2019-08-21 15:11:22',839.390000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15791,10,10,'2019-08-21 15:11:22',840.156000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15792,10,10,'2019-08-21 15:11:22',840.938000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15793,10,10,'2019-08-21 15:11:22',841.342000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15794,10,10,'2019-08-21 15:11:22',841.938000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15795,10,10,'2019-08-21 15:11:22',842.786000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15796,10,10,'2019-08-21 15:11:22',843.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15797,10,10,'2019-08-21 15:11:22',844.117000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15798,10,10,'2019-08-21 15:11:22',844.468000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15799,10,10,'2019-08-21 15:11:22',845.417000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15800,10,10,'2019-08-21 15:11:22',846.166000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15801,10,10,'2019-08-21 15:11:22',846.216000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15802,10,10,'2019-08-21 15:11:22',846.641000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15803,10,10,'2019-08-21 15:11:22',847.065000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15804,10,10,'2019-08-21 15:11:22',847.831000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15805,10,10,'2019-08-21 15:11:22',848.764000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15806,10,10,'2019-08-21 15:11:22',859.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15807,10,10,'2019-08-21 15:11:22',866.145000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15808,10,10,'2019-08-21 15:11:22',866.611000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15809,10,10,'2019-08-21 15:11:22',866.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15810,10,10,'2019-08-21 15:11:22',867.809000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15811,10,10,'2019-08-21 15:11:22',868.791000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15812,10,10,'2019-08-21 15:11:22',869.623000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15813,10,10,'2019-08-21 15:11:22',870.455000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15814,10,10,'2019-08-21 15:11:22',871.052000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15815,10,10,'2019-08-21 15:11:22',871.288000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15816,10,10,'2019-08-21 15:11:22',872.054000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15817,10,10,'2019-08-21 15:11:22',873.003000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15818,10,10,'2019-08-21 15:11:22',873.373000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15819,10,10,'2019-08-21 15:11:22',873.901000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15820,10,10,'2019-08-21 15:11:22',874.784000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15821,10,10,'2019-08-21 15:11:22',875.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15822,10,10,'2019-08-21 15:11:22',875.583000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15823,10,10,'2019-08-21 15:11:22',876.365000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15824,10,10,'2019-08-21 15:11:22',877.182000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15825,10,10,'2019-08-21 15:11:22',877.542000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15826,10,10,'2019-08-21 15:11:22',878.147000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15827,10,10,'2019-08-21 15:11:22',878.979000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15828,10,10,'2019-08-21 15:11:22',879.945000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15829,10,10,'2019-08-21 15:11:22',880.860000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15830,10,10,'2019-08-21 15:11:22',881.297000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15831,10,10,'2019-08-21 15:11:22',881.627000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15832,10,10,'2019-08-21 15:11:22',881.983000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15833,10,10,'2019-08-21 15:11:22',882.492000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15834,10,10,'2019-08-21 15:11:22',883.408000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15835,10,10,'2019-08-21 15:11:22',884.340000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15836,10,10,'2019-08-21 15:11:22',885.206000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15837,10,10,'2019-08-21 15:11:22',886.089000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15838,10,10,'2019-08-21 15:11:22',886.414000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15839,10,10,'2019-08-21 15:11:22',886.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15840,10,10,'2019-08-21 15:11:22',887.670000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15841,10,10,'2019-08-21 15:11:22',888.536000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15842,10,10,'2019-08-21 15:11:22',889.335000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15843,10,10,'2019-08-21 15:11:22',890.184000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15844,10,10,'2019-08-21 15:11:22',890.542000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15845,10,10,'2019-08-21 15:11:22',891.050000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15846,10,10,'2019-08-21 15:11:22',891.410000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15847,10,10,'2019-08-21 15:11:22',891.999000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15848,10,10,'2019-08-21 15:11:22',892.848000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15849,10,10,'2019-08-21 15:11:22',893.228000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15850,10,10,'2019-08-21 15:11:22',893.863000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15851,10,10,'2019-08-21 15:11:22',894.746000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15852,10,10,'2019-08-21 15:11:22',895.165000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15853,10,10,'2019-08-21 15:11:22',895.744000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15854,10,10,'2019-08-21 15:11:22',896.644000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15855,10,10,'2019-08-21 15:11:22',897.560000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15856,10,10,'2019-08-21 15:11:22',898.458000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15857,10,10,'2019-08-21 15:11:22',898.829000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15858,10,10,'2019-08-21 15:11:22',899.440000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15859,10,10,'2019-08-21 15:11:22',900.439000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15860,10,10,'2019-08-21 15:11:22',901.288000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15861,10,10,'2019-08-21 15:11:22',901.635000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15862,10,10,'2019-08-21 15:11:22',902.121000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15863,10,10,'2019-08-21 15:11:22',902.937000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15864,10,10,'2019-08-21 15:11:22',903.719000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15865,10,10,'2019-08-21 15:11:22',904.058000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15866,10,10,'2019-08-21 15:11:22',904.602000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15867,10,10,'2019-08-21 15:11:22',905.501000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15868,10,10,'2019-08-21 15:11:22',906.499000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15869,10,10,'2019-08-21 15:11:22',906.863000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15870,10,10,'2019-08-21 15:11:22',907.398000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15871,10,10,'2019-08-21 15:11:22',908.230000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15872,10,10,'2019-08-21 15:11:22',908.997000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15873,10,10,'2019-08-21 15:11:22',909.896000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15874,10,10,'2019-08-21 15:11:22',910.895000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15875,10,10,'2019-08-21 15:11:22',911.284000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15876,10,10,'2019-08-21 15:11:22',911.693000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15877,10,10,'2019-08-21 15:11:22',912.071000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15878,10,10,'2019-08-21 15:11:22',912.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15879,10,10,'2019-08-21 15:11:22',913.275000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15880,10,10,'2019-08-21 15:11:22',913.717000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15881,10,10,'2019-08-21 15:11:22',914.142000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15882,10,10,'2019-08-21 15:11:22',915.090000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15883,10,10,'2019-08-21 15:11:22',915.473000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15884,10,10,'2019-08-21 15:11:22',916.089000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15885,10,10,'2019-08-21 15:11:22',916.955000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15886,10,10,'2019-08-21 15:11:22',917.820000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15887,10,10,'2019-08-21 15:11:22',918.786000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15888,10,10,'2019-08-21 15:11:22',919.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15889,10,10,'2019-08-21 15:11:22',920.146000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15890,10,10,'2019-08-21 15:11:22',920.601000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15891,10,10,'2019-08-21 15:11:22',921.600000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15892,10,10,'2019-08-21 15:11:22',921.973000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15893,10,10,'2019-08-21 15:11:22',922.415000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15894,10,10,'2019-08-21 15:11:22',923.381000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15895,10,10,'2019-08-21 15:11:22',924.214000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15896,10,10,'2019-08-21 15:11:22',925.179000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15897,10,10,'2019-08-21 15:11:22',925.818000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15898,10,10,'2019-08-21 15:11:22',926.111000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15899,10,10,'2019-08-21 15:11:22',926.927000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15900,10,10,'2019-08-21 15:11:22',927.393000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15901,10,10,'2019-08-21 15:11:22',927.893000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15902,10,10,'2019-08-21 15:11:22',928.759000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15903,10,10,'2019-08-21 15:11:22',929.607000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15904,10,10,'2019-08-21 15:11:22',930.406000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15905,10,10,'2019-08-21 15:11:22',931.173000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15906,10,10,'2019-08-21 15:11:22',931.531000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15907,10,10,'2019-08-21 15:11:22',931.938000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15908,10,10,'2019-08-21 15:11:22',932.837000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15909,10,10,'2019-08-21 15:11:22',933.620000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15910,10,10,'2019-08-21 15:11:22',934.004000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15911,10,10,'2019-08-21 15:11:22',934.619000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15912,10,10,'2019-08-21 15:11:22',935.501000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15913,10,10,'2019-08-21 15:11:22',935.800000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15914,10,10,'2019-08-21 15:11:22',936.483000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15915,10,10,'2019-08-21 15:11:22',937.366000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15916,10,10,'2019-08-21 15:11:22',938.132000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15917,10,10,'2019-08-21 15:11:22',938.565000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15918,10,10,'2019-08-21 15:11:22',939.014000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15919,10,10,'2019-08-21 15:11:22',939.996000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15920,10,10,'2019-08-21 15:11:22',940.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15921,10,10,'2019-08-21 15:11:22',941.452000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15922,10,10,'2019-08-21 15:11:22',941.928000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15923,10,10,'2019-08-21 15:11:22',942.810000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15924,10,10,'2019-08-21 15:11:22',943.168000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15925,10,10,'2019-08-21 15:11:22',943.809000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15926,10,10,'2019-08-21 15:11:22',944.725000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15927,10,10,'2019-08-21 15:11:22',945.724000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15928,10,10,'2019-08-21 15:11:22',946.522000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15929,10,10,'2019-08-21 15:11:22',946.943000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15930,10,10,'2019-08-21 15:11:22',947.321000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15931,10,10,'2019-08-21 15:11:22',948.171000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15932,10,10,'2019-08-21 15:11:22',949.003000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15933,10,10,'2019-08-21 15:11:22',949.886000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15934,10,10,'2019-08-21 15:11:22',950.243000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15935,10,10,'2019-08-21 15:11:22',950.718000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15936,10,10,'2019-08-21 15:11:22',951.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15937,10,10,'2019-08-21 15:11:22',951.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15938,10,10,'2019-08-21 15:11:22',952.482000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15939,10,10,'2019-08-21 15:11:22',952.848000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15940,10,10,'2019-08-21 15:11:22',953.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15941,10,10,'2019-08-21 15:11:22',954.264000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15942,10,10,'2019-08-21 15:11:22',955.146000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15943,10,10,'2019-08-21 15:11:22',956.146000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15944,10,10,'2019-08-21 15:11:22',957.161000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15945,10,10,'2019-08-21 15:11:22',958.076000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15946,10,10,'2019-08-21 15:11:22',958.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15947,10,10,'2019-08-21 15:11:22',959.791000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15948,10,10,'2019-08-21 15:11:22',960.145000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15949,10,10,'2019-08-21 15:11:22',960.674000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15950,10,10,'2019-08-21 15:11:22',960.963000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15951,10,10,'2019-08-21 15:11:22',961.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15952,10,10,'2019-08-21 15:11:22',962.372000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15953,10,10,'2019-08-21 15:11:22',963.188000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15954,10,10,'2019-08-21 15:11:22',964.087000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15955,10,10,'2019-08-21 15:11:22',964.455000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15956,10,10,'2019-08-21 15:11:22',965.052000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15957,10,10,'2019-08-21 15:11:22',965.292000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15958,10,10,'2019-08-21 15:11:22',965.818000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15959,10,10,'2019-08-21 15:11:22',966.601000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15960,10,10,'2019-08-21 15:11:22',966.978000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15961,10,10,'2019-08-21 15:11:22',967.550000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15962,10,10,'2019-08-21 15:11:22',968.465000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15963,10,10,'2019-08-21 15:11:22',969.231000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15964,10,10,'2019-08-21 15:11:22',969.612000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15965,10,10,'2019-08-21 15:11:22',970.180000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15966,10,10,'2019-08-21 15:11:22',971.162000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15967,10,10,'2019-08-21 15:11:22',971.994000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15968,10,10,'2019-08-21 15:11:22',972.297000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15969,10,10,'2019-08-21 15:11:22',972.777000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15970,10,10,'2019-08-21 15:11:22',973.104000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15971,10,10,'2019-08-21 15:11:22',973.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15972,10,10,'2019-08-21 15:11:22',974.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15973,10,10,'2019-08-21 15:11:22',975.424000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15974,10,10,'2019-08-21 15:11:22',976.290000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15975,10,10,'2019-08-21 15:11:22',977.155000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15976,10,10,'2019-08-21 15:11:22',977.495000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15977,10,10,'2019-08-21 15:11:22',978.071000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15978,10,10,'2019-08-21 15:11:22',978.887000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15979,10,10,'2019-08-21 15:11:22',979.836000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15980,10,10,'2019-08-21 15:11:22',980.635000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15981,10,10,'2019-08-21 15:11:22',981.617000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15982,10,10,'2019-08-21 15:11:22',981.945000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15983,10,10,'2019-08-21 15:11:22',982.434000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15984,10,10,'2019-08-21 15:11:22',983.299000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15985,10,10,'2019-08-21 15:11:22',983.651000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15986,10,10,'2019-08-21 15:11:22',984.098000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15987,10,10,'2019-08-21 15:11:22',984.947000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15988,10,10,'2019-08-21 15:11:22',985.930000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15989,10,10,'2019-08-21 15:11:22',986.235000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15990,10,10,'2019-08-21 15:11:22',986.729000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15991,10,10,'2019-08-21 15:11:22',987.595000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15992,10,10,'2019-08-21 15:11:22',988.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15993,10,10,'2019-08-21 15:11:22',988.748000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15994,10,10,'2019-08-21 15:11:22',989.275000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15995,10,10,'2019-08-21 15:11:22',989.667000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15996,10,10,'2019-08-21 15:11:22',990.042000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15997,10,10,'2019-08-21 15:11:22',990.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15998,10,10,'2019-08-21 15:11:22',991.723000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (15999,10,10,'2019-08-21 15:11:22',992.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16000,10,10,'2019-08-21 15:11:22',993.505000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16001,10,10,'2019-08-21 15:11:22',994.437000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16002,10,10,'2019-08-21 15:11:22',995.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16003,10,10,'2019-08-21 15:11:22',996.234000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16004,10,10,'2019-08-21 15:11:22',996.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16005,10,10,'2019-08-21 15:11:22',997.233000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16006,10,10,'2019-08-21 15:11:22',997.580000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16007,10,10,'2019-08-21 15:11:22',998.149000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16008,10,10,'2019-08-21 15:11:22',998.649000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16009,10,10,'2019-08-21 15:11:22',998.932000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16010,10,10,'2019-08-21 15:11:22',999.781000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16011,10,10,'2019-08-21 15:11:22',1000.255000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16012,10,10,'2019-08-21 15:11:22',1000.696000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16013,10,10,'2019-08-21 15:11:22',1001.712000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16014,10,10,'2019-08-21 15:11:22',1002.528000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16015,10,10,'2019-08-21 15:11:22',1003.360000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16016,10,10,'2019-08-21 15:11:22',1004.243000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16017,10,10,'2019-08-21 15:11:22',1005.225000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16018,10,10,'2019-08-21 15:11:22',1005.604000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16019,10,10,'2019-08-21 15:11:22',1006.174000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16020,10,10,'2019-08-21 15:11:22',1006.956000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16021,10,10,'2019-08-21 15:11:22',1007.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16022,10,10,'2019-08-21 15:11:22',1008.258000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16023,10,10,'2019-08-21 15:11:22',1008.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16024,10,10,'2019-08-21 15:11:22',1009.670000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16025,10,10,'2019-08-21 15:11:22',1010.553000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16026,10,10,'2019-08-21 15:11:22',1010.953000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16027,10,10,'2019-08-21 15:11:22',1011.552000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16028,10,10,'2019-08-21 15:11:22',1012.384000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16029,10,10,'2019-08-21 15:11:22',1013.199000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16030,10,10,'2019-08-21 15:11:22',1013.647000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16031,10,10,'2019-08-21 15:11:22',1014.049000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16032,10,10,'2019-08-21 15:11:22',1014.831000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16033,10,10,'2019-08-21 15:11:22',1015.232000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16034,10,10,'2019-08-21 15:11:22',1015.813000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16035,10,10,'2019-08-21 15:11:22',1016.679000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16036,10,10,'2019-08-21 15:11:22',1017.009000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16037,10,10,'2019-08-21 15:11:22',1017.661000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16038,10,10,'2019-08-21 15:11:22',1018.478000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16039,10,10,'2019-08-21 15:11:22',1019.426000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16040,10,10,'2019-08-21 15:11:22',1020.358000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16041,10,10,'2019-08-21 15:11:22',1021.225000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16042,10,10,'2019-08-21 15:11:22',1021.581000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16043,10,10,'2019-08-21 15:11:22',1022.123000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16044,10,10,'2019-08-21 15:11:22',1022.956000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16045,10,10,'2019-08-21 15:11:22',1023.357000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16046,10,10,'2019-08-21 15:11:22',1023.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16047,10,10,'2019-08-21 15:11:22',1024.721000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16048,10,10,'2019-08-21 15:11:22',1025.652000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16049,10,10,'2019-08-21 15:11:22',1025.981000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16050,10,10,'2019-08-21 15:11:22',1026.452000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16051,10,10,'2019-08-21 15:11:22',1027.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16052,10,10,'2019-08-21 15:11:22',1027.646000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16053,10,10,'2019-08-21 15:11:22',1028.233000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16054,10,10,'2019-08-21 15:11:22',1029.183000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16055,10,10,'2019-08-21 15:11:22',1029.948000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16056,10,10,'2019-08-21 15:11:22',1030.830000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16057,10,10,'2019-08-21 15:11:22',1031.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16058,10,10,'2019-08-21 15:11:22',1031.597000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16059,10,10,'2019-08-21 15:11:22',1032.528000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16060,10,10,'2019-08-21 15:11:22',1033.328000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16061,10,10,'2019-08-21 15:11:22',1033.652000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16062,10,10,'2019-08-21 15:11:22',1034.243000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16063,10,10,'2019-08-21 15:11:22',1035.192000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16064,10,10,'2019-08-21 15:11:22',1035.438000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16065,10,10,'2019-08-21 15:11:22',1036.142000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16066,10,10,'2019-08-21 15:11:22',1037.141000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16067,10,10,'2019-08-21 15:11:22',1038.139000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16068,10,10,'2019-08-21 15:11:22',1038.537000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16069,10,10,'2019-08-21 15:11:22',1039.005000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16070,10,10,'2019-08-21 15:11:22',1039.771000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16071,10,10,'2019-08-21 15:11:22',1040.604000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16072,10,10,'2019-08-21 15:11:22',1040.990000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16073,10,10,'2019-08-21 15:11:22',1041.568000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16074,10,10,'2019-08-21 15:11:22',1042.518000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16075,10,10,'2019-08-21 15:11:22',1043.384000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16076,10,10,'2019-08-21 15:11:22',1044.398000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16077,10,10,'2019-08-21 15:11:22',1044.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16078,10,10,'2019-08-21 15:11:22',1045.397000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16079,10,10,'2019-08-21 15:11:22',1046.347000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16080,10,10,'2019-08-21 15:11:22',1047.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16081,10,10,'2019-08-21 15:11:22',1048.028000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16082,10,10,'2019-08-21 15:11:22',1048.994000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16083,10,10,'2019-08-21 15:11:22',1049.810000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16084,10,10,'2019-08-21 15:11:22',1050.235000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16085,10,10,'2019-08-21 15:11:22',1050.692000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16086,10,10,'2019-08-21 15:11:22',1051.194000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16087,10,10,'2019-08-21 15:11:22',1051.475000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16088,10,10,'2019-08-21 15:11:22',1052.340000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16089,10,10,'2019-08-21 15:11:22',1053.156000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16090,10,10,'2019-08-21 15:11:22',1053.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16091,10,10,'2019-08-21 15:11:22',1054.282000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16092,10,10,'2019-08-21 15:11:22',1054.871000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16093,10,10,'2019-08-21 15:11:22',1055.703000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16094,10,10,'2019-08-21 15:11:22',1056.119000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16095,10,10,'2019-08-21 15:11:22',1056.469000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16096,10,10,'2019-08-21 15:11:22',1057.418000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16097,10,10,'2019-08-21 15:11:22',1058.267000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16098,10,10,'2019-08-21 15:11:22',1059.183000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16099,10,10,'2019-08-21 15:11:22',1060.182000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16100,10,10,'2019-08-21 15:11:22',1060.580000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16101,10,10,'2019-08-21 15:11:22',1060.964000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16102,10,10,'2019-08-21 15:11:22',1061.469000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16103,10,10,'2019-08-21 15:11:22',1061.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16104,10,10,'2019-08-21 15:11:22',1062.175000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16105,10,10,'2019-08-21 15:11:22',1062.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16106,10,10,'2019-08-21 15:11:22',1063.444000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16107,10,10,'2019-08-21 15:11:22',1064.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16108,10,10,'2019-08-21 15:11:22',1065.326000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16109,10,10,'2019-08-21 15:11:22',1065.930000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16110,10,10,'2019-08-21 15:11:22',1066.125000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16111,10,10,'2019-08-21 15:11:22',1067.074000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16112,10,10,'2019-08-21 15:11:22',1067.974000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16113,10,10,'2019-08-21 15:11:22',1068.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16114,10,10,'2019-08-21 15:11:22',1068.822000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16115,10,10,'2019-08-21 15:11:22',1069.621000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16116,10,10,'2019-08-21 15:11:22',1070.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16117,10,10,'2019-08-21 15:11:22',1070.754000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16118,10,10,'2019-08-21 15:11:22',1071.303000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16119,10,10,'2019-08-21 15:11:22',1072.102000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16120,10,10,'2019-08-21 15:11:22',1073.084000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16121,10,10,'2019-08-21 15:11:22',1073.917000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16122,10,10,'2019-08-21 15:11:22',1074.317000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16123,10,10,'2019-08-21 15:11:22',1074.849000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16124,10,10,'2019-08-21 15:11:22',1075.648000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16125,10,10,'2019-08-21 15:11:22',1076.003000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16126,10,10,'2019-08-21 15:11:22',1076.530000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16127,10,10,'2019-08-21 15:11:22',1077.413000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16128,10,10,'2019-08-21 15:11:22',1078.195000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16129,10,10,'2019-08-21 15:11:22',1078.961000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16130,10,10,'2019-08-21 15:11:22',1079.313000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16131,10,10,'2019-08-21 15:11:22',1079.844000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16132,10,10,'2019-08-21 15:11:22',1080.191000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16133,10,10,'2019-08-21 15:11:22',1080.826000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16134,10,10,'2019-08-21 15:11:22',1081.592000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16135,10,10,'2019-08-21 15:11:22',1082.507000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16136,10,10,'2019-08-21 15:11:22',1083.423000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16137,10,10,'2019-08-21 15:11:22',1084.405000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16138,10,10,'2019-08-21 15:11:22',1085.287000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16139,10,10,'2019-08-21 15:11:22',1085.874000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16140,10,10,'2019-08-21 15:11:22',1086.170000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16141,10,10,'2019-08-21 15:11:22',1086.500000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16142,10,10,'2019-08-21 15:11:22',1086.969000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16143,10,10,'2019-08-21 15:11:22',1087.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16144,10,10,'2019-08-21 15:11:22',1088.397000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16145,10,10,'2019-08-21 15:11:22',1088.950000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16146,10,10,'2019-08-21 15:11:22',1089.883000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16147,10,10,'2019-08-21 15:11:22',1090.748000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16148,10,10,'2019-08-21 15:11:22',1091.548000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16149,10,10,'2019-08-21 15:11:22',1091.970000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16150,10,10,'2019-08-21 15:11:22',1092.446000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16151,10,10,'2019-08-21 15:11:22',1093.329000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16152,10,10,'2019-08-21 15:11:22',1093.736000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16153,10,10,'2019-08-21 15:11:22',1094.328000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16154,10,10,'2019-08-21 15:11:22',1094.654000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16155,10,10,'2019-08-21 15:11:22',1095.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16156,10,10,'2019-08-21 15:11:22',1096.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16157,10,10,'2019-08-21 15:11:22',1096.908000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16158,10,10,'2019-08-21 15:11:22',1097.774000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16159,10,10,'2019-08-21 15:11:22',1098.573000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16160,10,10,'2019-08-21 15:11:22',1099.035000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16161,10,10,'2019-08-21 15:11:22',1099.522000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16162,10,10,'2019-08-21 15:11:22',1100.321000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16163,10,10,'2019-08-21 15:11:22',1100.711000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16164,10,10,'2019-08-21 15:11:22',1101.254000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16165,10,10,'2019-08-21 15:11:22',1102.136000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16166,10,10,'2019-08-21 15:11:22',1103.102000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16167,10,10,'2019-08-21 15:11:22',1103.900000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16168,10,10,'2019-08-21 15:11:22',1104.717000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16169,10,10,'2019-08-21 15:11:22',1105.549000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16170,10,10,'2019-08-21 15:11:22',1105.919000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16171,10,10,'2019-08-21 15:11:22',1106.465000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16172,10,10,'2019-08-21 15:11:22',1106.746000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16173,10,10,'2019-08-21 15:11:22',1107.230000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16174,10,10,'2019-08-21 15:11:22',1108.163000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16175,10,10,'2019-08-21 15:11:22',1109.078000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16176,10,10,'2019-08-21 15:11:22',1109.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16177,10,10,'2019-08-21 15:11:22',1109.860000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16178,10,10,'2019-08-21 15:11:22',1110.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16179,10,10,'2019-08-21 15:11:22',1110.793000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16180,10,10,'2019-08-21 15:11:22',1111.626000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16181,10,10,'2019-08-21 15:11:22',1112.491000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16182,10,10,'2019-08-21 15:11:22',1113.407000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16183,10,10,'2019-08-21 15:11:22',1114.339000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16184,10,10,'2019-08-21 15:11:22',1115.338000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16185,10,10,'2019-08-21 15:11:22',1116.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16186,10,10,'2019-08-21 15:11:22',1116.617000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16187,10,10,'2019-08-21 15:11:22',1117.053000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16188,10,10,'2019-08-21 15:11:22',1117.546000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16189,10,10,'2019-08-21 15:11:22',1117.886000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16190,10,10,'2019-08-21 15:11:22',1118.817000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16191,11,11,'2023-02-09 10:39:10',1.365000,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16192,11,11,'2023-02-09 10:39:10',1.535719,0.000000,NULL,'2',NULL,NULL,'SESS',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16193,11,11,'2023-02-09 10:39:10',1.586724,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16194,11,11,'2023-02-09 10:39:10',1.587720,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16195,11,11,'2023-02-09 10:39:10',1.589722,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16196,11,11,'2023-02-09 10:39:10',1.590718,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16197,11,11,'2023-02-09 10:39:10',2.686000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16198,11,11,'2023-02-09 10:39:10',2.689001,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16199,11,11,'2023-02-09 10:39:10',4.023997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16200,11,11,'2023-02-09 10:39:10',7.154718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16201,11,11,'2023-02-09 10:39:10',7.386723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16202,11,11,'2023-02-09 10:39:10',7.885724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16203,11,11,'2023-02-09 10:39:10',8.560726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16204,11,11,'2023-02-09 10:39:10',10.784723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16205,11,11,'2023-02-09 10:39:10',10.799720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16206,11,11,'2023-02-09 10:39:10',11.039720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16207,11,11,'2023-02-09 10:39:10',11.060994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16208,11,11,'2023-02-09 10:39:10',11.538722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16209,11,11,'2023-02-09 10:39:10',12.078721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16210,11,11,'2023-02-09 10:39:10',12.568720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16211,11,11,'2023-02-09 10:39:10',12.581726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16212,11,11,'2023-02-09 10:39:10',12.811718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16213,11,11,'2023-02-09 10:39:10',12.833002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16214,11,11,'2023-02-09 10:39:10',13.310720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16215,11,11,'2023-02-09 10:39:10',13.997721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16216,11,11,'2023-02-09 10:39:10',14.280721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16217,11,11,'2023-02-09 10:39:10',14.302718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16218,11,11,'2023-02-09 10:39:10',14.531725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16219,11,11,'2023-02-09 10:39:10',14.552003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16220,11,11,'2023-02-09 10:39:10',15.030727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16221,11,11,'2023-02-09 10:39:10',15.623723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16222,11,11,'2023-02-09 10:39:10',15.632725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16223,11,11,'2023-02-09 10:39:10',15.645720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16224,11,11,'2023-02-09 10:39:10',15.890720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16225,11,11,'2023-02-09 10:39:10',15.911993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16226,11,11,'2023-02-09 10:39:10',16.389722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16227,11,11,'2023-02-09 10:39:10',17.050722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16228,11,11,'2023-02-09 10:39:10',17.168726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16229,11,11,'2023-02-09 10:39:10',17.183722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16230,11,11,'2023-02-09 10:39:10',17.423723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16231,11,11,'2023-02-09 10:39:10',17.444996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16232,11,11,'2023-02-09 10:39:10',17.922725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16233,11,11,'2023-02-09 10:39:10',18.569724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16234,11,11,'2023-02-09 10:39:10',18.672721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16235,11,11,'2023-02-09 10:39:10',18.685726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16236,11,11,'2023-02-09 10:39:10',18.929720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16237,11,11,'2023-02-09 10:39:10',18.951003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16238,11,11,'2023-02-09 10:39:10',19.428721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16239,11,11,'2023-02-09 10:39:10',20.115722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16240,11,11,'2023-02-09 10:39:10',20.192718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16241,11,11,'2023-02-09 10:39:10',20.207725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16242,11,11,'2023-02-09 10:39:10',20.435727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16243,11,11,'2023-02-09 10:39:10',20.457000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16244,11,11,'2023-02-09 10:39:10',20.934718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16245,11,11,'2023-02-09 10:39:10',21.528720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16246,11,11,'2023-02-09 10:39:10',21.791724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16247,11,11,'2023-02-09 10:39:10',21.805725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16248,11,11,'2023-02-09 10:39:10',22.034722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16249,11,11,'2023-02-09 10:39:10',22.055995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16250,11,11,'2023-02-09 10:39:10',22.533724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16251,11,11,'2023-02-09 10:39:10',23.128721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16252,11,11,'2023-02-09 10:39:10',23.440719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16253,11,11,'2023-02-09 10:39:10',23.455726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16254,11,11,'2023-02-09 10:39:10',23.687721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16255,11,11,'2023-02-09 10:39:10',23.708994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16256,11,11,'2023-02-09 10:39:10',24.186722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16257,11,11,'2023-02-09 10:39:10',24.887724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16258,11,11,'2023-02-09 10:39:10',25.159720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16259,11,11,'2023-02-09 10:39:10',25.173721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16260,11,11,'2023-02-09 10:39:10',25.420723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16261,11,11,'2023-02-09 10:39:10',25.441000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16262,11,11,'2023-02-09 10:39:10',25.919724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16263,11,11,'2023-02-09 10:39:10',26.553718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16264,11,11,'2023-02-09 10:39:10',26.783721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16265,11,11,'2023-02-09 10:39:10',26.799723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16266,11,11,'2023-02-09 10:39:10',27.032724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16267,11,11,'2023-02-09 10:39:10',27.053997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16268,11,11,'2023-02-09 10:39:10',27.531725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16269,11,11,'2023-02-09 10:39:10',28.192725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16270,11,11,'2023-02-09 10:39:10',28.247724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16271,11,11,'2023-02-09 10:39:10',28.261725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16272,11,11,'2023-02-09 10:39:10',28.485723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16273,11,11,'2023-02-09 10:39:10',28.506996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16274,11,11,'2023-02-09 10:39:10',28.984725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16275,11,11,'2023-02-09 10:39:10',29.565721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16276,11,11,'2023-02-09 10:39:10',29.576725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16277,11,11,'2023-02-09 10:39:10',29.590726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16278,11,11,'2023-02-09 10:39:10',29.831723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16279,11,11,'2023-02-09 10:39:10',29.852000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16280,11,11,'2023-02-09 10:39:10',30.330724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16281,11,11,'2023-02-09 10:39:10',31.017725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16282,11,11,'2023-02-09 10:39:10',31.471726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16283,11,11,'2023-02-09 10:39:10',31.487719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16284,11,11,'2023-02-09 10:39:10',31.724722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16285,11,11,'2023-02-09 10:39:10',31.745995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16286,11,11,'2023-02-09 10:39:10',32.223723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16287,11,11,'2023-02-09 10:39:10',32.737722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16288,11,11,'2023-02-09 10:39:10',33.550723,0.000000,NULL,'nan',NULL,NULL,'dist',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16289,11,11,'2023-02-09 10:39:10',33.633000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16290,11,11,'2023-02-09 10:39:10',34.631003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16291,11,11,'2023-02-09 10:39:10',36.921726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16292,11,11,'2023-02-09 10:39:10',36.937719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16293,11,11,'2023-02-09 10:39:10',37.175718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16294,11,11,'2023-02-09 10:39:10',37.197002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16295,11,11,'2023-02-09 10:39:10',37.674720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16296,11,11,'2023-02-09 10:39:10',38.321719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16297,11,11,'2023-02-09 10:39:10',38.619726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16298,11,11,'2023-02-09 10:39:10',38.636724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16299,11,11,'2023-02-09 10:39:10',38.867723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16300,11,11,'2023-02-09 10:39:10',38.888996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16301,11,11,'2023-02-09 10:39:10',39.366724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16302,11,11,'2023-02-09 10:39:10',39.987723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16303,11,11,'2023-02-09 10:39:10',40.114719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16304,11,11,'2023-02-09 10:39:10',40.130721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16305,11,11,'2023-02-09 10:39:10',40.374725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16306,11,11,'2023-02-09 10:39:10',40.395998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16307,11,11,'2023-02-09 10:39:10',40.873727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16308,11,11,'2023-02-09 10:39:10',41.413726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16309,11,11,'2023-02-09 10:39:10',41.458727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16310,11,11,'2023-02-09 10:39:10',41.473723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16311,11,11,'2023-02-09 10:39:10',41.693718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16312,11,11,'2023-02-09 10:39:10',41.715002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16313,11,11,'2023-02-09 10:39:10',42.192720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16314,11,11,'2023-02-09 10:39:10',42.693723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16315,11,11,'2023-02-09 10:39:10',42.735726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16316,11,11,'2023-02-09 10:39:10',42.756718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16317,11,11,'2023-02-09 10:39:10',42.986721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16318,11,11,'2023-02-09 10:39:10',43.007994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16319,11,11,'2023-02-09 10:39:10',43.485722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16320,11,11,'2023-02-09 10:39:10',44.079724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16321,11,11,'2023-02-09 10:39:10',44.538724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16322,11,11,'2023-02-09 10:39:10',44.553721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16323,11,11,'2023-02-09 10:39:10',44.785725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16324,11,11,'2023-02-09 10:39:10',44.806999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16325,11,11,'2023-02-09 10:39:10',45.284727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16326,11,11,'2023-02-09 10:39:10',45.932722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16327,11,11,'2023-02-09 10:39:10',46.186723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16328,11,11,'2023-02-09 10:39:10',46.203722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16329,11,11,'2023-02-09 10:39:10',46.438724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16330,11,11,'2023-02-09 10:39:10',46.459997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16331,11,11,'2023-02-09 10:39:10',46.937725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16332,11,11,'2023-02-09 10:39:10',47.464719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16333,11,11,'2023-02-09 10:39:10',47.802718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16334,11,11,'2023-02-09 10:39:10',47.817724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16335,11,11,'2023-02-09 10:39:10',48.051720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16336,11,11,'2023-02-09 10:39:10',48.072994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16337,11,11,'2023-02-09 10:39:10',48.550722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16338,11,11,'2023-02-09 10:39:10',49.223722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16339,11,11,'2023-02-09 10:39:10',49.266721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16340,11,11,'2023-02-09 10:39:10',49.281718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16341,11,11,'2023-02-09 10:39:10',49.517725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16342,11,11,'2023-02-09 10:39:10',49.538003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16343,11,11,'2023-02-09 10:39:10',50.016727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16344,11,11,'2023-02-09 10:39:10',50.583722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16345,11,11,'2023-02-09 10:39:10',51.073722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16346,11,11,'2023-02-09 10:39:10',51.089724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16347,11,11,'2023-02-09 10:39:10',51.330721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16348,11,11,'2023-02-09 10:39:10',51.350998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16349,11,11,'2023-02-09 10:39:10',51.829722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16350,11,11,'2023-02-09 10:39:10',52.449725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16351,11,11,'2023-02-09 10:39:10',52.657720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16352,11,11,'2023-02-09 10:39:10',52.674719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16353,11,11,'2023-02-09 10:39:10',52.915725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16354,11,11,'2023-02-09 10:39:10',52.936999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16355,11,11,'2023-02-09 10:39:10',53.414727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16356,11,11,'2023-02-09 10:39:10',54.008719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16357,11,11,'2023-02-09 10:39:10',54.306726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16358,11,11,'2023-02-09 10:39:10',54.321723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16359,11,11,'2023-02-09 10:39:10',54.555719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16360,11,11,'2023-02-09 10:39:10',54.577002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16361,11,11,'2023-02-09 10:39:10',55.054720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16362,11,11,'2023-02-09 10:39:10',55.728726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16363,11,11,'2023-02-09 10:39:10',55.745724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16364,11,11,'2023-02-09 10:39:10',55.761727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16365,11,11,'2023-02-09 10:39:10',55.994727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16366,11,11,'2023-02-09 10:39:10',56.016000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16367,11,11,'2023-02-09 10:39:10',56.493718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16368,11,11,'2023-02-09 10:39:10',57.154719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16369,11,11,'2023-02-09 10:39:10',57.170721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16370,11,11,'2023-02-09 10:39:10',57.187720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16371,11,11,'2023-02-09 10:39:10',57.420720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16372,11,11,'2023-02-09 10:39:10',57.442999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16373,11,11,'2023-02-09 10:39:10',57.919722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16374,11,11,'2023-02-09 10:39:10',58.580722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16375,11,11,'2023-02-09 10:39:10',58.828719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16376,11,11,'2023-02-09 10:39:10',58.845717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16377,11,11,'2023-02-09 10:39:10',59.086724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16378,11,11,'2023-02-09 10:39:10',59.107997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16379,11,11,'2023-02-09 10:39:10',59.585725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16380,11,11,'2023-02-09 10:39:10',60.179717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16381,11,11,'2023-02-09 10:39:10',60.337723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16382,11,11,'2023-02-09 10:39:10',60.352720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16383,11,11,'2023-02-09 10:39:10',60.592721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16384,11,11,'2023-02-09 10:39:10',60.615000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16385,11,11,'2023-02-09 10:39:10',61.091722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16386,11,11,'2023-02-09 10:39:10',61.645722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16387,11,11,'2023-02-09 10:39:10',62.025724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16388,11,11,'2023-02-09 10:39:10',62.043719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16389,11,11,'2023-02-09 10:39:10',62.272726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16390,11,11,'2023-02-09 10:39:10',62.293999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16391,11,11,'2023-02-09 10:39:10',62.771727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16392,11,11,'2023-02-09 10:39:10',63.311726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16393,11,11,'2023-02-09 10:39:10',64.049723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16394,11,11,'2023-02-09 10:39:10',64.064719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16395,11,11,'2023-02-09 10:39:10',64.298725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16396,11,11,'2023-02-09 10:39:10',64.318993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16397,11,11,'2023-02-09 10:39:10',64.797727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16398,11,11,'2023-02-09 10:39:10',65.484718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16399,11,11,'2023-02-09 10:39:10',66.153724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16400,11,11,'2023-02-09 10:39:10',66.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16401,11,11,'2023-02-09 10:39:10',66.417724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16402,11,11,'2023-02-09 10:39:10',66.438997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16403,11,11,'2023-02-09 10:39:10',66.916726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16404,11,11,'2023-02-09 10:39:10',67.616722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16405,11,11,'2023-02-09 10:39:10',68.313721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16406,11,11,'2023-02-09 10:39:10',68.330719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16407,11,11,'2023-02-09 10:39:10',68.563719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16408,11,11,'2023-02-09 10:39:10',68.585003,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16409,11,11,'2023-02-09 10:39:10',69.062721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16410,11,11,'2023-02-09 10:39:10',69.616721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16411,11,11,'2023-02-09 10:39:10',70.289721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16412,11,11,'2023-02-09 10:39:10',70.304718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16413,11,11,'2023-02-09 10:39:10',70.535726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16414,11,11,'2023-02-09 10:39:10',70.557000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16415,11,11,'2023-02-09 10:39:10',71.034718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16416,11,11,'2023-02-09 10:39:10',71.615725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16417,11,11,'2023-02-09 10:39:10',71.913721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16418,11,11,'2023-02-09 10:39:10',71.928718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16419,11,11,'2023-02-09 10:39:10',72.161718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16420,11,11,'2023-02-09 10:39:10',72.183002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16421,11,11,'2023-02-09 10:39:10',72.660720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16422,11,11,'2023-02-09 10:39:10',73.174718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16423,11,11,'2023-02-09 10:39:10',73.433719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16424,11,11,'2023-02-09 10:39:10',73.448726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16425,11,11,'2023-02-09 10:39:10',73.694722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16426,11,11,'2023-02-09 10:39:10',73.714999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16427,11,11,'2023-02-09 10:39:10',74.193723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16428,11,11,'2023-02-09 10:39:10',74.827727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16429,11,11,'2023-02-09 10:39:10',75.041727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16430,11,11,'2023-02-09 10:39:10',75.057720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16431,11,11,'2023-02-09 10:39:10',75.293727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16432,11,11,'2023-02-09 10:39:10',75.315000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16433,11,11,'2023-02-09 10:39:10',75.792719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16434,11,11,'2023-02-09 10:39:10',76.440724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16435,11,11,'2023-02-09 10:39:10',76.713725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16436,11,11,'2023-02-09 10:39:10',76.729718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16437,11,11,'2023-02-09 10:39:10',76.973722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16438,11,11,'2023-02-09 10:39:10',76.994000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16439,11,11,'2023-02-09 10:39:10',77.472724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16440,11,11,'2023-02-09 10:39:10',78.172720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16441,11,11,'2023-02-09 10:39:10',78.401727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16442,11,11,'2023-02-09 10:39:10',78.417719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16443,11,11,'2023-02-09 10:39:10',78.652721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16444,11,11,'2023-02-09 10:39:10',78.672999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16445,11,11,'2023-02-09 10:39:10',79.151723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16446,11,11,'2023-02-09 10:39:10',79.812723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16447,11,11,'2023-02-09 10:39:10',80.049726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16448,11,11,'2023-02-09 10:39:10',80.065719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16449,11,11,'2023-02-09 10:39:10',80.305720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16450,11,11,'2023-02-09 10:39:10',80.326993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16451,11,11,'2023-02-09 10:39:10',80.804721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16452,11,11,'2023-02-09 10:39:10',81.451720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16453,11,11,'2023-02-09 10:39:10',81.609726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16454,11,11,'2023-02-09 10:39:10',81.624723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16455,11,11,'2023-02-09 10:39:10',81.864723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16456,11,11,'2023-02-09 10:39:10',81.885997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16457,11,11,'2023-02-09 10:39:10',82.363725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16458,11,11,'2023-02-09 10:39:10',83.051722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16459,11,11,'2023-02-09 10:39:10',83.273718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16460,11,11,'2023-02-09 10:39:10',83.288725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16461,11,11,'2023-02-09 10:39:10',83.517722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16462,11,11,'2023-02-09 10:39:10',83.538995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16463,11,11,'2023-02-09 10:39:10',84.016723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16464,11,11,'2023-02-09 10:39:10',84.650727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16465,11,11,'2023-02-09 10:39:10',84.873719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16466,11,11,'2023-02-09 10:39:10',84.890718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16467,11,11,'2023-02-09 10:39:10',85.130719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16468,11,11,'2023-02-09 10:39:10',85.150996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16469,11,11,'2023-02-09 10:39:10',85.629720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16470,11,11,'2023-02-09 10:39:10',86.263724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16471,11,11,'2023-02-09 10:39:10',86.393727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16472,11,11,'2023-02-09 10:39:10',86.409720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16473,11,11,'2023-02-09 10:39:10',86.635720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16474,11,11,'2023-02-09 10:39:10',86.657999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16475,11,11,'2023-02-09 10:39:10',87.134721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16476,11,11,'2023-02-09 10:39:10',87.808727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16477,11,11,'2023-02-09 10:39:10',87.985722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16478,11,11,'2023-02-09 10:39:10',88.002721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16479,11,11,'2023-02-09 10:39:10',88.248726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16480,11,11,'2023-02-09 10:39:10',88.270000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16481,11,11,'2023-02-09 10:39:10',88.747718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16482,11,11,'2023-02-09 10:39:10',89.435724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16483,11,11,'2023-02-09 10:39:10',89.593720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16484,11,11,'2023-02-09 10:39:10',89.608727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16485,11,11,'2023-02-09 10:39:10',89.848718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16486,11,11,'2023-02-09 10:39:10',89.870001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16487,11,11,'2023-02-09 10:39:10',90.347719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16488,11,11,'2023-02-09 10:39:10',91.034720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16489,11,11,'2023-02-09 10:39:10',91.049727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16490,11,11,'2023-02-09 10:39:10',91.065720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16491,11,11,'2023-02-09 10:39:10',91.300721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16492,11,11,'2023-02-09 10:39:10',91.323000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16493,11,11,'2023-02-09 10:39:10',91.799723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16494,11,11,'2023-02-09 10:39:10',92.367724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16495,11,11,'2023-02-09 10:39:10',92.729722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16496,11,11,'2023-02-09 10:39:10',92.745725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16497,11,11,'2023-02-09 10:39:10',92.993722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16498,11,11,'2023-02-09 10:39:10',93.014995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16499,11,11,'2023-02-09 10:39:10',93.492723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16500,11,11,'2023-02-09 10:39:10',94.019727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16501,11,11,'2023-02-09 10:39:10',94.315722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16502,11,11,'2023-02-09 10:39:10',94.333726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16503,11,11,'2023-02-09 10:39:10',94.566727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16504,11,11,'2023-02-09 10:39:10',94.588000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16505,11,11,'2023-02-09 10:39:10',95.065718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16506,11,11,'2023-02-09 10:39:10',95.712727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16507,11,11,'2023-02-09 10:39:10',96.009718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16508,11,11,'2023-02-09 10:39:10',96.025721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16509,11,11,'2023-02-09 10:39:10',96.259727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16510,11,11,'2023-02-09 10:39:10',96.279994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16511,11,11,'2023-02-09 10:39:10',96.758718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16512,11,11,'2023-02-09 10:39:10',97.312719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16513,11,11,'2023-02-09 10:39:10',97.481718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16514,11,11,'2023-02-09 10:39:10',97.497721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16515,11,11,'2023-02-09 10:39:10',97.738727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16516,11,11,'2023-02-09 10:39:10',97.760000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16517,11,11,'2023-02-09 10:39:10',98.237719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16518,11,11,'2023-02-09 10:39:10',98.898719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16519,11,11,'2023-02-09 10:39:10',99.225724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16520,11,11,'2023-02-09 10:39:10',99.241726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16521,11,11,'2023-02-09 10:39:10',99.471719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16522,11,11,'2023-02-09 10:39:10',99.491997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16523,11,11,'2023-02-09 10:39:10',99.970721,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16524,11,11,'2023-02-09 10:39:10',100.617720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16525,11,11,'2023-02-09 10:39:10',100.681721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16526,11,11,'2023-02-09 10:39:10',100.697723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16527,11,11,'2023-02-09 10:39:10',100.937724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16528,11,11,'2023-02-09 10:39:10',100.958997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16529,11,11,'2023-02-09 10:39:10',101.436726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16530,11,11,'2023-02-09 10:39:10',102.016726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16531,11,11,'2023-02-09 10:39:10',103.553723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16532,11,11,'2023-02-09 10:39:10',103.568720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16533,11,11,'2023-02-09 10:39:10',103.816727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16534,11,11,'2023-02-09 10:39:10',103.838000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16535,11,11,'2023-02-09 10:39:10',104.315718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16536,11,11,'2023-02-09 10:39:10',104.882724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16537,11,11,'2023-02-09 10:39:10',106.401726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16538,11,11,'2023-02-09 10:39:10',106.416723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16539,11,11,'2023-02-09 10:39:10',106.641726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16540,11,11,'2023-02-09 10:39:10',106.663000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16541,11,11,'2023-02-09 10:39:10',107.140718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16542,11,11,'2023-02-09 10:39:10',107.694718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16543,11,11,'2023-02-09 10:39:10',107.921724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16544,11,11,'2023-02-09 10:39:10',107.937726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16545,11,11,'2023-02-09 10:39:10',108.160718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16546,11,11,'2023-02-09 10:39:10',108.182002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16547,11,11,'2023-02-09 10:39:10',108.659720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16548,11,11,'2023-02-09 10:39:10',109.280718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16549,11,11,'2023-02-09 10:39:10',109.689718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16550,11,11,'2023-02-09 10:39:10',109.704725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16551,11,11,'2023-02-09 10:39:10',109.947723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16552,11,11,'2023-02-09 10:39:10',109.968001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16553,11,11,'2023-02-09 10:39:10',110.446725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16554,11,11,'2023-02-09 10:39:10',110.973719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16555,11,11,'2023-02-09 10:39:10',111.257724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16556,11,11,'2023-02-09 10:39:10',111.272721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16557,11,11,'2023-02-09 10:39:10',111.506727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16558,11,11,'2023-02-09 10:39:10',111.526995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16559,11,11,'2023-02-09 10:39:10',112.005719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16560,11,11,'2023-02-09 10:39:10',112.519717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16561,11,11,'2023-02-09 10:39:10',112.753723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16562,11,11,'2023-02-09 10:39:10',112.768720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16563,11,11,'2023-02-09 10:39:10',113.012724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16564,11,11,'2023-02-09 10:39:10',113.033001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16565,11,11,'2023-02-09 10:39:10',113.511725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16566,11,11,'2023-02-09 10:39:10',114.118723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16567,11,11,'2023-02-09 10:39:10',114.376718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16568,11,11,'2023-02-09 10:39:10',114.392720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16569,11,11,'2023-02-09 10:39:10',114.625721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16570,11,11,'2023-02-09 10:39:10',114.645998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16571,11,11,'2023-02-09 10:39:10',115.124722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16572,11,11,'2023-02-09 10:39:10',115.824718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16573,11,11,'2023-02-09 10:39:10',116.153725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16574,11,11,'2023-02-09 10:39:10',116.169717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16575,11,11,'2023-02-09 10:39:10',116.397719,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16576,11,11,'2023-02-09 10:39:10',116.419998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16577,11,11,'2023-02-09 10:39:10',116.896720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16578,11,11,'2023-02-09 10:39:10',117.597722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16579,11,11,'2023-02-09 10:39:10',117.769719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16580,11,11,'2023-02-09 10:39:10',117.785722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16581,11,11,'2023-02-09 10:39:10',118.010725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16582,11,11,'2023-02-09 10:39:10',118.031999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16583,11,11,'2023-02-09 10:39:10',118.509727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16584,11,11,'2023-02-09 10:39:10',119.076722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16585,11,11,'2023-02-09 10:39:10',119.704721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16586,11,11,'2023-02-09 10:39:10',119.720724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16587,11,11,'2023-02-09 10:39:10',119.943726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16588,11,11,'2023-02-09 10:39:10',119.963994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16589,11,11,'2023-02-09 10:39:10',120.442718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16590,11,11,'2023-02-09 10:39:10',121.022719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16591,11,11,'2023-02-09 10:39:10',121.600718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16592,11,11,'2023-02-09 10:39:10',121.616721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16593,11,11,'2023-02-09 10:39:10',121.849721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16594,11,11,'2023-02-09 10:39:10',121.869998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16595,11,11,'2023-02-09 10:39:10',122.348722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16596,11,11,'2023-02-09 10:39:10',122.915718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16597,11,11,'2023-02-09 10:39:10',123.185722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16598,11,11,'2023-02-09 10:39:10',123.201725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16599,11,11,'2023-02-09 10:39:10',123.434725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16600,11,11,'2023-02-09 10:39:10',123.455999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16601,11,11,'2023-02-09 10:39:10',123.933727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16602,11,11,'2023-02-09 10:39:10',124.541720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16603,11,11,'2023-02-09 10:39:10',124.768725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16604,11,11,'2023-02-09 10:39:10',124.785724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16605,11,11,'2023-02-09 10:39:10',125.008726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16606,11,11,'2023-02-09 10:39:10',125.028993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16607,11,11,'2023-02-09 10:39:10',125.507717,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16608,11,11,'2023-02-09 10:39:10',126.193723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16609,11,11,'2023-02-09 10:39:10',126.401718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16610,11,11,'2023-02-09 10:39:10',126.417721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16611,11,11,'2023-02-09 10:39:10',126.634718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16612,11,11,'2023-02-09 10:39:10',126.654000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16613,11,11,'2023-02-09 10:39:10',127.133720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16614,11,11,'2023-02-09 10:39:10',127.793724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16615,11,11,'2023-02-09 10:39:10',128.328724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16616,11,11,'2023-02-09 10:39:10',128.344727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16617,11,11,'2023-02-09 10:39:10',128.433723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16618,11,11,'2023-02-09 10:39:10',128.454996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16619,11,11,'2023-02-09 10:39:10',128.932724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16620,11,11,'2023-02-09 10:39:10',129.632720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16621,11,11,'2023-02-09 10:39:10',130.544725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16622,11,11,'2023-02-09 10:39:10',130.560718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16623,11,11,'2023-02-09 10:39:10',130.632725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16624,11,11,'2023-02-09 10:39:10',130.653998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16625,11,11,'2023-02-09 10:39:10',131.131726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16626,11,11,'2023-02-09 10:39:10',131.818727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16627,11,11,'2023-02-09 10:39:10',132.072719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16628,11,11,'2023-02-09 10:39:10',132.088722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16629,11,11,'2023-02-09 10:39:10',132.165718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16630,11,11,'2023-02-09 10:39:10',132.187001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16631,11,11,'2023-02-09 10:39:10',132.664720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16632,11,11,'2023-02-09 10:39:10',133.337719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16633,11,11,'2023-02-09 10:39:10',133.616726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16634,11,11,'2023-02-09 10:39:10',133.632719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16635,11,11,'2023-02-09 10:39:10',133.711726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16636,11,11,'2023-02-09 10:39:10',133.733000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16637,11,11,'2023-02-09 10:39:10',134.210718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16638,11,11,'2023-02-09 10:39:10',134.830721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16639,11,11,'2023-02-09 10:39:10',135.072723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16640,11,11,'2023-02-09 10:39:10',135.088726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16641,11,11,'2023-02-09 10:39:10',135.163720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16642,11,11,'2023-02-09 10:39:10',135.184993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16643,11,11,'2023-02-09 10:39:10',135.662722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16644,11,11,'2023-02-09 10:39:10',136.336727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16645,11,11,'2023-02-09 10:39:10',136.608723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16646,11,11,'2023-02-09 10:39:10',136.624726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16647,11,11,'2023-02-09 10:39:10',136.696723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16648,11,11,'2023-02-09 10:39:10',136.717001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16649,11,11,'2023-02-09 10:39:10',137.195725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16650,11,11,'2023-02-09 10:39:10',137.789727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16651,11,11,'2023-02-09 10:39:10',138.112719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16652,11,11,'2023-02-09 10:39:10',138.128721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16653,11,11,'2023-02-09 10:39:10',138.202720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16654,11,11,'2023-02-09 10:39:10',138.223993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16655,11,11,'2023-02-09 10:39:10',138.701722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16656,11,11,'2023-02-09 10:39:10',139.388722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16657,11,11,'2023-02-09 10:39:10',139.720726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16658,11,11,'2023-02-09 10:39:10',139.736719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16659,11,11,'2023-02-09 10:39:10',139.815727,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16660,11,11,'2023-02-09 10:39:10',139.835994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16661,11,11,'2023-02-09 10:39:10',140.314718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16662,11,11,'2023-02-09 10:39:10',140.841722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16663,11,11,'2023-02-09 10:39:10',141.128725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16664,11,11,'2023-02-09 10:39:10',141.144718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16665,11,11,'2023-02-09 10:39:10',141.214723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16666,11,11,'2023-02-09 10:39:10',141.235997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16667,11,11,'2023-02-09 10:39:10',141.713725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16668,11,11,'2023-02-09 10:39:10',142.414727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16669,11,11,'2023-02-09 10:39:10',142.736723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16670,11,11,'2023-02-09 10:39:10',142.752726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16671,11,11,'2023-02-09 10:39:10',142.827720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16672,11,11,'2023-02-09 10:39:10',142.848993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16673,11,11,'2023-02-09 10:39:10',143.326722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16674,11,11,'2023-02-09 10:39:10',144.013723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16675,11,11,'2023-02-09 10:39:10',144.264727,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16676,11,11,'2023-02-09 10:39:10',144.280720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16677,11,11,'2023-02-09 10:39:10',144.360723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16678,11,11,'2023-02-09 10:39:10',144.381001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16679,11,11,'2023-02-09 10:39:10',144.859725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16680,11,11,'2023-02-09 10:39:10',145.506724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16681,11,11,'2023-02-09 10:39:10',145.768722,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16682,11,11,'2023-02-09 10:39:10',145.784725,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16683,11,11,'2023-02-09 10:39:10',145.853725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16684,11,11,'2023-02-09 10:39:10',145.874002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16685,11,11,'2023-02-09 10:39:10',146.352726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16686,11,11,'2023-02-09 10:39:10',146.985724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16687,11,11,'2023-02-09 10:39:10',147.235723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16688,11,11,'2023-02-09 10:39:10',147.254723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16689,11,11,'2023-02-09 10:39:10',147.332725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16690,11,11,'2023-02-09 10:39:10',147.353998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16691,11,11,'2023-02-09 10:39:10',147.831726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16692,11,11,'2023-02-09 10:39:10',148.345725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16693,11,11,'2023-02-09 10:39:10',148.720718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16694,11,11,'2023-02-09 10:39:10',148.736720,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16695,11,11,'2023-02-09 10:39:10',148.811725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16696,11,11,'2023-02-09 10:39:10',148.832998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16697,11,11,'2023-02-09 10:39:10',149.310727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16698,11,11,'2023-02-09 10:39:10',149.824725,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16699,11,11,'2023-02-09 10:39:10',150.064726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16700,11,11,'2023-02-09 10:39:10',150.080718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16701,11,11,'2023-02-09 10:39:10',150.157725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16702,11,11,'2023-02-09 10:39:10',150.178998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16703,11,11,'2023-02-09 10:39:10',150.656726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16704,11,11,'2023-02-09 10:39:10',151.330722,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16705,11,11,'2023-02-09 10:39:10',151.584723,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16706,11,11,'2023-02-09 10:39:10',151.600726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16707,11,11,'2023-02-09 10:39:10',151.677722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16708,11,11,'2023-02-09 10:39:10',151.698000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16709,11,11,'2023-02-09 10:39:10',152.176724,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16710,11,11,'2023-02-09 10:39:10',152.823723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16711,11,11,'2023-02-09 10:39:10',153.104721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16712,11,11,'2023-02-09 10:39:10',153.120724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16713,11,11,'2023-02-09 10:39:10',153.196724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16714,11,11,'2023-02-09 10:39:10',153.217998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16715,11,11,'2023-02-09 10:39:10',153.695726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16716,11,11,'2023-02-09 10:39:10',154.356726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16717,11,11,'2023-02-09 10:39:10',154.624719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16718,11,11,'2023-02-09 10:39:10',154.640722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16719,11,11,'2023-02-09 10:39:10',154.715726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16720,11,11,'2023-02-09 10:39:10',154.737000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16721,11,11,'2023-02-09 10:39:10',155.214718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16722,11,11,'2023-02-09 10:39:10',155.849717,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16723,11,11,'2023-02-09 10:39:10',156.080726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16724,11,11,'2023-02-09 10:39:10',156.096719,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16725,11,11,'2023-02-09 10:39:10',156.169722,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16726,11,11,'2023-02-09 10:39:10',156.189999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16727,11,11,'2023-02-09 10:39:10',156.668723,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16728,11,11,'2023-02-09 10:39:10',157.341723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16729,11,11,'2023-02-09 10:39:10',157.600724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16730,11,11,'2023-02-09 10:39:10',157.616727,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16731,11,11,'2023-02-09 10:39:10',157.688724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16732,11,11,'2023-02-09 10:39:10',157.709997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16733,11,11,'2023-02-09 10:39:10',158.187725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16734,11,11,'2023-02-09 10:39:10',158.834724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16735,11,11,'2023-02-09 10:39:10',159.496720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16736,11,11,'2023-02-09 10:39:10',159.512723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16737,11,11,'2023-02-09 10:39:10',159.594718,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16738,11,11,'2023-02-09 10:39:10',159.614996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16739,11,11,'2023-02-09 10:39:10',160.093720,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16740,11,11,'2023-02-09 10:39:10',160.793726,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16741,11,11,'2023-02-09 10:39:10',161.024725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16742,11,11,'2023-02-09 10:39:10',161.040717,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16743,11,11,'2023-02-09 10:39:10',161.113720,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16744,11,11,'2023-02-09 10:39:10',161.134994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16745,11,11,'2023-02-09 10:39:10',161.612722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16746,11,11,'2023-02-09 10:39:10',162.206724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16747,11,11,'2023-02-09 10:39:10',162.488718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16748,11,11,'2023-02-09 10:39:10',162.504721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16749,11,11,'2023-02-09 10:39:10',162.579725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16750,11,11,'2023-02-09 10:39:10',162.600998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16751,11,11,'2023-02-09 10:39:10',163.078727,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16752,11,11,'2023-02-09 10:39:10',163.765718,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16753,11,11,'2023-02-09 10:39:10',164.008726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16754,11,11,'2023-02-09 10:39:10',164.024718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16755,11,11,'2023-02-09 10:39:10',164.098717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16756,11,11,'2023-02-09 10:39:10',164.120001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16757,11,11,'2023-02-09 10:39:10',164.597719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16758,11,11,'2023-02-09 10:39:10',165.165720,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16759,11,11,'2023-02-09 10:39:10',165.424721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16760,11,11,'2023-02-09 10:39:10',165.440724,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16761,11,11,'2023-02-09 10:39:10',165.512721,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16762,11,11,'2023-02-09 10:39:10',165.532998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16763,11,11,'2023-02-09 10:39:10',166.011722,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16764,11,11,'2023-02-09 10:39:10',166.671727,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16765,11,11,'2023-02-09 10:39:10',166.984720,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16766,11,11,'2023-02-09 10:39:10',167.000723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16767,11,11,'2023-02-09 10:39:10',167.071725,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16768,11,11,'2023-02-09 10:39:10',167.092998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16769,11,11,'2023-02-09 10:39:10',167.570726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16770,11,11,'2023-02-09 10:39:10',168.111721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16771,11,11,'2023-02-09 10:39:10',168.416718,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16772,11,11,'2023-02-09 10:39:10',168.432721,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16773,11,11,'2023-02-09 10:39:10',168.510723,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16774,11,11,'2023-02-09 10:39:10',168.531996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16775,11,11,'2023-02-09 10:39:10',169.009725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16776,11,11,'2023-02-09 10:39:10',169.657719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16777,11,11,'2023-02-09 10:39:10',169.952719,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16778,11,11,'2023-02-09 10:39:10',169.968722,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16779,11,11,'2023-02-09 10:39:10',170.043726,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16780,11,11,'2023-02-09 10:39:10',170.064999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16781,11,11,'2023-02-09 10:39:10',170.542718,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16782,11,11,'2023-02-09 10:39:10',171.069721,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16783,11,11,'2023-02-09 10:39:10',171.344725,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16784,11,11,'2023-02-09 10:39:10',171.360718,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16785,11,11,'2023-02-09 10:39:10',171.429717,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16786,11,11,'2023-02-09 10:39:10',171.449995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16787,11,11,'2023-02-09 10:39:10',171.928719,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16788,11,11,'2023-02-09 10:39:10',172.588723,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16789,11,11,'2023-02-09 10:39:10',172.840724,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16790,11,11,'2023-02-09 10:39:10',172.856726,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16791,11,11,'2023-02-09 10:39:10',172.935724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16792,11,11,'2023-02-09 10:39:10',172.956997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16793,11,11,'2023-02-09 10:39:10',173.434726,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16794,11,11,'2023-02-09 10:39:10',174.055724,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16795,11,11,'2023-02-09 10:39:10',174.296721,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16796,11,11,'2023-02-09 10:39:10',174.312723,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16797,11,11,'2023-02-09 10:39:10',174.388724,0.000000,NULL,'nan',NULL,NULL,'stm+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16798,11,11,'2023-02-09 10:39:10',174.409001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16799,11,11,'2023-02-09 10:39:10',174.887725,0.000000,NULL,'nan',NULL,NULL,'ITI+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16800,11,11,'2023-02-09 10:39:10',175.414719,0.000000,NULL,'nan',NULL,NULL,'fix+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16801,11,11,'2023-02-09 10:39:10',175.712726,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16802,11,11,'2023-02-09 10:39:10',175.755997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16803,12,12,'2023-02-09 10:46:31',1.205003,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16804,12,12,'2023-02-09 10:46:31',1.386625,0.000000,NULL,'2',NULL,NULL,'SESS',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16805,12,12,'2023-02-09 10:46:31',1.435619,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16806,12,12,'2023-02-09 10:46:31',1.437620,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16807,12,12,'2023-02-09 10:46:31',1.438616,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16808,12,12,'2023-02-09 10:46:31',1.439622,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16809,12,12,'2023-02-09 10:46:31',2.537000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16810,12,12,'2023-02-09 10:46:31',3.668626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16811,12,12,'2023-02-09 10:46:31',5.476997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16812,12,12,'2023-02-09 10:46:31',9.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16813,12,12,'2023-02-09 10:46:31',9.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16814,12,12,'2023-02-09 10:46:31',9.677626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16815,12,12,'2023-02-09 10:46:31',9.696626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16816,12,12,'2023-02-09 10:46:31',10.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16817,12,12,'2023-02-09 10:46:31',10.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16818,12,12,'2023-02-09 10:46:31',10.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16819,12,12,'2023-02-09 10:46:31',10.710621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16820,12,12,'2023-02-09 10:46:31',11.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16821,12,12,'2023-02-09 10:46:31',11.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16822,12,12,'2023-02-09 10:46:31',11.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16823,12,12,'2023-02-09 10:46:31',11.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16824,12,12,'2023-02-09 10:46:31',12.145617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16825,12,12,'2023-02-09 10:46:31',12.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16826,12,12,'2023-02-09 10:46:31',12.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16827,12,12,'2023-02-09 10:46:31',12.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16828,12,12,'2023-02-09 10:46:31',13.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16829,12,12,'2023-02-09 10:46:31',13.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16830,12,12,'2023-02-09 10:46:31',13.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16831,12,12,'2023-02-09 10:46:31',13.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16832,12,12,'2023-02-09 10:46:31',14.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16833,12,12,'2023-02-09 10:46:31',14.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16834,12,12,'2023-02-09 10:46:31',14.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16835,12,12,'2023-02-09 10:46:31',14.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16836,12,12,'2023-02-09 10:46:31',15.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16837,12,12,'2023-02-09 10:46:31',15.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16838,12,12,'2023-02-09 10:46:31',15.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16839,12,12,'2023-02-09 10:46:31',15.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16840,12,12,'2023-02-09 10:46:31',16.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16841,12,12,'2023-02-09 10:46:31',16.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16842,12,12,'2023-02-09 10:46:31',16.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16843,12,12,'2023-02-09 10:46:31',16.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16844,12,12,'2023-02-09 10:46:31',17.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16845,12,12,'2023-02-09 10:46:31',17.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16846,12,12,'2023-02-09 10:46:31',17.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16847,12,12,'2023-02-09 10:46:31',17.848623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16848,12,12,'2023-02-09 10:46:31',18.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16849,12,12,'2023-02-09 10:46:31',18.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16850,12,12,'2023-02-09 10:46:31',18.854623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16851,12,12,'2023-02-09 10:46:31',18.865616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16852,12,12,'2023-02-09 10:46:31',19.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16853,12,12,'2023-02-09 10:46:31',19.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16854,12,12,'2023-02-09 10:46:31',19.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16855,12,12,'2023-02-09 10:46:31',19.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16856,12,12,'2023-02-09 10:46:31',20.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16857,12,12,'2023-02-09 10:46:31',20.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16858,12,12,'2023-02-09 10:46:31',20.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16859,12,12,'2023-02-09 10:46:31',20.909621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16860,12,12,'2023-02-09 10:46:31',21.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16861,12,12,'2023-02-09 10:46:31',21.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16862,12,12,'2023-02-09 10:46:31',21.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16863,12,12,'2023-02-09 10:46:31',21.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16864,12,12,'2023-02-09 10:46:31',22.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16865,12,12,'2023-02-09 10:46:31',22.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16866,12,12,'2023-02-09 10:46:31',22.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16867,12,12,'2023-02-09 10:46:31',22.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16868,12,12,'2023-02-09 10:46:31',23.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16869,12,12,'2023-02-09 10:46:31',23.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16870,12,12,'2023-02-09 10:46:31',23.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16871,12,12,'2023-02-09 10:46:31',23.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16872,12,12,'2023-02-09 10:46:31',24.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16873,12,12,'2023-02-09 10:46:31',24.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16874,12,12,'2023-02-09 10:46:31',24.977623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16875,12,12,'2023-02-09 10:46:31',24.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16876,12,12,'2023-02-09 10:46:31',25.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16877,12,12,'2023-02-09 10:46:31',25.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16878,12,12,'2023-02-09 10:46:31',25.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16879,12,12,'2023-02-09 10:46:31',26.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16880,12,12,'2023-02-09 10:46:31',26.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16881,12,12,'2023-02-09 10:46:31',26.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16882,12,12,'2023-02-09 10:46:31',27.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16883,12,12,'2023-02-09 10:46:31',27.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16884,12,12,'2023-02-09 10:46:31',27.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16885,12,12,'2023-02-09 10:46:31',27.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16886,12,12,'2023-02-09 10:46:31',28.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16887,12,12,'2023-02-09 10:46:31',28.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16888,12,12,'2023-02-09 10:46:31',28.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16889,12,12,'2023-02-09 10:46:31',28.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16890,12,12,'2023-02-09 10:46:31',29.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16891,12,12,'2023-02-09 10:46:31',29.068619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16892,12,12,'2023-02-09 10:46:31',29.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16893,12,12,'2023-02-09 10:46:31',29.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16894,12,12,'2023-02-09 10:46:31',30.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16895,12,12,'2023-02-09 10:46:31',30.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16896,12,12,'2023-02-09 10:46:31',30.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16897,12,12,'2023-02-09 10:46:31',30.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16898,12,12,'2023-02-09 10:46:31',31.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16899,12,12,'2023-02-09 10:46:31',31.105622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16900,12,12,'2023-02-09 10:46:31',31.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16901,12,12,'2023-02-09 10:46:31',31.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16902,12,12,'2023-02-09 10:46:31',32.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16903,12,12,'2023-02-09 10:46:31',32.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16904,12,12,'2023-02-09 10:46:31',32.545617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16905,12,12,'2023-02-09 10:46:31',32.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16906,12,12,'2023-02-09 10:46:31',33.138623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16907,12,12,'2023-02-09 10:46:31',33.149627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16908,12,12,'2023-02-09 10:46:31',33.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16909,12,12,'2023-02-09 10:46:31',33.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16910,12,12,'2023-02-09 10:46:31',34.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16911,12,12,'2023-02-09 10:46:31',34.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16912,12,12,'2023-02-09 10:46:31',34.585618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16913,12,12,'2023-02-09 10:46:31',34.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16914,12,12,'2023-02-09 10:46:31',35.177618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16915,12,12,'2023-02-09 10:46:31',35.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16916,12,12,'2023-02-09 10:46:31',35.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16917,12,12,'2023-02-09 10:46:31',35.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16918,12,12,'2023-02-09 10:46:31',36.194621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16919,12,12,'2023-02-09 10:46:31',36.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16920,12,12,'2023-02-09 10:46:31',36.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16921,12,12,'2023-02-09 10:46:31',36.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16922,12,12,'2023-02-09 10:46:31',37.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16923,12,12,'2023-02-09 10:46:31',37.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16924,12,12,'2023-02-09 10:46:31',37.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16925,12,12,'2023-02-09 10:46:31',37.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16926,12,12,'2023-02-09 10:46:31',38.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16927,12,12,'2023-02-09 10:46:31',38.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16928,12,12,'2023-02-09 10:46:31',38.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16929,12,12,'2023-02-09 10:46:31',38.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16930,12,12,'2023-02-09 10:46:31',39.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16931,12,12,'2023-02-09 10:46:31',39.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16932,12,12,'2023-02-09 10:46:31',39.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16933,12,12,'2023-02-09 10:46:31',39.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16934,12,12,'2023-02-09 10:46:31',40.278616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16935,12,12,'2023-02-09 10:46:31',40.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16936,12,12,'2023-02-09 10:46:31',40.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16937,12,12,'2023-02-09 10:46:31',40.738994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16938,12,12,'2023-02-09 10:46:31',41.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16939,12,12,'2023-02-09 10:46:31',41.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16940,12,12,'2023-02-09 10:46:31',41.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16941,12,12,'2023-02-09 10:46:31',41.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16942,12,12,'2023-02-09 10:46:31',42.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16943,12,12,'2023-02-09 10:46:31',42.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16944,12,12,'2023-02-09 10:46:31',42.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16945,12,12,'2023-02-09 10:46:31',42.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16946,12,12,'2023-02-09 10:46:31',43.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16947,12,12,'2023-02-09 10:46:31',43.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16948,12,12,'2023-02-09 10:46:31',43.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16949,12,12,'2023-02-09 10:46:31',43.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16950,12,12,'2023-02-09 10:46:31',44.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16951,12,12,'2023-02-09 10:46:31',44.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16952,12,12,'2023-02-09 10:46:31',44.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16953,12,12,'2023-02-09 10:46:31',44.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16954,12,12,'2023-02-09 10:46:31',45.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16955,12,12,'2023-02-09 10:46:31',45.389623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16956,12,12,'2023-02-09 10:46:31',45.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16957,12,12,'2023-02-09 10:46:31',45.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16958,12,12,'2023-02-09 10:46:31',46.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16959,12,12,'2023-02-09 10:46:31',46.406626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16960,12,12,'2023-02-09 10:46:31',46.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16961,12,12,'2023-02-09 10:46:31',46.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16962,12,12,'2023-02-09 10:46:31',47.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16963,12,12,'2023-02-09 10:46:31',47.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16964,12,12,'2023-02-09 10:46:31',47.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16965,12,12,'2023-02-09 10:46:31',47.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16966,12,12,'2023-02-09 10:46:31',48.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16967,12,12,'2023-02-09 10:46:31',48.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16968,12,12,'2023-02-09 10:46:31',48.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16969,12,12,'2023-02-09 10:46:31',48.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16970,12,12,'2023-02-09 10:46:31',49.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16971,12,12,'2023-02-09 10:46:31',49.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16972,12,12,'2023-02-09 10:46:31',49.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16973,12,12,'2023-02-09 10:46:31',49.940996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16974,12,12,'2023-02-09 10:46:31',50.478621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16975,12,12,'2023-02-09 10:46:31',50.489625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16976,12,12,'2023-02-09 10:46:31',50.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16977,12,12,'2023-02-09 10:46:31',50.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16978,12,12,'2023-02-09 10:46:31',51.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16979,12,12,'2023-02-09 10:46:31',51.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16980,12,12,'2023-02-09 10:46:31',51.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16981,12,12,'2023-02-09 10:46:31',51.958999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16982,12,12,'2023-02-09 10:46:31',52.517616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16983,12,12,'2023-02-09 10:46:31',52.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16984,12,12,'2023-02-09 10:46:31',52.945617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16985,12,12,'2023-02-09 10:46:31',52.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16986,12,12,'2023-02-09 10:46:31',53.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16987,12,12,'2023-02-09 10:46:31',53.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16988,12,12,'2023-02-09 10:46:31',53.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16989,12,12,'2023-02-09 10:46:31',53.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16990,12,12,'2023-02-09 10:46:31',54.556622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16991,12,12,'2023-02-09 10:46:31',54.567625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16992,12,12,'2023-02-09 10:46:31',54.985618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16993,12,12,'2023-02-09 10:46:31',55.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16994,12,12,'2023-02-09 10:46:31',55.577618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16995,12,12,'2023-02-09 10:46:31',55.588622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16996,12,12,'2023-02-09 10:46:31',56.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16997,12,12,'2023-02-09 10:46:31',56.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16998,12,12,'2023-02-09 10:46:31',56.595617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (16999,12,12,'2023-02-09 10:46:31',56.606621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17000,12,12,'2023-02-09 10:46:31',57.025619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17001,12,12,'2023-02-09 10:46:31',57.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17002,12,12,'2023-02-09 10:46:31',57.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17003,12,12,'2023-02-09 10:46:31',57.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17004,12,12,'2023-02-09 10:46:31',58.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17005,12,12,'2023-02-09 10:46:31',58.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17006,12,12,'2023-02-09 10:46:31',58.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17007,12,12,'2023-02-09 10:46:31',58.645626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17008,12,12,'2023-02-09 10:46:31',59.065620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17009,12,12,'2023-02-09 10:46:31',59.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17010,12,12,'2023-02-09 10:46:31',59.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17011,12,12,'2023-02-09 10:46:31',59.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17012,12,12,'2023-02-09 10:46:31',60.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17013,12,12,'2023-02-09 10:46:31',60.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17014,12,12,'2023-02-09 10:46:31',60.678626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17015,12,12,'2023-02-09 10:46:31',60.689620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17016,12,12,'2023-02-09 10:46:31',61.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17017,12,12,'2023-02-09 10:46:31',61.161001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17018,12,12,'2023-02-09 10:46:31',61.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17019,12,12,'2023-02-09 10:46:31',61.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17020,12,12,'2023-02-09 10:46:31',62.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17021,12,12,'2023-02-09 10:46:31',62.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17022,12,12,'2023-02-09 10:46:31',62.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17023,12,12,'2023-02-09 10:46:31',62.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17024,12,12,'2023-02-09 10:46:31',63.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17025,12,12,'2023-02-09 10:46:31',63.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17026,12,12,'2023-02-09 10:46:31',63.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17027,12,12,'2023-02-09 10:46:31',63.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17028,12,12,'2023-02-09 10:46:31',64.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17029,12,12,'2023-02-09 10:46:31',64.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17030,12,12,'2023-02-09 10:46:31',64.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17031,12,12,'2023-02-09 10:46:31',64.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17032,12,12,'2023-02-09 10:46:31',65.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17033,12,12,'2023-02-09 10:46:31',65.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17034,12,12,'2023-02-09 10:46:31',65.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17035,12,12,'2023-02-09 10:46:31',65.785619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17036,12,12,'2023-02-09 10:46:31',66.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17037,12,12,'2023-02-09 10:46:31',66.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17038,12,12,'2023-02-09 10:46:31',66.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17039,12,12,'2023-02-09 10:46:31',66.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17040,12,12,'2023-02-09 10:46:31',67.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17041,12,12,'2023-02-09 10:46:31',67.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17042,12,12,'2023-02-09 10:46:31',67.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17043,12,12,'2023-02-09 10:46:31',67.829624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17044,12,12,'2023-02-09 10:46:31',68.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17045,12,12,'2023-02-09 10:46:31',68.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17046,12,12,'2023-02-09 10:46:31',68.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17047,12,12,'2023-02-09 10:46:31',68.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17048,12,12,'2023-02-09 10:46:31',69.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17049,12,12,'2023-02-09 10:46:31',69.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17050,12,12,'2023-02-09 10:46:31',69.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17051,12,12,'2023-02-09 10:46:31',69.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17052,12,12,'2023-02-09 10:46:31',70.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17053,12,12,'2023-02-09 10:46:31',70.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17054,12,12,'2023-02-09 10:46:31',70.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17055,12,12,'2023-02-09 10:46:31',70.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17056,12,12,'2023-02-09 10:46:31',71.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17057,12,12,'2023-02-09 10:46:31',71.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17058,12,12,'2023-02-09 10:46:31',71.896620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17059,12,12,'2023-02-09 10:46:31',71.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17060,12,12,'2023-02-09 10:46:31',72.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17061,12,12,'2023-02-09 10:46:31',72.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17062,12,12,'2023-02-09 10:46:31',72.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17063,12,12,'2023-02-09 10:46:31',72.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17064,12,12,'2023-02-09 10:46:31',73.345617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17065,12,12,'2023-02-09 10:46:31',73.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17066,12,12,'2023-02-09 10:46:31',73.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17067,12,12,'2023-02-09 10:46:31',73.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17068,12,12,'2023-02-09 10:46:31',74.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17069,12,12,'2023-02-09 10:46:31',74.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17070,12,12,'2023-02-09 10:46:31',74.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17071,12,12,'2023-02-09 10:46:31',74.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17072,12,12,'2023-02-09 10:46:31',75.385618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17073,12,12,'2023-02-09 10:46:31',75.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17074,12,12,'2023-02-09 10:46:31',75.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17075,12,12,'2023-02-09 10:46:31',75.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17076,12,12,'2023-02-09 10:46:31',76.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17077,12,12,'2023-02-09 10:46:31',76.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17078,12,12,'2023-02-09 10:46:31',76.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17079,12,12,'2023-02-09 10:46:31',77.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17080,12,12,'2023-02-09 10:46:31',77.425619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17081,12,12,'2023-02-09 10:46:31',77.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17082,12,12,'2023-02-09 10:46:31',78.018625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17083,12,12,'2023-02-09 10:46:31',78.029618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17084,12,12,'2023-02-09 10:46:31',78.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17085,12,12,'2023-02-09 10:46:31',78.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17086,12,12,'2023-02-09 10:46:31',79.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17087,12,12,'2023-02-09 10:46:31',79.047617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17088,12,12,'2023-02-09 10:46:31',79.465620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17089,12,12,'2023-02-09 10:46:31',79.521000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17090,12,12,'2023-02-09 10:46:31',80.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17091,12,12,'2023-02-09 10:46:31',80.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17092,12,12,'2023-02-09 10:46:31',80.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17093,12,12,'2023-02-09 10:46:31',80.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17094,12,12,'2023-02-09 10:46:31',81.075619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17095,12,12,'2023-02-09 10:46:31',81.086623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17096,12,12,'2023-02-09 10:46:31',81.505621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17097,12,12,'2023-02-09 10:46:31',81.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17098,12,12,'2023-02-09 10:46:31',82.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17099,12,12,'2023-02-09 10:46:31',82.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17100,12,12,'2023-02-09 10:46:31',82.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17101,12,12,'2023-02-09 10:46:31',82.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17102,12,12,'2023-02-09 10:46:31',83.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17103,12,12,'2023-02-09 10:46:31',83.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17104,12,12,'2023-02-09 10:46:31',83.545622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17105,12,12,'2023-02-09 10:46:31',83.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17106,12,12,'2023-02-09 10:46:31',84.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17107,12,12,'2023-02-09 10:46:31',84.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17108,12,12,'2023-02-09 10:46:31',84.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17109,12,12,'2023-02-09 10:46:31',84.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17110,12,12,'2023-02-09 10:46:31',85.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17111,12,12,'2023-02-09 10:46:31',85.168626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17112,12,12,'2023-02-09 10:46:31',85.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17113,12,12,'2023-02-09 10:46:31',85.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17114,12,12,'2023-02-09 10:46:31',86.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17115,12,12,'2023-02-09 10:46:31',86.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17116,12,12,'2023-02-09 10:46:31',86.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17117,12,12,'2023-02-09 10:46:31',86.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17118,12,12,'2023-02-09 10:46:31',87.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17119,12,12,'2023-02-09 10:46:31',87.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17120,12,12,'2023-02-09 10:46:31',87.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17121,12,12,'2023-02-09 10:46:31',87.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17122,12,12,'2023-02-09 10:46:31',88.214617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17123,12,12,'2023-02-09 10:46:31',88.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17124,12,12,'2023-02-09 10:46:31',88.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17125,12,12,'2023-02-09 10:46:31',88.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17126,12,12,'2023-02-09 10:46:31',89.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17127,12,12,'2023-02-09 10:46:31',89.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17128,12,12,'2023-02-09 10:46:31',89.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17129,12,12,'2023-02-09 10:46:31',89.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17130,12,12,'2023-02-09 10:46:31',90.254618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17131,12,12,'2023-02-09 10:46:31',90.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17132,12,12,'2023-02-09 10:46:31',90.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17133,12,12,'2023-02-09 10:46:31',90.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17134,12,12,'2023-02-09 10:46:31',91.275624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17135,12,12,'2023-02-09 10:46:31',91.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17136,12,12,'2023-02-09 10:46:31',91.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17137,12,12,'2023-02-09 10:46:31',91.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17138,12,12,'2023-02-09 10:46:31',92.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17139,12,12,'2023-02-09 10:46:31',92.309626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17140,12,12,'2023-02-09 10:46:31',92.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17141,12,12,'2023-02-09 10:46:31',92.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17142,12,12,'2023-02-09 10:46:31',93.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17143,12,12,'2023-02-09 10:46:31',93.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17144,12,12,'2023-02-09 10:46:31',93.745617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17145,12,12,'2023-02-09 10:46:31',93.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17146,12,12,'2023-02-09 10:46:31',94.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17147,12,12,'2023-02-09 10:46:31',94.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17148,12,12,'2023-02-09 10:46:31',94.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17149,12,12,'2023-02-09 10:46:31',94.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17150,12,12,'2023-02-09 10:46:31',95.358623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17151,12,12,'2023-02-09 10:46:31',95.369617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17152,12,12,'2023-02-09 10:46:31',95.785618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17153,12,12,'2023-02-09 10:46:31',95.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17154,12,12,'2023-02-09 10:46:31',96.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17155,12,12,'2023-02-09 10:46:31',96.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17156,12,12,'2023-02-09 10:46:31',96.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17157,12,12,'2023-02-09 10:46:31',96.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17158,12,12,'2023-02-09 10:46:31',97.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17159,12,12,'2023-02-09 10:46:31',97.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17160,12,12,'2023-02-09 10:46:31',97.825619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17161,12,12,'2023-02-09 10:46:31',97.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17162,12,12,'2023-02-09 10:46:31',98.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17163,12,12,'2023-02-09 10:46:31',98.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17164,12,12,'2023-02-09 10:46:31',98.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17165,12,12,'2023-02-09 10:46:31',98.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17166,12,12,'2023-02-09 10:46:31',99.436624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17167,12,12,'2023-02-09 10:46:31',99.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17168,12,12,'2023-02-09 10:46:31',99.865620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17169,12,12,'2023-02-09 10:46:31',99.921000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17170,12,12,'2023-02-09 10:46:31',100.454623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17171,12,12,'2023-02-09 10:46:31',100.465616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17172,12,12,'2023-02-09 10:46:31',100.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17173,12,12,'2023-02-09 10:46:31',100.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17174,12,12,'2023-02-09 10:46:31',101.475619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17175,12,12,'2023-02-09 10:46:31',101.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17176,12,12,'2023-02-09 10:46:31',101.905621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17177,12,12,'2023-02-09 10:46:31',101.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17178,12,12,'2023-02-09 10:46:31',102.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17179,12,12,'2023-02-09 10:46:31',102.508625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17180,12,12,'2023-02-09 10:46:31',102.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17181,12,12,'2023-02-09 10:46:31',102.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17182,12,12,'2023-02-09 10:46:31',103.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17183,12,12,'2023-02-09 10:46:31',103.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17184,12,12,'2023-02-09 10:46:31',103.945622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17185,12,12,'2023-02-09 10:46:31',103.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17186,12,12,'2023-02-09 10:46:31',104.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17187,12,12,'2023-02-09 10:46:31',104.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17188,12,12,'2023-02-09 10:46:31',104.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17189,12,12,'2023-02-09 10:46:31',104.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17190,12,12,'2023-02-09 10:46:31',105.558618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17191,12,12,'2023-02-09 10:46:31',105.569622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17192,12,12,'2023-02-09 10:46:31',105.985623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17193,12,12,'2023-02-09 10:46:31',106.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17194,12,12,'2023-02-09 10:46:31',106.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17195,12,12,'2023-02-09 10:46:31',106.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17196,12,12,'2023-02-09 10:46:31',107.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17197,12,12,'2023-02-09 10:46:31',107.026001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17198,12,12,'2023-02-09 10:46:31',107.594626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17199,12,12,'2023-02-09 10:46:31',107.605620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17200,12,12,'2023-02-09 10:46:31',108.025624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17201,12,12,'2023-02-09 10:46:31',108.080994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17202,12,12,'2023-02-09 10:46:31',108.615622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17203,12,12,'2023-02-09 10:46:31',108.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17204,12,12,'2023-02-09 10:46:31',109.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17205,12,12,'2023-02-09 10:46:31',109.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17206,12,12,'2023-02-09 10:46:31',109.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17207,12,12,'2023-02-09 10:46:31',109.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17208,12,12,'2023-02-09 10:46:31',110.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17209,12,12,'2023-02-09 10:46:31',110.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17210,12,12,'2023-02-09 10:46:31',110.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17211,12,12,'2023-02-09 10:46:31',110.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17212,12,12,'2023-02-09 10:46:31',111.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17213,12,12,'2023-02-09 10:46:31',111.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17214,12,12,'2023-02-09 10:46:31',111.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17215,12,12,'2023-02-09 10:46:31',111.685622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17216,12,12,'2023-02-09 10:46:31',112.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17217,12,12,'2023-02-09 10:46:31',112.138999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17218,12,12,'2023-02-09 10:46:31',112.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17219,12,12,'2023-02-09 10:46:31',112.711617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17220,12,12,'2023-02-09 10:46:31',113.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17221,12,12,'2023-02-09 10:46:31',113.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17222,12,12,'2023-02-09 10:46:31',113.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17223,12,12,'2023-02-09 10:46:31',113.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17224,12,12,'2023-02-09 10:46:31',114.145627,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17225,12,12,'2023-02-09 10:46:31',114.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17226,12,12,'2023-02-09 10:46:31',114.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17227,12,12,'2023-02-09 10:46:31',114.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17228,12,12,'2023-02-09 10:46:31',115.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17229,12,12,'2023-02-09 10:46:31',115.220998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17230,12,12,'2023-02-09 10:46:31',115.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17231,12,12,'2023-02-09 10:46:31',115.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17232,12,12,'2023-02-09 10:46:31',116.185618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17233,12,12,'2023-02-09 10:46:31',116.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17234,12,12,'2023-02-09 10:46:31',116.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17235,12,12,'2023-02-09 10:46:31',116.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17236,12,12,'2023-02-09 10:46:31',117.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17237,12,12,'2023-02-09 10:46:31',117.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17238,12,12,'2023-02-09 10:46:31',117.794621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17239,12,12,'2023-02-09 10:46:31',117.805625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17240,12,12,'2023-02-09 10:46:31',118.225619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17241,12,12,'2023-02-09 10:46:31',118.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17242,12,12,'2023-02-09 10:46:31',118.815617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17243,12,12,'2023-02-09 10:46:31',118.826621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17244,12,12,'2023-02-09 10:46:31',119.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17245,12,12,'2023-02-09 10:46:31',119.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17246,12,12,'2023-02-09 10:46:31',119.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17247,12,12,'2023-02-09 10:46:31',119.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17248,12,12,'2023-02-09 10:46:31',120.265620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17249,12,12,'2023-02-09 10:46:31',120.321000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17250,12,12,'2023-02-09 10:46:31',120.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17251,12,12,'2023-02-09 10:46:31',120.865626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17252,12,12,'2023-02-09 10:46:31',121.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17253,12,12,'2023-02-09 10:46:31',121.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17254,12,12,'2023-02-09 10:46:31',121.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17255,12,12,'2023-02-09 10:46:31',121.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17256,12,12,'2023-02-09 10:46:31',122.305621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17257,12,12,'2023-02-09 10:46:31',122.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17258,12,12,'2023-02-09 10:46:31',122.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17259,12,12,'2023-02-09 10:46:31',122.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17260,12,12,'2023-02-09 10:46:31',123.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17261,12,12,'2023-02-09 10:46:31',123.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17262,12,12,'2023-02-09 10:46:31',123.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17263,12,12,'2023-02-09 10:46:31',123.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17264,12,12,'2023-02-09 10:46:31',124.345622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17265,12,12,'2023-02-09 10:46:31',124.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17266,12,12,'2023-02-09 10:46:31',124.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17267,12,12,'2023-02-09 10:46:31',124.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17268,12,12,'2023-02-09 10:46:31',125.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17269,12,12,'2023-02-09 10:46:31',125.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17270,12,12,'2023-02-09 10:46:31',125.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17271,12,12,'2023-02-09 10:46:31',125.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17272,12,12,'2023-02-09 10:46:31',126.385623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17273,12,12,'2023-02-09 10:46:31',126.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17274,12,12,'2023-02-09 10:46:31',126.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17275,12,12,'2023-02-09 10:46:31',126.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17276,12,12,'2023-02-09 10:46:31',127.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17277,12,12,'2023-02-09 10:46:31',127.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17278,12,12,'2023-02-09 10:46:31',127.994626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17279,12,12,'2023-02-09 10:46:31',128.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17280,12,12,'2023-02-09 10:46:31',128.425624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17281,12,12,'2023-02-09 10:46:31',128.480994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17282,12,12,'2023-02-09 10:46:31',129.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17283,12,12,'2023-02-09 10:46:31',129.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17284,12,12,'2023-02-09 10:46:31',129.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17285,12,12,'2023-02-09 10:46:31',129.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17286,12,12,'2023-02-09 10:46:31',130.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17287,12,12,'2023-02-09 10:46:31',130.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17288,12,12,'2023-02-09 10:46:31',130.465625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17289,12,12,'2023-02-09 10:46:31',130.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17290,12,12,'2023-02-09 10:46:31',131.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17291,12,12,'2023-02-09 10:46:31',131.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17292,12,12,'2023-02-09 10:46:31',131.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17293,12,12,'2023-02-09 10:46:31',131.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17294,12,12,'2023-02-09 10:46:31',132.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17295,12,12,'2023-02-09 10:46:31',132.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17296,12,12,'2023-02-09 10:46:31',132.505626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17297,12,12,'2023-02-09 10:46:31',132.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17298,12,12,'2023-02-09 10:46:31',133.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17299,12,12,'2023-02-09 10:46:31',133.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17300,12,12,'2023-02-09 10:46:31',133.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17301,12,12,'2023-02-09 10:46:31',133.581993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17302,12,12,'2023-02-09 10:46:31',134.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17303,12,12,'2023-02-09 10:46:31',134.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17304,12,12,'2023-02-09 10:46:31',134.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17305,12,12,'2023-02-09 10:46:31',134.565995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17306,12,12,'2023-02-09 10:46:31',135.134620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17307,12,12,'2023-02-09 10:46:31',135.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17308,12,12,'2023-02-09 10:46:31',135.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17309,12,12,'2023-02-09 10:46:31',135.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17310,12,12,'2023-02-09 10:46:31',136.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17311,12,12,'2023-02-09 10:46:31',136.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17312,12,12,'2023-02-09 10:46:31',136.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17313,12,12,'2023-02-09 10:46:31',136.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17314,12,12,'2023-02-09 10:46:31',137.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17315,12,12,'2023-02-09 10:46:31',137.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17316,12,12,'2023-02-09 10:46:31',137.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17317,12,12,'2023-02-09 10:46:31',137.660999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17318,12,12,'2023-02-09 10:46:31',138.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17319,12,12,'2023-02-09 10:46:31',138.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17320,12,12,'2023-02-09 10:46:31',138.625619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17321,12,12,'2023-02-09 10:46:31',138.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17322,12,12,'2023-02-09 10:46:31',139.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17323,12,12,'2023-02-09 10:46:31',139.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17324,12,12,'2023-02-09 10:46:31',139.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17325,12,12,'2023-02-09 10:46:31',139.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17326,12,12,'2023-02-09 10:46:31',140.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17327,12,12,'2023-02-09 10:46:31',140.248623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17328,12,12,'2023-02-09 10:46:31',140.665620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17329,12,12,'2023-02-09 10:46:31',140.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17330,12,12,'2023-02-09 10:46:31',141.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17331,12,12,'2023-02-09 10:46:31',141.266622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17332,12,12,'2023-02-09 10:46:31',141.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17333,12,12,'2023-02-09 10:46:31',141.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17334,12,12,'2023-02-09 10:46:31',142.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17335,12,12,'2023-02-09 10:46:31',142.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17336,12,12,'2023-02-09 10:46:31',142.705621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17337,12,12,'2023-02-09 10:46:31',142.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17338,12,12,'2023-02-09 10:46:31',143.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17339,12,12,'2023-02-09 10:46:31',143.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17340,12,12,'2023-02-09 10:46:31',143.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17341,12,12,'2023-02-09 10:46:31',143.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17342,12,12,'2023-02-09 10:46:31',144.317621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17343,12,12,'2023-02-09 10:46:31',144.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17344,12,12,'2023-02-09 10:46:31',144.745622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17345,12,12,'2023-02-09 10:46:31',144.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17346,12,12,'2023-02-09 10:46:31',145.334625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17347,12,12,'2023-02-09 10:46:31',145.345618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17348,12,12,'2023-02-09 10:46:31',145.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17349,12,12,'2023-02-09 10:46:31',145.820993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17350,12,12,'2023-02-09 10:46:31',146.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17351,12,12,'2023-02-09 10:46:31',146.367620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17352,12,12,'2023-02-09 10:46:31',146.785623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17353,12,12,'2023-02-09 10:46:31',146.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17354,12,12,'2023-02-09 10:46:31',147.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17355,12,12,'2023-02-09 10:46:31',147.388617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17356,12,12,'2023-02-09 10:46:31',147.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17357,12,12,'2023-02-09 10:46:31',147.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17358,12,12,'2023-02-09 10:46:31',148.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17359,12,12,'2023-02-09 10:46:31',148.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17360,12,12,'2023-02-09 10:46:31',148.825624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17361,12,12,'2023-02-09 10:46:31',148.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17362,12,12,'2023-02-09 10:46:31',149.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17363,12,12,'2023-02-09 10:46:31',149.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17364,12,12,'2023-02-09 10:46:31',149.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17365,12,12,'2023-02-09 10:46:31',149.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17366,12,12,'2023-02-09 10:46:31',150.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17367,12,12,'2023-02-09 10:46:31',150.446617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17368,12,12,'2023-02-09 10:46:31',150.865625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17369,12,12,'2023-02-09 10:46:31',150.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17370,12,12,'2023-02-09 10:46:31',151.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17371,12,12,'2023-02-09 10:46:31',151.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17372,12,12,'2023-02-09 10:46:31',151.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17373,12,12,'2023-02-09 10:46:31',151.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17374,12,12,'2023-02-09 10:46:31',152.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17375,12,12,'2023-02-09 10:46:31',152.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17376,12,12,'2023-02-09 10:46:31',152.905626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17377,12,12,'2023-02-09 10:46:31',152.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17378,12,12,'2023-02-09 10:46:31',153.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17379,12,12,'2023-02-09 10:46:31',153.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17380,12,12,'2023-02-09 10:46:31',153.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17381,12,12,'2023-02-09 10:46:31',153.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17382,12,12,'2023-02-09 10:46:31',154.517626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17383,12,12,'2023-02-09 10:46:31',154.528620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17384,12,12,'2023-02-09 10:46:31',154.945627,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17385,12,12,'2023-02-09 10:46:31',154.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17386,12,12,'2023-02-09 10:46:31',155.534620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17387,12,12,'2023-02-09 10:46:31',155.545623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17388,12,12,'2023-02-09 10:46:31',155.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17389,12,12,'2023-02-09 10:46:31',155.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17390,12,12,'2023-02-09 10:46:31',156.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17391,12,12,'2023-02-09 10:46:31',156.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17392,12,12,'2023-02-09 10:46:31',156.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17393,12,12,'2023-02-09 10:46:31',157.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17394,12,12,'2023-02-09 10:46:31',157.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17395,12,12,'2023-02-09 10:46:31',157.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17396,12,12,'2023-02-09 10:46:31',158.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17397,12,12,'2023-02-09 10:46:31',158.060999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17398,12,12,'2023-02-09 10:46:31',158.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17399,12,12,'2023-02-09 10:46:31',158.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17400,12,12,'2023-02-09 10:46:31',159.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17401,12,12,'2023-02-09 10:46:31',159.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17402,12,12,'2023-02-09 10:46:31',159.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17403,12,12,'2023-02-09 10:46:31',159.630624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17404,12,12,'2023-02-09 10:46:31',160.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17405,12,12,'2023-02-09 10:46:31',160.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17406,12,12,'2023-02-09 10:46:31',160.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17407,12,12,'2023-02-09 10:46:31',160.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17408,12,12,'2023-02-09 10:46:31',161.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17409,12,12,'2023-02-09 10:46:31',161.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17410,12,12,'2023-02-09 10:46:31',161.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17411,12,12,'2023-02-09 10:46:31',161.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17412,12,12,'2023-02-09 10:46:31',162.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17413,12,12,'2023-02-09 10:46:31',162.105998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17414,12,12,'2023-02-09 10:46:31',162.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17415,12,12,'2023-02-09 10:46:31',162.687618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17416,12,12,'2023-02-09 10:46:31',163.105621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17417,12,12,'2023-02-09 10:46:31',163.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17418,12,12,'2023-02-09 10:46:31',163.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17419,12,12,'2023-02-09 10:46:31',163.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17420,12,12,'2023-02-09 10:46:31',164.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17421,12,12,'2023-02-09 10:46:31',164.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17422,12,12,'2023-02-09 10:46:31',164.717621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17423,12,12,'2023-02-09 10:46:31',164.728625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17424,12,12,'2023-02-09 10:46:31',165.145622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17425,12,12,'2023-02-09 10:46:31',165.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17426,12,12,'2023-02-09 10:46:31',165.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17427,12,12,'2023-02-09 10:46:31',165.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17428,12,12,'2023-02-09 10:46:31',166.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17429,12,12,'2023-02-09 10:46:31',166.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17430,12,12,'2023-02-09 10:46:31',166.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17431,12,12,'2023-02-09 10:46:31',166.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17432,12,12,'2023-02-09 10:46:31',167.185623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17433,12,12,'2023-02-09 10:46:31',167.206001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17434,12,12,'2023-02-09 10:46:31',167.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17435,12,12,'2023-02-09 10:46:31',167.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17436,12,12,'2023-02-09 10:46:31',168.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17437,12,12,'2023-02-09 10:46:31',168.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17438,12,12,'2023-02-09 10:46:31',168.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17439,12,12,'2023-02-09 10:46:31',168.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17440,12,12,'2023-02-09 10:46:31',169.225624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17441,12,12,'2023-02-09 10:46:31',169.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17442,12,12,'2023-02-09 10:46:31',169.818620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17443,12,12,'2023-02-09 10:46:31',169.830619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17444,12,12,'2023-02-09 10:46:31',170.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17445,12,12,'2023-02-09 10:46:31',170.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17446,12,12,'2023-02-09 10:46:31',170.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17447,12,12,'2023-02-09 10:46:31',170.846617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17448,12,12,'2023-02-09 10:46:31',171.265625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17449,12,12,'2023-02-09 10:46:31',171.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17450,12,12,'2023-02-09 10:46:31',171.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17451,12,12,'2023-02-09 10:46:31',171.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17452,12,12,'2023-02-09 10:46:31',172.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17453,12,12,'2023-02-09 10:46:31',172.318998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17454,12,12,'2023-02-09 10:46:31',172.878621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17455,12,12,'2023-02-09 10:46:31',172.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17456,12,12,'2023-02-09 10:46:31',173.305626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17457,12,12,'2023-02-09 10:46:31',173.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17458,12,12,'2023-02-09 10:46:31',173.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17459,12,12,'2023-02-09 10:46:31',173.907624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17460,12,12,'2023-02-09 10:46:31',174.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17461,12,12,'2023-02-09 10:46:31',174.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17462,12,12,'2023-02-09 10:46:31',174.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17463,12,12,'2023-02-09 10:46:31',174.928620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17464,12,12,'2023-02-09 10:46:31',175.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17465,12,12,'2023-02-09 10:46:31',175.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17466,12,12,'2023-02-09 10:46:31',175.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17467,12,12,'2023-02-09 10:46:31',175.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17468,12,12,'2023-02-09 10:46:31',176.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17469,12,12,'2023-02-09 10:46:31',176.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17470,12,12,'2023-02-09 10:46:31',176.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17471,12,12,'2023-02-09 10:46:31',176.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17472,12,12,'2023-02-09 10:46:31',177.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17473,12,12,'2023-02-09 10:46:31',177.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17474,12,12,'2023-02-09 10:46:31',177.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17475,12,12,'2023-02-09 10:46:31',177.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17476,12,12,'2023-02-09 10:46:31',178.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17477,12,12,'2023-02-09 10:46:31',178.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17478,12,12,'2023-02-09 10:46:31',178.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17479,12,12,'2023-02-09 10:46:31',179.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17480,12,12,'2023-02-09 10:46:31',179.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17481,12,12,'2023-02-09 10:46:31',179.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17482,12,12,'2023-02-09 10:46:31',180.014622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17483,12,12,'2023-02-09 10:46:31',180.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17484,12,12,'2023-02-09 10:46:31',180.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17485,12,12,'2023-02-09 10:46:31',180.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17486,12,12,'2023-02-09 10:46:31',181.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17487,12,12,'2023-02-09 10:46:31',181.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17488,12,12,'2023-02-09 10:46:31',181.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17489,12,12,'2023-02-09 10:46:31',181.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17490,12,12,'2023-02-09 10:46:31',182.057620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17491,12,12,'2023-02-09 10:46:31',182.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17492,12,12,'2023-02-09 10:46:31',182.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17493,12,12,'2023-02-09 10:46:31',182.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17494,12,12,'2023-02-09 10:46:31',183.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17495,12,12,'2023-02-09 10:46:31',183.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17496,12,12,'2023-02-09 10:46:31',183.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17497,12,12,'2023-02-09 10:46:31',183.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17498,12,12,'2023-02-09 10:46:31',184.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17499,12,12,'2023-02-09 10:46:31',184.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17500,12,12,'2023-02-09 10:46:31',184.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17501,12,12,'2023-02-09 10:46:31',184.581002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17502,12,12,'2023-02-09 10:46:31',185.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17503,12,12,'2023-02-09 10:46:31',185.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17504,12,12,'2023-02-09 10:46:31',185.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17505,12,12,'2023-02-09 10:46:31',185.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17506,12,12,'2023-02-09 10:46:31',186.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17507,12,12,'2023-02-09 10:46:31',186.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17508,12,12,'2023-02-09 10:46:31',186.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17509,12,12,'2023-02-09 10:46:31',186.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17510,12,12,'2023-02-09 10:46:31',187.158618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17511,12,12,'2023-02-09 10:46:31',187.169622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17512,12,12,'2023-02-09 10:46:31',187.585623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17513,12,12,'2023-02-09 10:46:31',187.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17514,12,12,'2023-02-09 10:46:31',188.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17515,12,12,'2023-02-09 10:46:31',188.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17516,12,12,'2023-02-09 10:46:31',188.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17517,12,12,'2023-02-09 10:46:31',188.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17518,12,12,'2023-02-09 10:46:31',189.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17519,12,12,'2023-02-09 10:46:31',189.208617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17520,12,12,'2023-02-09 10:46:31',189.625624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17521,12,12,'2023-02-09 10:46:31',189.646002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17522,12,12,'2023-02-09 10:46:31',190.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17523,12,12,'2023-02-09 10:46:31',190.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17524,12,12,'2023-02-09 10:46:31',190.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17525,12,12,'2023-02-09 10:46:31',190.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17526,12,12,'2023-02-09 10:46:31',191.236619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17527,12,12,'2023-02-09 10:46:31',191.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17528,12,12,'2023-02-09 10:46:31',191.665625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17529,12,12,'2023-02-09 10:46:31',191.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17530,12,12,'2023-02-09 10:46:31',192.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17531,12,12,'2023-02-09 10:46:31',192.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17532,12,12,'2023-02-09 10:46:31',192.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17533,12,12,'2023-02-09 10:46:31',192.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17534,12,12,'2023-02-09 10:46:31',193.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17535,12,12,'2023-02-09 10:46:31',193.286618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17536,12,12,'2023-02-09 10:46:31',193.705626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17537,12,12,'2023-02-09 10:46:31',193.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17538,12,12,'2023-02-09 10:46:31',194.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17539,12,12,'2023-02-09 10:46:31',194.308620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17540,12,12,'2023-02-09 10:46:31',194.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17541,12,12,'2023-02-09 10:46:31',194.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17542,12,12,'2023-02-09 10:46:31',195.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17543,12,12,'2023-02-09 10:46:31',195.326619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17544,12,12,'2023-02-09 10:46:31',195.745627,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17545,12,12,'2023-02-09 10:46:31',195.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17546,12,12,'2023-02-09 10:46:31',196.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17547,12,12,'2023-02-09 10:46:31',196.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17548,12,12,'2023-02-09 10:46:31',196.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17549,12,12,'2023-02-09 10:46:31',196.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17550,12,12,'2023-02-09 10:46:31',197.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17551,12,12,'2023-02-09 10:46:31',197.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17552,12,12,'2023-02-09 10:46:31',197.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17553,12,12,'2023-02-09 10:46:31',197.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17554,12,12,'2023-02-09 10:46:31',198.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17555,12,12,'2023-02-09 10:46:31',198.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17556,12,12,'2023-02-09 10:46:31',198.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17557,12,12,'2023-02-09 10:46:31',198.860999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17558,12,12,'2023-02-09 10:46:31',199.397618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17559,12,12,'2023-02-09 10:46:31',199.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17560,12,12,'2023-02-09 10:46:31',199.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17561,12,12,'2023-02-09 10:46:31',199.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17562,12,12,'2023-02-09 10:46:31',200.415617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17563,12,12,'2023-02-09 10:46:31',200.426621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17564,12,12,'2023-02-09 10:46:31',200.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17565,12,12,'2023-02-09 10:46:31',200.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17566,12,12,'2023-02-09 10:46:31',201.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17567,12,12,'2023-02-09 10:46:31',201.447617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17568,12,12,'2023-02-09 10:46:31',201.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17569,12,12,'2023-02-09 10:46:31',201.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17570,12,12,'2023-02-09 10:46:31',202.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17571,12,12,'2023-02-09 10:46:31',202.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17572,12,12,'2023-02-09 10:46:31',202.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17573,12,12,'2023-02-09 10:46:31',202.905002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17574,12,12,'2023-02-09 10:46:31',203.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17575,12,12,'2023-02-09 10:46:31',203.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17576,12,12,'2023-02-09 10:46:31',203.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17577,12,12,'2023-02-09 10:46:31',203.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17578,12,12,'2023-02-09 10:46:31',204.498617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17579,12,12,'2023-02-09 10:46:31',204.509620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17580,12,12,'2023-02-09 10:46:31',204.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17581,12,12,'2023-02-09 10:46:31',204.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17582,12,12,'2023-02-09 10:46:31',205.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17583,12,12,'2023-02-09 10:46:31',205.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17584,12,12,'2023-02-09 10:46:31',205.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17585,12,12,'2023-02-09 10:46:31',206.001002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17586,12,12,'2023-02-09 10:46:31',206.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17587,12,12,'2023-02-09 10:46:31',206.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17588,12,12,'2023-02-09 10:46:31',206.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17589,12,12,'2023-02-09 10:46:31',206.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17590,12,12,'2023-02-09 10:46:31',207.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17591,12,12,'2023-02-09 10:46:31',207.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17592,12,12,'2023-02-09 10:46:31',207.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17593,12,12,'2023-02-09 10:46:31',208.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17594,12,12,'2023-02-09 10:46:31',208.576617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17595,12,12,'2023-02-09 10:46:31',208.587621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17596,12,12,'2023-02-09 10:46:31',209.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17597,12,12,'2023-02-09 10:46:31',209.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17598,12,12,'2023-02-09 10:46:31',209.595622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17599,12,12,'2023-02-09 10:46:31',209.606626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17600,12,12,'2023-02-09 10:46:31',210.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17601,12,12,'2023-02-09 10:46:31',210.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17602,12,12,'2023-02-09 10:46:31',210.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17603,12,12,'2023-02-09 10:46:31',210.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17604,12,12,'2023-02-09 10:46:31',211.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17605,12,12,'2023-02-09 10:46:31',211.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17606,12,12,'2023-02-09 10:46:31',211.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17607,12,12,'2023-02-09 10:46:31',211.649624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17608,12,12,'2023-02-09 10:46:31',212.065625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17609,12,12,'2023-02-09 10:46:31',212.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17610,12,12,'2023-02-09 10:46:31',212.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17611,12,12,'2023-02-09 10:46:31',212.665621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17612,12,12,'2023-02-09 10:46:31',213.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17613,12,12,'2023-02-09 10:46:31',213.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17614,12,12,'2023-02-09 10:46:31',213.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17615,12,12,'2023-02-09 10:46:31',213.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17616,12,12,'2023-02-09 10:46:31',214.105626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17617,12,12,'2023-02-09 10:46:31',214.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17618,12,12,'2023-02-09 10:46:31',214.698622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17619,12,12,'2023-02-09 10:46:31',214.709625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17620,12,12,'2023-02-09 10:46:31',215.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17621,12,12,'2023-02-09 10:46:31',215.180997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17622,12,12,'2023-02-09 10:46:31',215.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17623,12,12,'2023-02-09 10:46:31',215.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17624,12,12,'2023-02-09 10:46:31',216.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17625,12,12,'2023-02-09 10:46:31',216.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17626,12,12,'2023-02-09 10:46:31',216.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17627,12,12,'2023-02-09 10:46:31',216.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17628,12,12,'2023-02-09 10:46:31',217.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17629,12,12,'2023-02-09 10:46:31',217.185995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17630,12,12,'2023-02-09 10:46:31',217.755626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17631,12,12,'2023-02-09 10:46:31',217.766620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17632,12,12,'2023-02-09 10:46:31',218.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17633,12,12,'2023-02-09 10:46:31',218.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17634,12,12,'2023-02-09 10:46:31',218.776622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17635,12,12,'2023-02-09 10:46:31',218.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17636,12,12,'2023-02-09 10:46:31',219.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17637,12,12,'2023-02-09 10:46:31',219.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17638,12,12,'2023-02-09 10:46:31',219.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17639,12,12,'2023-02-09 10:46:31',219.806621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17640,12,12,'2023-02-09 10:46:31',220.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17641,12,12,'2023-02-09 10:46:31',220.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17642,12,12,'2023-02-09 10:46:31',220.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17643,12,12,'2023-02-09 10:46:31',220.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17644,12,12,'2023-02-09 10:46:31',221.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17645,12,12,'2023-02-09 10:46:31',221.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17646,12,12,'2023-02-09 10:46:31',221.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17647,12,12,'2023-02-09 10:46:31',221.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17648,12,12,'2023-02-09 10:46:31',222.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17649,12,12,'2023-02-09 10:46:31',222.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17650,12,12,'2023-02-09 10:46:31',222.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17651,12,12,'2023-02-09 10:46:31',222.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17652,12,12,'2023-02-09 10:46:31',223.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17653,12,12,'2023-02-09 10:46:31',223.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17654,12,12,'2023-02-09 10:46:31',223.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17655,12,12,'2023-02-09 10:46:31',223.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17656,12,12,'2023-02-09 10:46:31',224.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17657,12,12,'2023-02-09 10:46:31',224.361001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17658,12,12,'2023-02-09 10:46:31',224.898617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17659,12,12,'2023-02-09 10:46:31',224.909620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17660,12,12,'2023-02-09 10:46:31',225.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17661,12,12,'2023-02-09 10:46:31',225.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17662,12,12,'2023-02-09 10:46:31',225.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17663,12,12,'2023-02-09 10:46:31',225.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17664,12,12,'2023-02-09 10:46:31',226.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17665,12,12,'2023-02-09 10:46:31',226.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17666,12,12,'2023-02-09 10:46:31',226.934625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17667,12,12,'2023-02-09 10:46:31',226.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17668,12,12,'2023-02-09 10:46:31',227.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17669,12,12,'2023-02-09 10:46:31',227.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17670,12,12,'2023-02-09 10:46:31',227.955621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17671,12,12,'2023-02-09 10:46:31',227.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17672,12,12,'2023-02-09 10:46:31',228.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17673,12,12,'2023-02-09 10:46:31',228.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17674,12,12,'2023-02-09 10:46:31',228.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17675,12,12,'2023-02-09 10:46:31',228.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17676,12,12,'2023-02-09 10:46:31',229.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17677,12,12,'2023-02-09 10:46:31',229.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17678,12,12,'2023-02-09 10:46:31',229.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17679,12,12,'2023-02-09 10:46:31',230.005620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17680,12,12,'2023-02-09 10:46:31',230.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17681,12,12,'2023-02-09 10:46:31',230.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17682,12,12,'2023-02-09 10:46:31',231.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17683,12,12,'2023-02-09 10:46:31',231.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17684,12,12,'2023-02-09 10:46:31',231.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17685,12,12,'2023-02-09 10:46:31',231.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17686,12,12,'2023-02-09 10:46:31',232.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17687,12,12,'2023-02-09 10:46:31',232.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17688,12,12,'2023-02-09 10:46:31',232.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17689,12,12,'2023-02-09 10:46:31',232.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17690,12,12,'2023-02-09 10:46:31',233.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17691,12,12,'2023-02-09 10:46:31',233.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17692,12,12,'2023-02-09 10:46:31',233.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17693,12,12,'2023-02-09 10:46:31',233.505993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17694,12,12,'2023-02-09 10:46:31',234.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17695,12,12,'2023-02-09 10:46:31',234.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17696,12,12,'2023-02-09 10:46:31',234.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17697,12,12,'2023-02-09 10:46:31',234.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17698,12,12,'2023-02-09 10:46:31',235.095624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17699,12,12,'2023-02-09 10:46:31',235.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17700,12,12,'2023-02-09 10:46:31',235.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17701,12,12,'2023-02-09 10:46:31',235.580997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17702,12,12,'2023-02-09 10:46:31',236.116621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17703,12,12,'2023-02-09 10:46:31',236.127624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17704,12,12,'2023-02-09 10:46:31',236.545627,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17705,12,12,'2023-02-09 10:46:31',236.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17706,12,12,'2023-02-09 10:46:31',237.134619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17707,12,12,'2023-02-09 10:46:31',237.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17708,12,12,'2023-02-09 10:46:31',237.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17709,12,12,'2023-02-09 10:46:31',237.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17710,12,12,'2023-02-09 10:46:31',238.155626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17711,12,12,'2023-02-09 10:46:31',238.166620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17712,12,12,'2023-02-09 10:46:31',238.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17713,12,12,'2023-02-09 10:46:31',238.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17714,12,12,'2023-02-09 10:46:31',239.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17715,12,12,'2023-02-09 10:46:31',239.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17716,12,12,'2023-02-09 10:46:31',239.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17717,12,12,'2023-02-09 10:46:31',239.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17718,12,12,'2023-02-09 10:46:31',240.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17719,12,12,'2023-02-09 10:46:31',240.206621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17720,12,12,'2023-02-09 10:46:31',240.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17721,12,12,'2023-02-09 10:46:31',240.680999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17722,12,12,'2023-02-09 10:46:31',241.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17723,12,12,'2023-02-09 10:46:31',241.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17724,12,12,'2023-02-09 10:46:31',241.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17725,12,12,'2023-02-09 10:46:31',241.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17726,12,12,'2023-02-09 10:46:31',242.238625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17727,12,12,'2023-02-09 10:46:31',242.249619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17728,12,12,'2023-02-09 10:46:31',242.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17729,12,12,'2023-02-09 10:46:31',242.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17730,12,12,'2023-02-09 10:46:31',243.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17731,12,12,'2023-02-09 10:46:31',243.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17732,12,12,'2023-02-09 10:46:31',243.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17733,12,12,'2023-02-09 10:46:31',243.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17734,12,12,'2023-02-09 10:46:31',244.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17735,12,12,'2023-02-09 10:46:31',244.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17736,12,12,'2023-02-09 10:46:31',244.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17737,12,12,'2023-02-09 10:46:31',244.725999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17738,12,12,'2023-02-09 10:46:31',245.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17739,12,12,'2023-02-09 10:46:31',245.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17740,12,12,'2023-02-09 10:46:31',245.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17741,12,12,'2023-02-09 10:46:31',245.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17742,12,12,'2023-02-09 10:46:31',246.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17743,12,12,'2023-02-09 10:46:31',246.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17744,12,12,'2023-02-09 10:46:31',246.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17745,12,12,'2023-02-09 10:46:31',246.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17746,12,12,'2023-02-09 10:46:31',247.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17747,12,12,'2023-02-09 10:46:31',247.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17748,12,12,'2023-02-09 10:46:31',247.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17749,12,12,'2023-02-09 10:46:31',247.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17750,12,12,'2023-02-09 10:46:31',248.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17751,12,12,'2023-02-09 10:46:31',248.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17752,12,12,'2023-02-09 10:46:31',248.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17753,12,12,'2023-02-09 10:46:31',248.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17754,12,12,'2023-02-09 10:46:31',249.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17755,12,12,'2023-02-09 10:46:31',249.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17756,12,12,'2023-02-09 10:46:31',249.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17757,12,12,'2023-02-09 10:46:31',249.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17758,12,12,'2023-02-09 10:46:31',250.399625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17759,12,12,'2023-02-09 10:46:31',250.413626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17760,12,12,'2023-02-09 10:46:31',250.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17761,12,12,'2023-02-09 10:46:31',250.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17762,12,12,'2023-02-09 10:46:31',251.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17763,12,12,'2023-02-09 10:46:31',251.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17764,12,12,'2023-02-09 10:46:31',251.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17765,12,12,'2023-02-09 10:46:31',251.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17766,12,12,'2023-02-09 10:46:31',252.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17767,12,12,'2023-02-09 10:46:31',252.446627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17768,12,12,'2023-02-09 10:46:31',252.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17769,12,12,'2023-02-09 10:46:31',252.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17770,12,12,'2023-02-09 10:46:31',253.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17771,12,12,'2023-02-09 10:46:31',253.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17772,12,12,'2023-02-09 10:46:31',253.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17773,12,12,'2023-02-09 10:46:31',253.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17774,12,12,'2023-02-09 10:46:31',254.474618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17775,12,12,'2023-02-09 10:46:31',254.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17776,12,12,'2023-02-09 10:46:31',254.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17777,12,12,'2023-02-09 10:46:31',254.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17778,12,12,'2023-02-09 10:46:31',255.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17779,12,12,'2023-02-09 10:46:31',255.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17780,12,12,'2023-02-09 10:46:31',255.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17781,12,12,'2023-02-09 10:46:31',255.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17782,12,12,'2023-02-09 10:46:31',256.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17783,12,12,'2023-02-09 10:46:31',256.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17784,12,12,'2023-02-09 10:46:31',256.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17785,12,12,'2023-02-09 10:46:31',257.000997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17786,12,12,'2023-02-09 10:46:31',257.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17787,12,12,'2023-02-09 10:46:31',257.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17788,12,12,'2023-02-09 10:46:31',257.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17789,12,12,'2023-02-09 10:46:31',257.984999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17790,12,12,'2023-02-09 10:46:31',258.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17791,12,12,'2023-02-09 10:46:31',258.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17792,12,12,'2023-02-09 10:46:31',258.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17793,12,12,'2023-02-09 10:46:32',259.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17794,12,12,'2023-02-09 10:46:32',259.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17795,12,12,'2023-02-09 10:46:32',259.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17796,12,12,'2023-02-09 10:46:32',260.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17797,12,12,'2023-02-09 10:46:32',260.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17798,12,12,'2023-02-09 10:46:32',260.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17799,12,12,'2023-02-09 10:46:32',260.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17800,12,12,'2023-02-09 10:46:32',261.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17801,12,12,'2023-02-09 10:46:32',261.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17802,12,12,'2023-02-09 10:46:32',261.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17803,12,12,'2023-02-09 10:46:32',261.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17804,12,12,'2023-02-09 10:46:32',262.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17805,12,12,'2023-02-09 10:46:32',262.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17806,12,12,'2023-02-09 10:46:32',262.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17807,12,12,'2023-02-09 10:46:32',262.646622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17808,12,12,'2023-02-09 10:46:32',263.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17809,12,12,'2023-02-09 10:46:32',263.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17810,12,12,'2023-02-09 10:46:32',263.657620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17811,12,12,'2023-02-09 10:46:32',263.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17812,12,12,'2023-02-09 10:46:32',264.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17813,12,12,'2023-02-09 10:46:32',264.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17814,12,12,'2023-02-09 10:46:32',264.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17815,12,12,'2023-02-09 10:46:32',264.686623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17816,12,12,'2023-02-09 10:46:32',265.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17817,12,12,'2023-02-09 10:46:32',265.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17818,12,12,'2023-02-09 10:46:32',265.696625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17819,12,12,'2023-02-09 10:46:32',265.707619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17820,12,12,'2023-02-09 10:46:32',266.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17821,12,12,'2023-02-09 10:46:32',266.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17822,12,12,'2023-02-09 10:46:32',266.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17823,12,12,'2023-02-09 10:46:32',266.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17824,12,12,'2023-02-09 10:46:32',267.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17825,12,12,'2023-02-09 10:46:32',267.201002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17826,12,12,'2023-02-09 10:46:32',267.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17827,12,12,'2023-02-09 10:46:32',267.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17828,12,12,'2023-02-09 10:46:32',268.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17829,12,12,'2023-02-09 10:46:32',268.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17830,12,12,'2023-02-09 10:46:32',268.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17831,12,12,'2023-02-09 10:46:32',268.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17832,12,12,'2023-02-09 10:46:32',269.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17833,12,12,'2023-02-09 10:46:32',269.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17834,12,12,'2023-02-09 10:46:32',269.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17835,12,12,'2023-02-09 10:46:32',269.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17836,12,12,'2023-02-09 10:46:32',270.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17837,12,12,'2023-02-09 10:46:32',270.260994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17838,12,12,'2023-02-09 10:46:32',270.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17839,12,12,'2023-02-09 10:46:32',270.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17840,12,12,'2023-02-09 10:46:32',271.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17841,12,12,'2023-02-09 10:46:32',271.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17842,12,12,'2023-02-09 10:46:32',271.814616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17843,12,12,'2023-02-09 10:46:32',271.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17844,12,12,'2023-02-09 10:46:32',272.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17845,12,12,'2023-02-09 10:46:32',272.278997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17846,12,12,'2023-02-09 10:46:32',272.835623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17847,12,12,'2023-02-09 10:46:32',272.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17848,12,12,'2023-02-09 10:46:32',273.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17849,12,12,'2023-02-09 10:46:32',273.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17850,12,12,'2023-02-09 10:46:32',273.857625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17851,12,12,'2023-02-09 10:46:32',273.868619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17852,12,12,'2023-02-09 10:46:32',274.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17853,12,12,'2023-02-09 10:46:32',274.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17854,12,12,'2023-02-09 10:46:32',274.874618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17855,12,12,'2023-02-09 10:46:32',274.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17856,12,12,'2023-02-09 10:46:32',275.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17857,12,12,'2023-02-09 10:46:32',275.360996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17858,12,12,'2023-02-09 10:46:32',275.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17859,12,12,'2023-02-09 10:46:32',275.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17860,12,12,'2023-02-09 10:46:32',276.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17861,12,12,'2023-02-09 10:46:32',276.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17862,12,12,'2023-02-09 10:46:32',276.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17863,12,12,'2023-02-09 10:46:32',276.929626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17864,12,12,'2023-02-09 10:46:32',277.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17865,12,12,'2023-02-09 10:46:32',277.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17866,12,12,'2023-02-09 10:46:32',277.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17867,12,12,'2023-02-09 10:46:32',277.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17868,12,12,'2023-02-09 10:46:32',278.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17869,12,12,'2023-02-09 10:46:32',278.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17870,12,12,'2023-02-09 10:46:32',278.954620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17871,12,12,'2023-02-09 10:46:32',278.965624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17872,12,12,'2023-02-09 10:46:32',279.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17873,12,12,'2023-02-09 10:46:32',279.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17874,12,12,'2023-02-09 10:46:32',279.975626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17875,12,12,'2023-02-09 10:46:32',279.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17876,12,12,'2023-02-09 10:46:32',280.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17877,12,12,'2023-02-09 10:46:32',280.460999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17878,12,12,'2023-02-09 10:46:32',280.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17879,12,12,'2023-02-09 10:46:32',281.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17880,12,12,'2023-02-09 10:46:32',281.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17881,12,12,'2023-02-09 10:46:32',281.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17882,12,12,'2023-02-09 10:46:32',282.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17883,12,12,'2023-02-09 10:46:32',282.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17884,12,12,'2023-02-09 10:46:32',282.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17885,12,12,'2023-02-09 10:46:32',282.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17886,12,12,'2023-02-09 10:46:32',283.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17887,12,12,'2023-02-09 10:46:32',283.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17888,12,12,'2023-02-09 10:46:32',283.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17889,12,12,'2023-02-09 10:46:32',283.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17890,12,12,'2023-02-09 10:46:32',284.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17891,12,12,'2023-02-09 10:46:32',284.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17892,12,12,'2023-02-09 10:46:32',284.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17893,12,12,'2023-02-09 10:46:32',284.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17894,12,12,'2023-02-09 10:46:32',285.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17895,12,12,'2023-02-09 10:46:32',285.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17896,12,12,'2023-02-09 10:46:32',285.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17897,12,12,'2023-02-09 10:46:32',285.525003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17898,12,12,'2023-02-09 10:46:32',286.096625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17899,12,12,'2023-02-09 10:46:32',286.107619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17900,12,12,'2023-02-09 10:46:32',286.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17901,12,12,'2023-02-09 10:46:32',286.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17902,12,12,'2023-02-09 10:46:32',287.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17903,12,12,'2023-02-09 10:46:32',287.126624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17904,12,12,'2023-02-09 10:46:32',287.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17905,12,12,'2023-02-09 10:46:32',287.601998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17906,12,12,'2023-02-09 10:46:32',288.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17907,12,12,'2023-02-09 10:46:32',288.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17908,12,12,'2023-02-09 10:46:32',288.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17909,12,12,'2023-02-09 10:46:32',288.598995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17910,12,12,'2023-02-09 10:46:32',289.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17911,12,12,'2023-02-09 10:46:32',289.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17912,12,12,'2023-02-09 10:46:32',289.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17913,12,12,'2023-02-09 10:46:32',289.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17914,12,12,'2023-02-09 10:46:32',290.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17915,12,12,'2023-02-09 10:46:32',290.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17916,12,12,'2023-02-09 10:46:32',290.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17917,12,12,'2023-02-09 10:46:32',290.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17918,12,12,'2023-02-09 10:46:32',291.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17919,12,12,'2023-02-09 10:46:32',291.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17920,12,12,'2023-02-09 10:46:32',291.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17921,12,12,'2023-02-09 10:46:32',291.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17922,12,12,'2023-02-09 10:46:32',292.214627,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17923,12,12,'2023-02-09 10:46:32',292.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17924,12,12,'2023-02-09 10:46:32',292.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17925,12,12,'2023-02-09 10:46:32',292.700995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17926,12,12,'2023-02-09 10:46:32',293.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17927,12,12,'2023-02-09 10:46:32',293.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17928,12,12,'2023-02-09 10:46:32',293.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17929,12,12,'2023-02-09 10:46:32',293.698998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17930,12,12,'2023-02-09 10:46:32',294.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17931,12,12,'2023-02-09 10:46:32',294.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17932,12,12,'2023-02-09 10:46:32',294.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17933,12,12,'2023-02-09 10:46:32',294.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17934,12,12,'2023-02-09 10:46:32',295.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17935,12,12,'2023-02-09 10:46:32',295.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17936,12,12,'2023-02-09 10:46:32',295.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17937,12,12,'2023-02-09 10:46:32',295.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17938,12,12,'2023-02-09 10:46:32',296.298622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17939,12,12,'2023-02-09 10:46:32',296.309625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17940,12,12,'2023-02-09 10:46:32',296.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17941,12,12,'2023-02-09 10:46:32',296.744998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17942,12,12,'2023-02-09 10:46:32',297.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17943,12,12,'2023-02-09 10:46:32',297.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17944,12,12,'2023-02-09 10:46:32',297.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17945,12,12,'2023-02-09 10:46:32',297.800997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17946,12,12,'2023-02-09 10:46:32',298.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17947,12,12,'2023-02-09 10:46:32',298.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17948,12,12,'2023-02-09 10:46:32',298.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17949,12,12,'2023-02-09 10:46:32',298.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17950,12,12,'2023-02-09 10:46:32',299.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17951,12,12,'2023-02-09 10:46:32',299.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17952,12,12,'2023-02-09 10:46:32',299.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17953,12,12,'2023-02-09 10:46:32',299.805996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17954,12,12,'2023-02-09 10:46:32',300.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17955,12,12,'2023-02-09 10:46:32',300.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17956,12,12,'2023-02-09 10:46:32',300.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17957,12,12,'2023-02-09 10:46:32',300.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17958,12,12,'2023-02-09 10:46:32',301.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17959,12,12,'2023-02-09 10:46:32',301.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17960,12,12,'2023-02-09 10:46:32',301.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17961,12,12,'2023-02-09 10:46:32',301.880999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17962,12,12,'2023-02-09 10:46:32',302.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17963,12,12,'2023-02-09 10:46:32',302.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17964,12,12,'2023-02-09 10:46:32',302.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17965,12,12,'2023-02-09 10:46:32',302.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17966,12,12,'2023-02-09 10:46:32',303.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17967,12,12,'2023-02-09 10:46:32',303.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17968,12,12,'2023-02-09 10:46:32',303.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17969,12,12,'2023-02-09 10:46:32',303.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17970,12,12,'2023-02-09 10:46:32',304.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17971,12,12,'2023-02-09 10:46:32',304.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17972,12,12,'2023-02-09 10:46:32',304.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17973,12,12,'2023-02-09 10:46:32',304.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17974,12,12,'2023-02-09 10:46:32',305.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17975,12,12,'2023-02-09 10:46:32',305.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17976,12,12,'2023-02-09 10:46:32',305.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17977,12,12,'2023-02-09 10:46:32',305.924993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17978,12,12,'2023-02-09 10:46:32',306.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17979,12,12,'2023-02-09 10:46:32',306.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17980,12,12,'2023-02-09 10:46:32',306.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17981,12,12,'2023-02-09 10:46:32',306.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17982,12,12,'2023-02-09 10:46:32',307.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17983,12,12,'2023-02-09 10:46:32',307.526624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17984,12,12,'2023-02-09 10:46:32',307.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17985,12,12,'2023-02-09 10:46:32',307.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17986,12,12,'2023-02-09 10:46:32',308.537622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17987,12,12,'2023-02-09 10:46:32',308.548626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17988,12,12,'2023-02-09 10:46:32',308.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17989,12,12,'2023-02-09 10:46:32',309.020993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17990,12,12,'2023-02-09 10:46:32',309.554625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17991,12,12,'2023-02-09 10:46:32',309.565619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17992,12,12,'2023-02-09 10:46:32',309.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17993,12,12,'2023-02-09 10:46:32',310.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17994,12,12,'2023-02-09 10:46:32',310.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17995,12,12,'2023-02-09 10:46:32',310.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17996,12,12,'2023-02-09 10:46:32',311.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17997,12,12,'2023-02-09 10:46:32',311.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17998,12,12,'2023-02-09 10:46:32',311.597623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (17999,12,12,'2023-02-09 10:46:32',311.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18000,12,12,'2023-02-09 10:46:32',312.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18001,12,12,'2023-02-09 10:46:32',312.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18002,12,12,'2023-02-09 10:46:32',312.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18003,12,12,'2023-02-09 10:46:32',312.626626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18004,12,12,'2023-02-09 10:46:32',313.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18005,12,12,'2023-02-09 10:46:32',313.064996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18006,12,12,'2023-02-09 10:46:32',313.638620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18007,12,12,'2023-02-09 10:46:32',313.654623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18008,12,12,'2023-02-09 10:46:32',314.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18009,12,12,'2023-02-09 10:46:32',314.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18010,12,12,'2023-02-09 10:46:32',314.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18011,12,12,'2023-02-09 10:46:32',314.667623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18012,12,12,'2023-02-09 10:46:32',315.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18013,12,12,'2023-02-09 10:46:32',315.142002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18014,12,12,'2023-02-09 10:46:32',315.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18015,12,12,'2023-02-09 10:46:32',315.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18016,12,12,'2023-02-09 10:46:32',316.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18017,12,12,'2023-02-09 10:46:32',316.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18018,12,12,'2023-02-09 10:46:32',316.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18019,12,12,'2023-02-09 10:46:32',316.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18020,12,12,'2023-02-09 10:46:32',317.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18021,12,12,'2023-02-09 10:46:32',317.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18022,12,12,'2023-02-09 10:46:32',317.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18023,12,12,'2023-02-09 10:46:32',317.731617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18024,12,12,'2023-02-09 10:46:32',318.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18025,12,12,'2023-02-09 10:46:32',318.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18026,12,12,'2023-02-09 10:46:32',318.737617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18027,12,12,'2023-02-09 10:46:32',318.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18028,12,12,'2023-02-09 10:46:32',319.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18029,12,12,'2023-02-09 10:46:32',319.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18030,12,12,'2023-02-09 10:46:32',319.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18031,12,12,'2023-02-09 10:46:32',319.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18032,12,12,'2023-02-09 10:46:32',320.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18033,12,12,'2023-02-09 10:46:32',320.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18034,12,12,'2023-02-09 10:46:32',320.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18035,12,12,'2023-02-09 10:46:32',320.787626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18036,12,12,'2023-02-09 10:46:32',321.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18037,12,12,'2023-02-09 10:46:32',321.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18038,12,12,'2023-02-09 10:46:32',321.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18039,12,12,'2023-02-09 10:46:32',321.804619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18040,12,12,'2023-02-09 10:46:32',322.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18041,12,12,'2023-02-09 10:46:32',322.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18042,12,12,'2023-02-09 10:46:32',322.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18043,12,12,'2023-02-09 10:46:32',322.830624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18044,12,12,'2023-02-09 10:46:32',323.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18045,12,12,'2023-02-09 10:46:32',323.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18046,12,12,'2023-02-09 10:46:32',323.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18047,12,12,'2023-02-09 10:46:32',323.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18048,12,12,'2023-02-09 10:46:32',324.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18049,12,12,'2023-02-09 10:46:32',324.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18050,12,12,'2023-02-09 10:46:32',324.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18051,12,12,'2023-02-09 10:46:32',324.867618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18052,12,12,'2023-02-09 10:46:32',325.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18053,12,12,'2023-02-09 10:46:32',325.341001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18054,12,12,'2023-02-09 10:46:32',325.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18055,12,12,'2023-02-09 10:46:32',325.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18056,12,12,'2023-02-09 10:46:32',326.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18057,12,12,'2023-02-09 10:46:32',326.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18058,12,12,'2023-02-09 10:46:32',326.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18059,12,12,'2023-02-09 10:46:32',326.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18060,12,12,'2023-02-09 10:46:32',327.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18061,12,12,'2023-02-09 10:46:32',327.345999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18062,12,12,'2023-02-09 10:46:32',327.916626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18063,12,12,'2023-02-09 10:46:32',327.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18064,12,12,'2023-02-09 10:46:32',328.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18065,12,12,'2023-02-09 10:46:32',328.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18066,12,12,'2023-02-09 10:46:32',328.937622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18067,12,12,'2023-02-09 10:46:32',328.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18068,12,12,'2023-02-09 10:46:32',329.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18069,12,12,'2023-02-09 10:46:32',329.384994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18070,12,12,'2023-02-09 10:46:32',329.956617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18071,12,12,'2023-02-09 10:46:32',329.966625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18072,12,12,'2023-02-09 10:46:32',330.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18073,12,12,'2023-02-09 10:46:32',330.440993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18074,12,12,'2023-02-09 10:46:32',330.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18075,12,12,'2023-02-09 10:46:32',330.988617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18076,12,12,'2023-02-09 10:46:32',331.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18077,12,12,'2023-02-09 10:46:32',331.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18078,12,12,'2023-02-09 10:46:32',331.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18079,12,12,'2023-02-09 10:46:32',332.006626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18080,12,12,'2023-02-09 10:46:32',332.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18081,12,12,'2023-02-09 10:46:32',332.446002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18082,12,12,'2023-02-09 10:46:32',333.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18083,12,12,'2023-02-09 10:46:32',333.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18084,12,12,'2023-02-09 10:46:32',333.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18085,12,12,'2023-02-09 10:46:32',333.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18086,12,12,'2023-02-09 10:46:32',334.038620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18087,12,12,'2023-02-09 10:46:32',334.049624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18088,12,12,'2023-02-09 10:46:32',334.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18089,12,12,'2023-02-09 10:46:32',334.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18090,12,12,'2023-02-09 10:46:32',335.056619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18091,12,12,'2023-02-09 10:46:32',335.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18092,12,12,'2023-02-09 10:46:32',335.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18093,12,12,'2023-02-09 10:46:32',335.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18094,12,12,'2023-02-09 10:46:32',336.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18095,12,12,'2023-02-09 10:46:32',336.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18096,12,12,'2023-02-09 10:46:32',336.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18097,12,12,'2023-02-09 10:46:32',336.560996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18098,12,12,'2023-02-09 10:46:32',337.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18099,12,12,'2023-02-09 10:46:32',337.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18100,12,12,'2023-02-09 10:46:32',337.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18101,12,12,'2023-02-09 10:46:32',337.558999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18102,12,12,'2023-02-09 10:46:32',338.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18103,12,12,'2023-02-09 10:46:32',338.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18104,12,12,'2023-02-09 10:46:32',338.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18105,12,12,'2023-02-09 10:46:32',338.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18106,12,12,'2023-02-09 10:46:32',339.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18107,12,12,'2023-02-09 10:46:32',339.145623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18108,12,12,'2023-02-09 10:46:32',339.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18109,12,12,'2023-02-09 10:46:32',339.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18110,12,12,'2023-02-09 10:46:32',340.156622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18111,12,12,'2023-02-09 10:46:32',340.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18112,12,12,'2023-02-09 10:46:32',340.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18113,12,12,'2023-02-09 10:46:32',340.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18114,12,12,'2023-02-09 10:46:32',341.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18115,12,12,'2023-02-09 10:46:32',341.188622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18116,12,12,'2023-02-09 10:46:32',341.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18117,12,12,'2023-02-09 10:46:32',341.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18118,12,12,'2023-02-09 10:46:32',342.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18119,12,12,'2023-02-09 10:46:32',342.205625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18120,12,12,'2023-02-09 10:46:32',342.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18121,12,12,'2023-02-09 10:46:32',342.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18122,12,12,'2023-02-09 10:46:32',343.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18123,12,12,'2023-02-09 10:46:32',343.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18124,12,12,'2023-02-09 10:46:32',343.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18125,12,12,'2023-02-09 10:46:32',343.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18126,12,12,'2023-02-09 10:46:32',344.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18127,12,12,'2023-02-09 10:46:32',344.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18128,12,12,'2023-02-09 10:46:32',344.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18129,12,12,'2023-02-09 10:46:32',344.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18130,12,12,'2023-02-09 10:46:32',345.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18131,12,12,'2023-02-09 10:46:32',345.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18132,12,12,'2023-02-09 10:46:32',345.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18133,12,12,'2023-02-09 10:46:32',345.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18134,12,12,'2023-02-09 10:46:32',346.274623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18135,12,12,'2023-02-09 10:46:32',346.285617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18136,12,12,'2023-02-09 10:46:32',346.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18137,12,12,'2023-02-09 10:46:32',346.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18138,12,12,'2023-02-09 10:46:32',347.295619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18139,12,12,'2023-02-09 10:46:32',347.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18140,12,12,'2023-02-09 10:46:32',347.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18141,12,12,'2023-02-09 10:46:32',347.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18142,12,12,'2023-02-09 10:46:32',348.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18143,12,12,'2023-02-09 10:46:32',348.329621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18144,12,12,'2023-02-09 10:46:32',348.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18145,12,12,'2023-02-09 10:46:32',348.778995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18146,12,12,'2023-02-09 10:46:32',349.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18147,12,12,'2023-02-09 10:46:32',349.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18148,12,12,'2023-02-09 10:46:32',349.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18149,12,12,'2023-02-09 10:46:32',349.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18150,12,12,'2023-02-09 10:46:32',350.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18151,12,12,'2023-02-09 10:46:32',350.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18152,12,12,'2023-02-09 10:46:32',350.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18153,12,12,'2023-02-09 10:46:32',350.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18154,12,12,'2023-02-09 10:46:32',351.378619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18155,12,12,'2023-02-09 10:46:32',351.389622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18156,12,12,'2023-02-09 10:46:32',351.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18157,12,12,'2023-02-09 10:46:32',351.860994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18158,12,12,'2023-02-09 10:46:32',352.396618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18159,12,12,'2023-02-09 10:46:32',352.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18160,12,12,'2023-02-09 10:46:32',352.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18161,12,12,'2023-02-09 10:46:32',352.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18162,12,12,'2023-02-09 10:46:32',353.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18163,12,12,'2023-02-09 10:46:32',353.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18164,12,12,'2023-02-09 10:46:32',353.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18165,12,12,'2023-02-09 10:46:32',353.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18166,12,12,'2023-02-09 10:46:32',354.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18167,12,12,'2023-02-09 10:46:32',354.446616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18168,12,12,'2023-02-09 10:46:32',354.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18169,12,12,'2023-02-09 10:46:32',354.886003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18170,12,12,'2023-02-09 10:46:32',355.456619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18171,12,12,'2023-02-09 10:46:32',355.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18172,12,12,'2023-02-09 10:46:32',355.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18173,12,12,'2023-02-09 10:46:32',355.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18174,12,12,'2023-02-09 10:46:32',356.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18175,12,12,'2023-02-09 10:46:32',356.485622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18176,12,12,'2023-02-09 10:46:32',356.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18177,12,12,'2023-02-09 10:46:32',356.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18178,12,12,'2023-02-09 10:46:32',357.495624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18179,12,12,'2023-02-09 10:46:32',357.506618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18180,12,12,'2023-02-09 10:46:32',357.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18181,12,12,'2023-02-09 10:46:32',357.980997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18182,12,12,'2023-02-09 10:46:32',358.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18183,12,12,'2023-02-09 10:46:32',358.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18184,12,12,'2023-02-09 10:46:32',358.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18185,12,12,'2023-02-09 10:46:32',358.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18186,12,12,'2023-02-09 10:46:32',359.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18187,12,12,'2023-02-09 10:46:32',359.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18188,12,12,'2023-02-09 10:46:32',359.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18189,12,12,'2023-02-09 10:46:32',359.985995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18190,12,12,'2023-02-09 10:46:32',360.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18191,12,12,'2023-02-09 10:46:32',360.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18192,12,12,'2023-02-09 10:46:32',360.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18193,12,12,'2023-02-09 10:46:32',361.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18194,12,12,'2023-02-09 10:46:32',361.578624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18195,12,12,'2023-02-09 10:46:32',361.589617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18196,12,12,'2023-02-09 10:46:32',362.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18197,12,12,'2023-02-09 10:46:32',362.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18198,12,12,'2023-02-09 10:46:32',362.596623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18199,12,12,'2023-02-09 10:46:32',362.607626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18200,12,12,'2023-02-09 10:46:32',363.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18201,12,12,'2023-02-09 10:46:32',363.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18202,12,12,'2023-02-09 10:46:32',363.614621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18203,12,12,'2023-02-09 10:46:32',363.625625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18204,12,12,'2023-02-09 10:46:32',364.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18205,12,12,'2023-02-09 10:46:32',364.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18206,12,12,'2023-02-09 10:46:32',364.635618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18207,12,12,'2023-02-09 10:46:32',364.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18208,12,12,'2023-02-09 10:46:32',365.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18209,12,12,'2023-02-09 10:46:32',365.099003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18210,12,12,'2023-02-09 10:46:32',365.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18211,12,12,'2023-02-09 10:46:32',365.668624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18212,12,12,'2023-02-09 10:46:32',366.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18213,12,12,'2023-02-09 10:46:32',366.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18214,12,12,'2023-02-09 10:46:32',366.674623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18215,12,12,'2023-02-09 10:46:32',366.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18216,12,12,'2023-02-09 10:46:32',367.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18217,12,12,'2023-02-09 10:46:32',367.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18218,12,12,'2023-02-09 10:46:32',367.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18219,12,12,'2023-02-09 10:46:32',367.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18220,12,12,'2023-02-09 10:46:32',368.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18221,12,12,'2023-02-09 10:46:32',368.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18222,12,12,'2023-02-09 10:46:32',368.718617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18223,12,12,'2023-02-09 10:46:32',368.729621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18224,12,12,'2023-02-09 10:46:32',369.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18225,12,12,'2023-02-09 10:46:32',369.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18226,12,12,'2023-02-09 10:46:32',369.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18227,12,12,'2023-02-09 10:46:32',369.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18228,12,12,'2023-02-09 10:46:32',370.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18229,12,12,'2023-02-09 10:46:32',370.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18230,12,12,'2023-02-09 10:46:32',370.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18231,12,12,'2023-02-09 10:46:32',370.767620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18232,12,12,'2023-02-09 10:46:32',371.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18233,12,12,'2023-02-09 10:46:32',371.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18234,12,12,'2023-02-09 10:46:32',371.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18235,12,12,'2023-02-09 10:46:32',371.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18236,12,12,'2023-02-09 10:46:32',372.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18237,12,12,'2023-02-09 10:46:32',372.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18238,12,12,'2023-02-09 10:46:32',372.796618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18239,12,12,'2023-02-09 10:46:32',372.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18240,12,12,'2023-02-09 10:46:32',373.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18241,12,12,'2023-02-09 10:46:32',373.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18242,12,12,'2023-02-09 10:46:32',373.814626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18243,12,12,'2023-02-09 10:46:32',373.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18244,12,12,'2023-02-09 10:46:32',374.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18245,12,12,'2023-02-09 10:46:32',374.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18246,12,12,'2023-02-09 10:46:32',374.836619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18247,12,12,'2023-02-09 10:46:32',374.846627,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18248,12,12,'2023-02-09 10:46:32',375.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18249,12,12,'2023-02-09 10:46:32',375.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18250,12,12,'2023-02-09 10:46:32',375.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18251,12,12,'2023-02-09 10:46:32',375.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18252,12,12,'2023-02-09 10:46:32',376.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18253,12,12,'2023-02-09 10:46:32',376.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18254,12,12,'2023-02-09 10:46:32',376.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18255,12,12,'2023-02-09 10:46:32',376.885622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18256,12,12,'2023-02-09 10:46:32',377.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18257,12,12,'2023-02-09 10:46:32',377.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18258,12,12,'2023-02-09 10:46:32',377.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18259,12,12,'2023-02-09 10:46:32',377.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18260,12,12,'2023-02-09 10:46:32',378.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18261,12,12,'2023-02-09 10:46:32',378.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18262,12,12,'2023-02-09 10:46:32',378.918622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18263,12,12,'2023-02-09 10:46:32',378.930622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18264,12,12,'2023-02-09 10:46:32',379.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18265,12,12,'2023-02-09 10:46:32',379.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18266,12,12,'2023-02-09 10:46:32',379.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18267,12,12,'2023-02-09 10:46:32',379.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18268,12,12,'2023-02-09 10:46:32',380.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18269,12,12,'2023-02-09 10:46:32',380.420998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18270,12,12,'2023-02-09 10:46:32',380.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18271,12,12,'2023-02-09 10:46:32',380.970623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18272,12,12,'2023-02-09 10:46:32',381.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18273,12,12,'2023-02-09 10:46:32',381.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18274,12,12,'2023-02-09 10:46:32',381.975616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18275,12,12,'2023-02-09 10:46:32',381.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18276,12,12,'2023-02-09 10:46:32',382.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18277,12,12,'2023-02-09 10:46:32',382.425996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18278,12,12,'2023-02-09 10:46:32',382.997618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18279,12,12,'2023-02-09 10:46:32',383.008622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18280,12,12,'2023-02-09 10:46:32',383.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18281,12,12,'2023-02-09 10:46:32',383.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18282,12,12,'2023-02-09 10:46:32',384.014621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18283,12,12,'2023-02-09 10:46:32',384.025625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18284,12,12,'2023-02-09 10:46:32',384.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18285,12,12,'2023-02-09 10:46:32',384.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18286,12,12,'2023-02-09 10:46:32',385.036624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18287,12,12,'2023-02-09 10:46:32',385.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18288,12,12,'2023-02-09 10:46:32',385.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18289,12,12,'2023-02-09 10:46:32',385.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18290,12,12,'2023-02-09 10:46:32',386.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18291,12,12,'2023-02-09 10:46:32',386.069619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18292,12,12,'2023-02-09 10:46:32',386.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18293,12,12,'2023-02-09 10:46:32',386.541997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18294,12,12,'2023-02-09 10:46:32',387.076625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18295,12,12,'2023-02-09 10:46:32',387.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18296,12,12,'2023-02-09 10:46:32',387.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18297,12,12,'2023-02-09 10:46:32',387.525998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18298,12,12,'2023-02-09 10:46:32',388.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18299,12,12,'2023-02-09 10:46:32',388.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18300,12,12,'2023-02-09 10:46:32',388.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18301,12,12,'2023-02-09 10:46:32',388.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18302,12,12,'2023-02-09 10:46:32',389.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18303,12,12,'2023-02-09 10:46:32',389.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18304,12,12,'2023-02-09 10:46:32',389.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18305,12,12,'2023-02-09 10:46:32',389.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18306,12,12,'2023-02-09 10:46:32',390.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18307,12,12,'2023-02-09 10:46:32',390.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18308,12,12,'2023-02-09 10:46:32',390.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18309,12,12,'2023-02-09 10:46:32',390.584994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18310,12,12,'2023-02-09 10:46:32',391.154625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18311,12,12,'2023-02-09 10:46:32',391.165619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18312,12,12,'2023-02-09 10:46:32',391.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18313,12,12,'2023-02-09 10:46:32',391.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18314,12,12,'2023-02-09 10:46:32',392.175621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18315,12,12,'2023-02-09 10:46:32',392.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18316,12,12,'2023-02-09 10:46:32',392.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18317,12,12,'2023-02-09 10:46:32',392.662000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18318,12,12,'2023-02-09 10:46:32',393.197623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18319,12,12,'2023-02-09 10:46:32',393.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18320,12,12,'2023-02-09 10:46:32',393.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18321,12,12,'2023-02-09 10:46:32',393.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18322,12,12,'2023-02-09 10:46:32',394.214616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18323,12,12,'2023-02-09 10:46:32',394.225620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18324,12,12,'2023-02-09 10:46:32',394.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18325,12,12,'2023-02-09 10:46:32',394.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18326,12,12,'2023-02-09 10:46:32',395.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18327,12,12,'2023-02-09 10:46:32',395.247622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18328,12,12,'2023-02-09 10:46:32',395.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18329,12,12,'2023-02-09 10:46:32',395.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18330,12,12,'2023-02-09 10:46:32',396.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18331,12,12,'2023-02-09 10:46:32',396.268619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18332,12,12,'2023-02-09 10:46:32',396.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18333,12,12,'2023-02-09 10:46:32',396.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18334,12,12,'2023-02-09 10:46:32',397.276620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18335,12,12,'2023-02-09 10:46:32',397.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18336,12,12,'2023-02-09 10:46:32',397.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18337,12,12,'2023-02-09 10:46:32',397.762002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18338,12,12,'2023-02-09 10:46:32',398.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18339,12,12,'2023-02-09 10:46:32',398.305622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18340,12,12,'2023-02-09 10:46:32',398.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18341,12,12,'2023-02-09 10:46:32',398.745994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18342,12,12,'2023-02-09 10:46:32',399.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18343,12,12,'2023-02-09 10:46:32',399.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18344,12,12,'2023-02-09 10:46:32',399.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18345,12,12,'2023-02-09 10:46:32',399.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18346,12,12,'2023-02-09 10:46:32',400.337617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18347,12,12,'2023-02-09 10:46:32',400.348621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18348,12,12,'2023-02-09 10:46:32',400.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18349,12,12,'2023-02-09 10:46:32',400.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18350,12,12,'2023-02-09 10:46:32',401.354620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18351,12,12,'2023-02-09 10:46:32',401.365624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18352,12,12,'2023-02-09 10:46:32',401.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18353,12,12,'2023-02-09 10:46:32',401.840998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18354,12,12,'2023-02-09 10:46:32',402.376622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18355,12,12,'2023-02-09 10:46:32',402.387626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18356,12,12,'2023-02-09 10:46:32',402.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18357,12,12,'2023-02-09 10:46:32',402.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18358,12,12,'2023-02-09 10:46:32',403.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18359,12,12,'2023-02-09 10:46:32',403.408622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18360,12,12,'2023-02-09 10:46:32',403.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18361,12,12,'2023-02-09 10:46:32',403.859002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18362,12,12,'2023-02-09 10:46:32',404.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18363,12,12,'2023-02-09 10:46:32',404.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18364,12,12,'2023-02-09 10:46:32',404.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18365,12,12,'2023-02-09 10:46:32',404.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18366,12,12,'2023-02-09 10:46:32',405.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18367,12,12,'2023-02-09 10:46:32',405.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18368,12,12,'2023-02-09 10:46:32',405.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18369,12,12,'2023-02-09 10:46:32',405.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18370,12,12,'2023-02-09 10:46:32',406.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18371,12,12,'2023-02-09 10:46:32',406.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18372,12,12,'2023-02-09 10:46:32',406.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18373,12,12,'2023-02-09 10:46:32',406.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18374,12,12,'2023-02-09 10:46:32',407.476625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18375,12,12,'2023-02-09 10:46:32',407.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18376,12,12,'2023-02-09 10:46:32',407.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18377,12,12,'2023-02-09 10:46:32',407.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18378,12,12,'2023-02-09 10:46:32',408.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18379,12,12,'2023-02-09 10:46:32',408.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18380,12,12,'2023-02-09 10:46:32',408.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18381,12,12,'2023-02-09 10:46:32',408.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18382,12,12,'2023-02-09 10:46:32',409.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18383,12,12,'2023-02-09 10:46:32',409.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18384,12,12,'2023-02-09 10:46:32',409.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18385,12,12,'2023-02-09 10:46:32',409.965999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18386,12,12,'2023-02-09 10:46:32',410.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18387,12,12,'2023-02-09 10:46:32',410.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18388,12,12,'2023-02-09 10:46:32',410.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18389,12,12,'2023-02-09 10:46:32',410.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18390,12,12,'2023-02-09 10:46:32',411.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18391,12,12,'2023-02-09 10:46:32',411.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18392,12,12,'2023-02-09 10:46:32',411.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18393,12,12,'2023-02-09 10:46:32',412.040993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18394,12,12,'2023-02-09 10:46:32',412.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18395,12,12,'2023-02-09 10:46:32',412.588617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18396,12,12,'2023-02-09 10:46:32',413.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18397,12,12,'2023-02-09 10:46:32',413.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18398,12,12,'2023-02-09 10:46:32',413.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18399,12,12,'2023-02-09 10:46:32',413.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18400,12,12,'2023-02-09 10:46:32',414.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18401,12,12,'2023-02-09 10:46:32',414.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18402,12,12,'2023-02-09 10:46:32',414.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18403,12,12,'2023-02-09 10:46:32',414.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18404,12,12,'2023-02-09 10:46:32',415.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18405,12,12,'2023-02-09 10:46:32',415.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18406,12,12,'2023-02-09 10:46:32',415.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18407,12,12,'2023-02-09 10:46:32',415.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18408,12,12,'2023-02-09 10:46:32',416.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18409,12,12,'2023-02-09 10:46:32',416.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18410,12,12,'2023-02-09 10:46:32',416.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18411,12,12,'2023-02-09 10:46:32',416.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18412,12,12,'2023-02-09 10:46:32',417.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18413,12,12,'2023-02-09 10:46:32',417.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18414,12,12,'2023-02-09 10:46:32',417.677625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18415,12,12,'2023-02-09 10:46:32',417.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18416,12,12,'2023-02-09 10:46:32',418.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18417,12,12,'2023-02-09 10:46:32',418.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18418,12,12,'2023-02-09 10:46:32',418.694618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18419,12,12,'2023-02-09 10:46:32',418.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18420,12,12,'2023-02-09 10:46:32',419.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18421,12,12,'2023-02-09 10:46:32',419.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18422,12,12,'2023-02-09 10:46:32',419.716621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18423,12,12,'2023-02-09 10:46:32',419.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18424,12,12,'2023-02-09 10:46:32',420.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18425,12,12,'2023-02-09 10:46:32',420.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18426,12,12,'2023-02-09 10:46:32',420.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18427,12,12,'2023-02-09 10:46:32',420.748621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18428,12,12,'2023-02-09 10:46:32',421.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18429,12,12,'2023-02-09 10:46:32',421.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18430,12,12,'2023-02-09 10:46:32',421.756622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18431,12,12,'2023-02-09 10:46:32',421.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18432,12,12,'2023-02-09 10:46:32',422.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18433,12,12,'2023-02-09 10:46:32',422.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18434,12,12,'2023-02-09 10:46:32',422.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18435,12,12,'2023-02-09 10:46:32',422.788622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18436,12,12,'2023-02-09 10:46:32',423.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18437,12,12,'2023-02-09 10:46:32',423.225000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18438,12,12,'2023-02-09 10:46:32',423.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18439,12,12,'2023-02-09 10:46:32',423.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18440,12,12,'2023-02-09 10:46:32',424.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18441,12,12,'2023-02-09 10:46:32',424.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18442,12,12,'2023-02-09 10:46:32',424.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18443,12,12,'2023-02-09 10:46:32',424.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18444,12,12,'2023-02-09 10:46:32',425.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18445,12,12,'2023-02-09 10:46:32',425.301996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18446,12,12,'2023-02-09 10:46:32',425.838625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18447,12,12,'2023-02-09 10:46:32',425.849619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18448,12,12,'2023-02-09 10:46:32',426.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18449,12,12,'2023-02-09 10:46:32',426.285997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18450,12,12,'2023-02-09 10:46:32',426.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18451,12,12,'2023-02-09 10:46:32',426.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18452,12,12,'2023-02-09 10:46:32',427.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18453,12,12,'2023-02-09 10:46:32',427.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18454,12,12,'2023-02-09 10:46:32',427.877620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18455,12,12,'2023-02-09 10:46:32',427.888624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18456,12,12,'2023-02-09 10:46:32',428.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18457,12,12,'2023-02-09 10:46:32',428.324993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18458,12,12,'2023-02-09 10:46:32',428.894623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18459,12,12,'2023-02-09 10:46:32',428.905617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18460,12,12,'2023-02-09 10:46:32',429.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18461,12,12,'2023-02-09 10:46:32',429.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18462,12,12,'2023-02-09 10:46:32',429.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18463,12,12,'2023-02-09 10:46:32',429.927619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18464,12,12,'2023-02-09 10:46:32',430.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18465,12,12,'2023-02-09 10:46:32',430.401002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18466,12,12,'2023-02-09 10:46:32',430.938618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18467,12,12,'2023-02-09 10:46:32',430.948626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18468,12,12,'2023-02-09 10:46:32',431.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18469,12,12,'2023-02-09 10:46:32',431.398995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18470,12,12,'2023-02-09 10:46:32',431.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18471,12,12,'2023-02-09 10:46:32',431.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18472,12,12,'2023-02-09 10:46:32',432.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18473,12,12,'2023-02-09 10:46:32',432.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18474,12,12,'2023-02-09 10:46:32',432.978619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18475,12,12,'2023-02-09 10:46:32',432.989622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18476,12,12,'2023-02-09 10:46:32',433.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18477,12,12,'2023-02-09 10:46:32',433.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18478,12,12,'2023-02-09 10:46:32',433.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18479,12,12,'2023-02-09 10:46:32',434.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18480,12,12,'2023-02-09 10:46:32',434.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18481,12,12,'2023-02-09 10:46:32',434.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18482,12,12,'2023-02-09 10:46:32',435.017624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18483,12,12,'2023-02-09 10:46:32',435.028618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18484,12,12,'2023-02-09 10:46:32',435.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18485,12,12,'2023-02-09 10:46:32',435.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18486,12,12,'2023-02-09 10:46:32',436.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18487,12,12,'2023-02-09 10:46:32',436.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18488,12,12,'2023-02-09 10:46:32',436.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18489,12,12,'2023-02-09 10:46:32',436.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18490,12,12,'2023-02-09 10:46:32',437.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18491,12,12,'2023-02-09 10:46:32',437.067623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18492,12,12,'2023-02-09 10:46:32',437.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18493,12,12,'2023-02-09 10:46:32',437.540996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18494,12,12,'2023-02-09 10:46:32',438.077625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18495,12,12,'2023-02-09 10:46:32',438.088619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18496,12,12,'2023-02-09 10:46:32',438.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18497,12,12,'2023-02-09 10:46:32',438.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18498,12,12,'2023-02-09 10:46:32',439.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18499,12,12,'2023-02-09 10:46:32',439.106618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18500,12,12,'2023-02-09 10:46:32',439.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18501,12,12,'2023-02-09 10:46:32',439.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18502,12,12,'2023-02-09 10:46:32',440.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18503,12,12,'2023-02-09 10:46:32',440.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18504,12,12,'2023-02-09 10:46:32',440.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18505,12,12,'2023-02-09 10:46:32',440.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18506,12,12,'2023-02-09 10:46:32',441.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18507,12,12,'2023-02-09 10:46:32',441.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18508,12,12,'2023-02-09 10:46:32',441.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18509,12,12,'2023-02-09 10:46:32',441.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18510,12,12,'2023-02-09 10:46:32',442.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18511,12,12,'2023-02-09 10:46:32',442.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18512,12,12,'2023-02-09 10:46:32',442.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18513,12,12,'2023-02-09 10:46:32',442.640998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18514,12,12,'2023-02-09 10:46:32',443.178624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18515,12,12,'2023-02-09 10:46:32',443.189617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18516,12,12,'2023-02-09 10:46:32',443.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18517,12,12,'2023-02-09 10:46:32',443.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18518,12,12,'2023-02-09 10:46:32',444.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18519,12,12,'2023-02-09 10:46:32',444.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18520,12,12,'2023-02-09 10:46:32',444.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18521,12,12,'2023-02-09 10:46:32',444.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18522,12,12,'2023-02-09 10:46:32',445.217619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18523,12,12,'2023-02-09 10:46:32',445.228623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18524,12,12,'2023-02-09 10:46:32',445.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18525,12,12,'2023-02-09 10:46:32',445.665001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18526,12,12,'2023-02-09 10:46:32',446.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18527,12,12,'2023-02-09 10:46:32',446.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18528,12,12,'2023-02-09 10:46:32',446.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18529,12,12,'2023-02-09 10:46:32',446.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18530,12,12,'2023-02-09 10:46:32',447.256624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18531,12,12,'2023-02-09 10:46:32',447.267618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18532,12,12,'2023-02-09 10:46:32',447.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18533,12,12,'2023-02-09 10:46:32',447.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18534,12,12,'2023-02-09 10:46:32',448.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18535,12,12,'2023-02-09 10:46:32',448.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18536,12,12,'2023-02-09 10:46:32',448.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18537,12,12,'2023-02-09 10:46:32',448.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18538,12,12,'2023-02-09 10:46:32',449.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18539,12,12,'2023-02-09 10:46:32',449.306623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18540,12,12,'2023-02-09 10:46:32',449.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18541,12,12,'2023-02-09 10:46:32',449.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18542,12,12,'2023-02-09 10:46:32',450.318617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18543,12,12,'2023-02-09 10:46:32',450.328625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18544,12,12,'2023-02-09 10:46:32',450.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18545,12,12,'2023-02-09 10:46:32',450.801002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18546,12,12,'2023-02-09 10:46:32',451.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18547,12,12,'2023-02-09 10:46:32',451.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18548,12,12,'2023-02-09 10:46:32',451.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18549,12,12,'2023-02-09 10:46:32',451.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18550,12,12,'2023-02-09 10:46:32',452.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18551,12,12,'2023-02-09 10:46:32',452.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18552,12,12,'2023-02-09 10:46:32',452.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18553,12,12,'2023-02-09 10:46:32',452.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18554,12,12,'2023-02-09 10:46:32',453.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18555,12,12,'2023-02-09 10:46:32',453.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18556,12,12,'2023-02-09 10:46:32',453.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18557,12,12,'2023-02-09 10:46:32',453.826001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18558,12,12,'2023-02-09 10:46:32',454.396617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18559,12,12,'2023-02-09 10:46:32',454.407621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18560,12,12,'2023-02-09 10:46:32',454.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18561,12,12,'2023-02-09 10:46:32',454.880994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18562,12,12,'2023-02-09 10:46:32',455.417624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18563,12,12,'2023-02-09 10:46:32',455.428618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18564,12,12,'2023-02-09 10:46:32',455.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18565,12,12,'2023-02-09 10:46:32',455.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18566,12,12,'2023-02-09 10:46:32',456.435623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18567,12,12,'2023-02-09 10:46:32',456.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18568,12,12,'2023-02-09 10:46:32',456.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18569,12,12,'2023-02-09 10:46:32',456.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18570,12,12,'2023-02-09 10:46:32',457.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18571,12,12,'2023-02-09 10:46:32',457.467623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18572,12,12,'2023-02-09 10:46:32',457.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18573,12,12,'2023-02-09 10:46:32',457.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18574,12,12,'2023-02-09 10:46:32',458.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18575,12,12,'2023-02-09 10:46:32',458.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18576,12,12,'2023-02-09 10:46:32',458.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18577,12,12,'2023-02-09 10:46:32',458.938999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18578,12,12,'2023-02-09 10:46:32',459.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18579,12,12,'2023-02-09 10:46:32',459.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18580,12,12,'2023-02-09 10:46:32',459.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18581,12,12,'2023-02-09 10:46:32',459.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18582,12,12,'2023-02-09 10:46:32',460.518622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18583,12,12,'2023-02-09 10:46:32',460.529626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18584,12,12,'2023-02-09 10:46:32',460.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18585,12,12,'2023-02-09 10:46:32',460.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18586,12,12,'2023-02-09 10:46:32',461.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18587,12,12,'2023-02-09 10:46:32',461.544617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18588,12,12,'2023-02-09 10:46:32',461.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18589,12,12,'2023-02-09 10:46:32',462.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18590,12,12,'2023-02-09 10:46:32',462.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18591,12,12,'2023-02-09 10:46:32',462.570623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18592,12,12,'2023-02-09 10:46:32',462.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18593,12,12,'2023-02-09 10:46:32',463.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18594,12,12,'2023-02-09 10:46:32',463.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18595,12,12,'2023-02-09 10:46:32',463.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18596,12,12,'2023-02-09 10:46:32',464.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18597,12,12,'2023-02-09 10:46:32',464.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18598,12,12,'2023-02-09 10:46:32',464.596622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18599,12,12,'2023-02-09 10:46:32',464.607616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18600,12,12,'2023-02-09 10:46:32',465.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18601,12,12,'2023-02-09 10:46:32',465.045996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18602,12,12,'2023-02-09 10:46:32',465.617619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18603,12,12,'2023-02-09 10:46:32',465.628623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18604,12,12,'2023-02-09 10:46:32',466.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18605,12,12,'2023-02-09 10:46:32',466.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18606,12,12,'2023-02-09 10:46:32',466.636624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18607,12,12,'2023-02-09 10:46:32',466.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18608,12,12,'2023-02-09 10:46:32',467.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18609,12,12,'2023-02-09 10:46:32',467.121000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18610,12,12,'2023-02-09 10:46:32',467.658626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18611,12,12,'2023-02-09 10:46:32',467.669619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18612,12,12,'2023-02-09 10:46:32',468.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18613,12,12,'2023-02-09 10:46:32',468.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18614,12,12,'2023-02-09 10:46:32',468.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18615,12,12,'2023-02-09 10:46:32',468.685617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18616,12,12,'2023-02-09 10:46:32',469.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18617,12,12,'2023-02-09 10:46:32',469.124993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18618,12,12,'2023-02-09 10:46:32',469.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18619,12,12,'2023-02-09 10:46:32',469.708625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18620,12,12,'2023-02-09 10:46:32',470.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18621,12,12,'2023-02-09 10:46:32',470.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18622,12,12,'2023-02-09 10:46:32',470.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18623,12,12,'2023-02-09 10:46:32',470.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18624,12,12,'2023-02-09 10:46:32',471.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18625,12,12,'2023-02-09 10:46:32',471.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18626,12,12,'2023-02-09 10:46:32',471.736626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18627,12,12,'2023-02-09 10:46:32',471.747620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18628,12,12,'2023-02-09 10:46:32',472.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18629,12,12,'2023-02-09 10:46:32',472.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18630,12,12,'2023-02-09 10:46:32',472.757622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18631,12,12,'2023-02-09 10:46:32',472.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18632,12,12,'2023-02-09 10:46:32',473.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18633,12,12,'2023-02-09 10:46:32',473.204995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18634,12,12,'2023-02-09 10:46:32',473.775621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18635,12,12,'2023-02-09 10:46:32',473.786625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18636,12,12,'2023-02-09 10:46:32',474.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18637,12,12,'2023-02-09 10:46:32',474.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18638,12,12,'2023-02-09 10:46:32',474.796617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18639,12,12,'2023-02-09 10:46:32',474.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18640,12,12,'2023-02-09 10:46:32',475.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18641,12,12,'2023-02-09 10:46:32',475.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18642,12,12,'2023-02-09 10:46:32',475.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18643,12,12,'2023-02-09 10:46:32',475.825620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18644,12,12,'2023-02-09 10:46:32',476.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18645,12,12,'2023-02-09 10:46:32',476.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18646,12,12,'2023-02-09 10:46:32',476.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18647,12,12,'2023-02-09 10:46:32',476.846616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18648,12,12,'2023-02-09 10:46:32',477.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18649,12,12,'2023-02-09 10:46:32',477.320995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18650,12,12,'2023-02-09 10:46:32',477.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18651,12,12,'2023-02-09 10:46:32',477.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18652,12,12,'2023-02-09 10:46:32',478.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18653,12,12,'2023-02-09 10:46:32',478.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18654,12,12,'2023-02-09 10:46:32',478.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18655,12,12,'2023-02-09 10:46:32',478.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18656,12,12,'2023-02-09 10:46:32',479.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18657,12,12,'2023-02-09 10:46:32',479.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18658,12,12,'2023-02-09 10:46:32',479.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18659,12,12,'2023-02-09 10:46:32',479.908620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18660,12,12,'2023-02-09 10:46:32',480.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18661,12,12,'2023-02-09 10:46:32',480.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18662,12,12,'2023-02-09 10:46:32',480.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18663,12,12,'2023-02-09 10:46:32',480.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18664,12,12,'2023-02-09 10:46:32',481.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18665,12,12,'2023-02-09 10:46:32',481.365994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18666,12,12,'2023-02-09 10:46:32',481.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18667,12,12,'2023-02-09 10:46:32',481.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18668,12,12,'2023-02-09 10:46:32',482.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18669,12,12,'2023-02-09 10:46:32',482.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18670,12,12,'2023-02-09 10:46:32',482.957617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18671,12,12,'2023-02-09 10:46:32',482.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18672,12,12,'2023-02-09 10:46:32',483.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18673,12,12,'2023-02-09 10:46:32',483.440998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18674,12,12,'2023-02-09 10:46:32',483.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18675,12,12,'2023-02-09 10:46:32',483.986620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18676,12,12,'2023-02-09 10:46:32',484.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18677,12,12,'2023-02-09 10:46:32',484.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18678,12,12,'2023-02-09 10:46:32',484.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18679,12,12,'2023-02-09 10:46:32',485.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18680,12,12,'2023-02-09 10:46:32',485.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18681,12,12,'2023-02-09 10:46:32',485.445001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18682,12,12,'2023-02-09 10:46:32',486.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18683,12,12,'2023-02-09 10:46:32',486.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18684,12,12,'2023-02-09 10:46:32',486.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18685,12,12,'2023-02-09 10:46:32',486.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18686,12,12,'2023-02-09 10:46:32',487.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18687,12,12,'2023-02-09 10:46:32',487.049619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18688,12,12,'2023-02-09 10:46:32',487.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18689,12,12,'2023-02-09 10:46:32',487.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18690,12,12,'2023-02-09 10:46:32',488.058626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18691,12,12,'2023-02-09 10:46:32',488.068624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18692,12,12,'2023-02-09 10:46:32',488.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18693,12,12,'2023-02-09 10:46:32',488.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18694,12,12,'2023-02-09 10:46:32',489.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18695,12,12,'2023-02-09 10:46:32',489.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18696,12,12,'2023-02-09 10:46:32',489.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18697,12,12,'2023-02-09 10:46:32',489.561001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18698,12,12,'2023-02-09 10:46:32',490.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18699,12,12,'2023-02-09 10:46:32',490.108625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18700,12,12,'2023-02-09 10:46:32',490.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18701,12,12,'2023-02-09 10:46:32',490.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18702,12,12,'2023-02-09 10:46:32',491.115620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18703,12,12,'2023-02-09 10:46:32',491.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18704,12,12,'2023-02-09 10:46:32',491.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18705,12,12,'2023-02-09 10:46:32',491.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18706,12,12,'2023-02-09 10:46:32',492.136626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18707,12,12,'2023-02-09 10:46:32',492.147620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18708,12,12,'2023-02-09 10:46:32',492.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18709,12,12,'2023-02-09 10:46:32',492.586000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18710,12,12,'2023-02-09 10:46:32',493.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18711,12,12,'2023-02-09 10:46:32',493.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18712,12,12,'2023-02-09 10:46:32',493.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18713,12,12,'2023-02-09 10:46:32',493.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18714,12,12,'2023-02-09 10:46:32',494.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18715,12,12,'2023-02-09 10:46:32',494.186625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18716,12,12,'2023-02-09 10:46:32',494.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18717,12,12,'2023-02-09 10:46:32',494.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18718,12,12,'2023-02-09 10:46:32',495.198619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18719,12,12,'2023-02-09 10:46:32',495.209623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18720,12,12,'2023-02-09 10:46:32',495.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18721,12,12,'2023-02-09 10:46:32',495.680994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18722,12,12,'2023-02-09 10:46:32',496.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18723,12,12,'2023-02-09 10:46:32',496.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18724,12,12,'2023-02-09 10:46:32',496.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18725,12,12,'2023-02-09 10:46:32',496.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18726,12,12,'2023-02-09 10:46:32',497.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18727,12,12,'2023-02-09 10:46:32',497.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18728,12,12,'2023-02-09 10:46:32',497.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18729,12,12,'2023-02-09 10:46:32',497.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18730,12,12,'2023-02-09 10:46:32',498.258621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18731,12,12,'2023-02-09 10:46:32',498.269624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18732,12,12,'2023-02-09 10:46:32',498.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18733,12,12,'2023-02-09 10:46:32',498.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18734,12,12,'2023-02-09 10:46:32',499.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18735,12,12,'2023-02-09 10:46:32',499.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18736,12,12,'2023-02-09 10:46:32',499.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18737,12,12,'2023-02-09 10:46:32',499.724998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18738,12,12,'2023-02-09 10:46:32',500.294618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18739,12,12,'2023-02-09 10:46:32',500.307624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18740,12,12,'2023-02-09 10:46:32',500.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18741,12,12,'2023-02-09 10:46:32',500.780997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18742,12,12,'2023-02-09 10:46:32',501.315625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18743,12,12,'2023-02-09 10:46:32',501.326618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18744,12,12,'2023-02-09 10:46:32',501.745616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18745,12,12,'2023-02-09 10:46:32',501.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18746,12,12,'2023-02-09 10:46:32',502.338623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18747,12,12,'2023-02-09 10:46:32',502.349616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18748,12,12,'2023-02-09 10:46:32',502.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18749,12,12,'2023-02-09 10:46:32',502.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18750,12,12,'2023-02-09 10:46:32',503.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18751,12,12,'2023-02-09 10:46:32',503.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18752,12,12,'2023-02-09 10:46:32',503.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18753,12,12,'2023-02-09 10:46:32',503.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18754,12,12,'2023-02-09 10:46:32',504.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18755,12,12,'2023-02-09 10:46:32',504.388622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18756,12,12,'2023-02-09 10:46:32',504.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18757,12,12,'2023-02-09 10:46:32',504.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18758,12,12,'2023-02-09 10:46:32',505.398624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18759,12,12,'2023-02-09 10:46:32',505.409618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18760,12,12,'2023-02-09 10:46:32',505.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18761,12,12,'2023-02-09 10:46:32',505.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18762,12,12,'2023-02-09 10:46:32',506.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18763,12,12,'2023-02-09 10:46:32',506.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18764,12,12,'2023-02-09 10:46:32',506.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18765,12,12,'2023-02-09 10:46:32',506.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18766,12,12,'2023-02-09 10:46:32',507.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18767,12,12,'2023-02-09 10:46:32',507.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18768,12,12,'2023-02-09 10:46:32',507.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18769,12,12,'2023-02-09 10:46:32',507.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18770,12,12,'2023-02-09 10:46:32',508.455618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18771,12,12,'2023-02-09 10:46:32',508.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18772,12,12,'2023-02-09 10:46:32',508.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18773,12,12,'2023-02-09 10:46:32',508.918993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18774,12,12,'2023-02-09 10:46:32',509.476624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18775,12,12,'2023-02-09 10:46:32',509.487618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18776,12,12,'2023-02-09 10:46:32',509.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18777,12,12,'2023-02-09 10:46:32',509.961001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18778,12,12,'2023-02-09 10:46:32',510.494623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18779,12,12,'2023-02-09 10:46:32',510.505617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18780,12,12,'2023-02-09 10:46:32',510.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18781,12,12,'2023-02-09 10:46:32',510.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18782,12,12,'2023-02-09 10:46:32',511.515620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18783,12,12,'2023-02-09 10:46:32',511.526623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18784,12,12,'2023-02-09 10:46:32',511.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18785,12,12,'2023-02-09 10:46:32',511.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18786,12,12,'2023-02-09 10:46:32',512.538618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18787,12,12,'2023-02-09 10:46:32',512.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18788,12,12,'2023-02-09 10:46:32',512.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18789,12,12,'2023-02-09 10:46:32',512.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18790,12,12,'2023-02-09 10:46:32',513.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18791,12,12,'2023-02-09 10:46:32',513.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18792,12,12,'2023-02-09 10:46:32',513.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18793,12,12,'2023-02-09 10:46:32',514.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18794,12,12,'2023-02-09 10:46:32',514.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18795,12,12,'2023-02-09 10:46:32',514.588616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18796,12,12,'2023-02-09 10:46:32',515.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18797,12,12,'2023-02-09 10:46:32',515.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18798,12,12,'2023-02-09 10:46:32',515.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18799,12,12,'2023-02-09 10:46:32',515.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18800,12,12,'2023-02-09 10:46:32',516.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18801,12,12,'2023-02-09 10:46:32',516.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18802,12,12,'2023-02-09 10:46:32',516.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18803,12,12,'2023-02-09 10:46:32',516.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18804,12,12,'2023-02-09 10:46:32',517.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18805,12,12,'2023-02-09 10:46:32',517.100995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18806,12,12,'2023-02-09 10:46:32',517.634617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18807,12,12,'2023-02-09 10:46:32',517.645621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18808,12,12,'2023-02-09 10:46:32',518.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18809,12,12,'2023-02-09 10:46:32',518.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18810,12,12,'2023-02-09 10:46:32',518.655623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18811,12,12,'2023-02-09 10:46:32',518.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18812,12,12,'2023-02-09 10:46:32',519.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18813,12,12,'2023-02-09 10:46:32',519.104997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18814,12,12,'2023-02-09 10:46:32',519.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18815,12,12,'2023-02-09 10:46:32',519.688619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18816,12,12,'2023-02-09 10:46:32',520.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18817,12,12,'2023-02-09 10:46:32',520.125993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18818,12,12,'2023-02-09 10:46:32',520.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18819,12,12,'2023-02-09 10:46:32',520.706618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18820,12,12,'2023-02-09 10:46:32',521.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18821,12,12,'2023-02-09 10:46:32',521.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18822,12,12,'2023-02-09 10:46:32',521.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18823,12,12,'2023-02-09 10:46:32',521.727624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18824,12,12,'2023-02-09 10:46:32',522.145626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18825,12,12,'2023-02-09 10:46:32',522.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18826,12,12,'2023-02-09 10:46:32',522.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18827,12,12,'2023-02-09 10:46:32',522.749626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18828,12,12,'2023-02-09 10:46:32',523.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18829,12,12,'2023-02-09 10:46:32',523.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18830,12,12,'2023-02-09 10:46:32',523.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18831,12,12,'2023-02-09 10:46:32',523.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18832,12,12,'2023-02-09 10:46:32',524.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18833,12,12,'2023-02-09 10:46:32',524.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18834,12,12,'2023-02-09 10:46:32',524.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18835,12,12,'2023-02-09 10:46:32',524.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18836,12,12,'2023-02-09 10:46:32',525.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18837,12,12,'2023-02-09 10:46:32',525.239001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18838,12,12,'2023-02-09 10:46:32',525.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18839,12,12,'2023-02-09 10:46:32',525.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18840,12,12,'2023-02-09 10:46:32',526.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18841,12,12,'2023-02-09 10:46:32',526.280999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18842,12,12,'2023-02-09 10:46:32',526.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18843,12,12,'2023-02-09 10:46:32',526.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18844,12,12,'2023-02-09 10:46:32',527.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18845,12,12,'2023-02-09 10:46:32',527.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18846,12,12,'2023-02-09 10:46:32',527.834622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18847,12,12,'2023-02-09 10:46:32',527.845626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18848,12,12,'2023-02-09 10:46:32',528.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18849,12,12,'2023-02-09 10:46:32',528.285002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18850,12,12,'2023-02-09 10:46:32',528.855618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18851,12,12,'2023-02-09 10:46:32',528.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18852,12,12,'2023-02-09 10:46:32',529.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18853,12,12,'2023-02-09 10:46:32',529.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18854,12,12,'2023-02-09 10:46:32',529.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18855,12,12,'2023-02-09 10:46:32',529.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18856,12,12,'2023-02-09 10:46:32',530.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18857,12,12,'2023-02-09 10:46:32',530.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18858,12,12,'2023-02-09 10:46:32',530.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18859,12,12,'2023-02-09 10:46:32',530.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18860,12,12,'2023-02-09 10:46:32',531.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18861,12,12,'2023-02-09 10:46:32',531.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18862,12,12,'2023-02-09 10:46:32',531.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18863,12,12,'2023-02-09 10:46:32',531.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18864,12,12,'2023-02-09 10:46:32',532.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18865,12,12,'2023-02-09 10:46:32',532.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18866,12,12,'2023-02-09 10:46:32',532.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18867,12,12,'2023-02-09 10:46:32',532.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18868,12,12,'2023-02-09 10:46:32',533.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18869,12,12,'2023-02-09 10:46:32',533.421003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18870,12,12,'2023-02-09 10:46:32',533.956626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18871,12,12,'2023-02-09 10:46:32',533.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18872,12,12,'2023-02-09 10:46:32',534.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18873,12,12,'2023-02-09 10:46:32',534.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18874,12,12,'2023-02-09 10:46:32',534.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18875,12,12,'2023-02-09 10:46:32',534.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18876,12,12,'2023-02-09 10:46:32',535.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18877,12,12,'2023-02-09 10:46:32',535.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18878,12,12,'2023-02-09 10:46:32',535.995622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18879,12,12,'2023-02-09 10:46:32',536.006625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18880,12,12,'2023-02-09 10:46:32',536.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18881,12,12,'2023-02-09 10:46:32',536.458997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18882,12,12,'2023-02-09 10:46:32',537.018620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18883,12,12,'2023-02-09 10:46:32',537.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18884,12,12,'2023-02-09 10:46:32',537.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18885,12,12,'2023-02-09 10:46:32',537.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18886,12,12,'2023-02-09 10:46:32',538.035623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18887,12,12,'2023-02-09 10:46:32',538.046626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18888,12,12,'2023-02-09 10:46:32',538.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18889,12,12,'2023-02-09 10:46:32',538.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18890,12,12,'2023-02-09 10:46:32',539.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18891,12,12,'2023-02-09 10:46:32',539.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18892,12,12,'2023-02-09 10:46:32',539.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18893,12,12,'2023-02-09 10:46:32',539.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18894,12,12,'2023-02-09 10:46:32',540.078621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18895,12,12,'2023-02-09 10:46:32',540.089625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18896,12,12,'2023-02-09 10:46:32',540.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18897,12,12,'2023-02-09 10:46:32',540.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18898,12,12,'2023-02-09 10:46:32',541.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18899,12,12,'2023-02-09 10:46:32',541.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18900,12,12,'2023-02-09 10:46:32',541.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18901,12,12,'2023-02-09 10:46:32',541.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18902,12,12,'2023-02-09 10:46:32',542.117616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18903,12,12,'2023-02-09 10:46:32',542.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18904,12,12,'2023-02-09 10:46:32',542.545616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18905,12,12,'2023-02-09 10:46:32',542.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18906,12,12,'2023-02-09 10:46:32',543.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18907,12,12,'2023-02-09 10:46:32',543.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18908,12,12,'2023-02-09 10:46:32',543.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18909,12,12,'2023-02-09 10:46:32',543.620998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18910,12,12,'2023-02-09 10:46:32',544.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18911,12,12,'2023-02-09 10:46:32',544.166619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18912,12,12,'2023-02-09 10:46:32',544.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18913,12,12,'2023-02-09 10:46:32',544.605000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18914,12,12,'2023-02-09 10:46:32',545.174620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18915,12,12,'2023-02-09 10:46:32',545.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18916,12,12,'2023-02-09 10:46:32',545.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18917,12,12,'2023-02-09 10:46:32',545.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18918,12,12,'2023-02-09 10:46:32',546.195617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18919,12,12,'2023-02-09 10:46:32',546.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18920,12,12,'2023-02-09 10:46:32',546.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18921,12,12,'2023-02-09 10:46:32',546.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18922,12,12,'2023-02-09 10:46:32',547.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18923,12,12,'2023-02-09 10:46:32',547.228622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18924,12,12,'2023-02-09 10:46:32',547.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18925,12,12,'2023-02-09 10:46:32',547.665997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18926,12,12,'2023-02-09 10:46:32',548.234622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18927,12,12,'2023-02-09 10:46:32',548.245626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18928,12,12,'2023-02-09 10:46:32',548.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18929,12,12,'2023-02-09 10:46:32',548.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18930,12,12,'2023-02-09 10:46:32',549.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18931,12,12,'2023-02-09 10:46:32',549.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18932,12,12,'2023-02-09 10:46:32',549.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18933,12,12,'2023-02-09 10:46:32',549.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18934,12,12,'2023-02-09 10:46:32',550.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18935,12,12,'2023-02-09 10:46:32',550.288624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18936,12,12,'2023-02-09 10:46:32',550.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18937,12,12,'2023-02-09 10:46:32',550.724993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18938,12,12,'2023-02-09 10:46:32',551.296625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18939,12,12,'2023-02-09 10:46:32',551.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18940,12,12,'2023-02-09 10:46:32',551.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18941,12,12,'2023-02-09 10:46:32',551.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18942,12,12,'2023-02-09 10:46:32',552.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18943,12,12,'2023-02-09 10:46:32',552.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18944,12,12,'2023-02-09 10:46:32',552.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18945,12,12,'2023-02-09 10:46:32',552.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18946,12,12,'2023-02-09 10:46:32',553.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18947,12,12,'2023-02-09 10:46:32',553.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18948,12,12,'2023-02-09 10:46:32',553.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18949,12,12,'2023-02-09 10:46:32',553.784994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18950,12,12,'2023-02-09 10:46:32',554.357622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18951,12,12,'2023-02-09 10:46:32',554.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18952,12,12,'2023-02-09 10:46:32',554.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18953,12,12,'2023-02-09 10:46:32',554.840993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18954,12,12,'2023-02-09 10:46:32',555.374625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18955,12,12,'2023-02-09 10:46:32',555.385619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18956,12,12,'2023-02-09 10:46:32',555.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18957,12,12,'2023-02-09 10:46:32',555.824995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18958,12,12,'2023-02-09 10:46:32',556.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18959,12,12,'2023-02-09 10:46:32',556.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18960,12,12,'2023-02-09 10:46:32',556.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18961,12,12,'2023-02-09 10:46:32',556.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18962,12,12,'2023-02-09 10:46:32',557.418620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18963,12,12,'2023-02-09 10:46:32',557.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18964,12,12,'2023-02-09 10:46:32',557.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18965,12,12,'2023-02-09 10:46:32',557.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18966,12,12,'2023-02-09 10:46:32',558.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18967,12,12,'2023-02-09 10:46:32',558.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18968,12,12,'2023-02-09 10:46:32',558.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18969,12,12,'2023-02-09 10:46:32',558.920995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18970,12,12,'2023-02-09 10:46:32',559.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18971,12,12,'2023-02-09 10:46:32',559.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18972,12,12,'2023-02-09 10:46:32',559.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18973,12,12,'2023-02-09 10:46:32',559.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18974,12,12,'2023-02-09 10:46:32',560.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18975,12,12,'2023-02-09 10:46:32',560.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18976,12,12,'2023-02-09 10:46:32',560.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18977,12,12,'2023-02-09 10:46:32',560.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18978,12,12,'2023-02-09 10:46:32',561.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18979,12,12,'2023-02-09 10:46:32',561.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18980,12,12,'2023-02-09 10:46:32',561.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18981,12,12,'2023-02-09 10:46:32',561.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18982,12,12,'2023-02-09 10:46:32',562.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18983,12,12,'2023-02-09 10:46:32',562.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18984,12,12,'2023-02-09 10:46:32',562.945626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18985,12,12,'2023-02-09 10:46:32',562.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18986,12,12,'2023-02-09 10:46:32',563.535625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18987,12,12,'2023-02-09 10:46:32',563.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18988,12,12,'2023-02-09 10:46:32',563.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18989,12,12,'2023-02-09 10:46:32',563.999000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18990,12,12,'2023-02-09 10:46:32',564.557617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18991,12,12,'2023-02-09 10:46:32',564.568621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18992,12,12,'2023-02-09 10:46:32',564.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18993,12,12,'2023-02-09 10:46:32',565.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18994,12,12,'2023-02-09 10:46:32',565.574620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18995,12,12,'2023-02-09 10:46:32',565.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18996,12,12,'2023-02-09 10:46:32',566.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18997,12,12,'2023-02-09 10:46:32',566.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18998,12,12,'2023-02-09 10:46:32',566.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (18999,12,12,'2023-02-09 10:46:32',566.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19000,12,12,'2023-02-09 10:46:32',567.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19001,12,12,'2023-02-09 10:46:32',567.080999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19002,12,12,'2023-02-09 10:46:32',567.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19003,12,12,'2023-02-09 10:46:32',567.628622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19004,12,12,'2023-02-09 10:46:32',568.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19005,12,12,'2023-02-09 10:46:32',568.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19006,12,12,'2023-02-09 10:46:32',568.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19007,12,12,'2023-02-09 10:46:32',568.647617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19008,12,12,'2023-02-09 10:46:32',569.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19009,12,12,'2023-02-09 10:46:32',569.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19010,12,12,'2023-02-09 10:46:32',569.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19011,12,12,'2023-02-09 10:46:32',569.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19012,12,12,'2023-02-09 10:46:32',570.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19013,12,12,'2023-02-09 10:46:32',570.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19014,12,12,'2023-02-09 10:46:32',570.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19015,12,12,'2023-02-09 10:46:32',570.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19016,12,12,'2023-02-09 10:46:32',571.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19017,12,12,'2023-02-09 10:46:32',571.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19018,12,12,'2023-02-09 10:46:32',571.697621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19019,12,12,'2023-02-09 10:46:32',571.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19020,12,12,'2023-02-09 10:46:32',572.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19021,12,12,'2023-02-09 10:46:32',572.144993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19022,12,12,'2023-02-09 10:46:32',572.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19023,12,12,'2023-02-09 10:46:32',572.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19024,12,12,'2023-02-09 10:46:32',573.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19025,12,12,'2023-02-09 10:46:32',573.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19026,12,12,'2023-02-09 10:46:32',573.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19027,12,12,'2023-02-09 10:46:32',573.748626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19028,12,12,'2023-02-09 10:46:32',574.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19029,12,12,'2023-02-09 10:46:32',574.221999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19030,12,12,'2023-02-09 10:46:32',574.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19031,12,12,'2023-02-09 10:46:32',574.769622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19032,12,12,'2023-02-09 10:46:32',575.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19033,12,12,'2023-02-09 10:46:32',575.206000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19034,12,12,'2023-02-09 10:46:32',575.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19035,12,12,'2023-02-09 10:46:32',575.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19036,12,12,'2023-02-09 10:46:32',576.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19037,12,12,'2023-02-09 10:46:32',576.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19038,12,12,'2023-02-09 10:46:32',576.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19039,12,12,'2023-02-09 10:46:32',576.807621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19040,12,12,'2023-02-09 10:46:32',577.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19041,12,12,'2023-02-09 10:46:32',577.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19042,12,12,'2023-02-09 10:46:32',577.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19043,12,12,'2023-02-09 10:46:32',577.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19044,12,12,'2023-02-09 10:46:32',578.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19045,12,12,'2023-02-09 10:46:32',578.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19046,12,12,'2023-02-09 10:46:32',578.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19047,12,12,'2023-02-09 10:46:32',578.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19048,12,12,'2023-02-09 10:46:32',579.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19049,12,12,'2023-02-09 10:46:32',579.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19050,12,12,'2023-02-09 10:46:32',579.858621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19051,12,12,'2023-02-09 10:46:32',579.869624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19052,12,12,'2023-02-09 10:46:32',580.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19053,12,12,'2023-02-09 10:46:32',580.340996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19054,12,12,'2023-02-09 10:46:32',580.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19055,12,12,'2023-02-09 10:46:32',580.886617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19056,12,12,'2023-02-09 10:46:32',581.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19057,12,12,'2023-02-09 10:46:32',581.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19058,12,12,'2023-02-09 10:46:32',581.897626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19059,12,12,'2023-02-09 10:46:32',581.908619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19060,12,12,'2023-02-09 10:46:32',582.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19061,12,12,'2023-02-09 10:46:32',582.344998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19062,12,12,'2023-02-09 10:46:32',582.914619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19063,12,12,'2023-02-09 10:46:32',582.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19064,12,12,'2023-02-09 10:46:32',583.345616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19065,12,12,'2023-02-09 10:46:32',583.364999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19066,12,12,'2023-02-09 10:46:32',583.936621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19067,12,12,'2023-02-09 10:46:32',583.947625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19068,12,12,'2023-02-09 10:46:32',584.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19069,12,12,'2023-02-09 10:46:32',584.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19070,12,12,'2023-02-09 10:46:32',584.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19071,12,12,'2023-02-09 10:46:32',584.968621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19072,12,12,'2023-02-09 10:46:32',585.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19073,12,12,'2023-02-09 10:46:32',585.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19074,12,12,'2023-02-09 10:46:32',585.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19075,12,12,'2023-02-09 10:46:32',585.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19076,12,12,'2023-02-09 10:46:32',586.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19077,12,12,'2023-02-09 10:46:32',586.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19078,12,12,'2023-02-09 10:46:32',586.998624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19079,12,12,'2023-02-09 10:46:32',587.009618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19080,12,12,'2023-02-09 10:46:32',587.425618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19081,12,12,'2023-02-09 10:46:32',587.480999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19082,12,12,'2023-02-09 10:46:32',588.015617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19083,12,12,'2023-02-09 10:46:32',588.026621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19084,12,12,'2023-02-09 10:46:32',588.445619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19085,12,12,'2023-02-09 10:46:32',588.465001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19086,12,12,'2023-02-09 10:46:32',589.037619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19087,12,12,'2023-02-09 10:46:32',589.048623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19088,12,12,'2023-02-09 10:46:32',589.465619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19089,12,12,'2023-02-09 10:46:32',589.485002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19090,12,12,'2023-02-09 10:46:32',590.054622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19091,12,12,'2023-02-09 10:46:32',590.065626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19092,12,12,'2023-02-09 10:46:32',590.485620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19093,12,12,'2023-02-09 10:46:32',590.505002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19094,12,12,'2023-02-09 10:46:32',591.076624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19095,12,12,'2023-02-09 10:46:32',591.087618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19096,12,12,'2023-02-09 10:46:32',591.505620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19097,12,12,'2023-02-09 10:46:32',591.538994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19098,12,12,'2023-02-09 10:46:32',592.097621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19099,12,12,'2023-02-09 10:46:32',592.108624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19100,12,12,'2023-02-09 10:46:32',592.525621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19101,12,12,'2023-02-09 10:46:32',592.544993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19102,12,12,'2023-02-09 10:46:32',593.116625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19103,12,12,'2023-02-09 10:46:32',593.126623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19104,12,12,'2023-02-09 10:46:32',593.545621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19105,12,12,'2023-02-09 10:46:32',593.564994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19106,12,12,'2023-02-09 10:46:32',594.137622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19107,12,12,'2023-02-09 10:46:32',594.148625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19108,12,12,'2023-02-09 10:46:32',594.565622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19109,12,12,'2023-02-09 10:46:32',594.620993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19110,12,12,'2023-02-09 10:46:32',595.155621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19111,12,12,'2023-02-09 10:46:32',595.166624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19112,12,12,'2023-02-09 10:46:32',595.585622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19113,12,12,'2023-02-09 10:46:32',595.604995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19114,12,12,'2023-02-09 10:46:32',596.176617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19115,12,12,'2023-02-09 10:46:32',596.187621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19116,12,12,'2023-02-09 10:46:32',596.605623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19117,12,12,'2023-02-09 10:46:32',596.624995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19118,12,12,'2023-02-09 10:46:32',597.194626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19119,12,12,'2023-02-09 10:46:32',597.205620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19120,12,12,'2023-02-09 10:46:32',597.625623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19121,12,12,'2023-02-09 10:46:32',597.644996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19122,12,12,'2023-02-09 10:46:32',598.215622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19123,12,12,'2023-02-09 10:46:32',598.226626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19124,12,12,'2023-02-09 10:46:32',598.645624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19125,12,12,'2023-02-09 10:46:32',598.664996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19126,12,12,'2023-02-09 10:46:32',599.237624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19127,12,12,'2023-02-09 10:46:32',599.248618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19128,12,12,'2023-02-09 10:46:32',599.665624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19129,12,12,'2023-02-09 10:46:32',599.684997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19130,12,12,'2023-02-09 10:46:32',600.254617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19131,12,12,'2023-02-09 10:46:32',600.265621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19132,12,12,'2023-02-09 10:46:32',600.685625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19133,12,12,'2023-02-09 10:46:32',600.704997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19134,12,12,'2023-02-09 10:46:32',601.276619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19135,12,12,'2023-02-09 10:46:32',601.287623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19136,12,12,'2023-02-09 10:46:32',601.705625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19137,12,12,'2023-02-09 10:46:32',601.760996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19138,12,12,'2023-02-09 10:46:32',602.297626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19139,12,12,'2023-02-09 10:46:32',602.308619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19140,12,12,'2023-02-09 10:46:32',602.725626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19141,12,12,'2023-02-09 10:46:32',602.758999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19142,12,12,'2023-02-09 10:46:32',603.316620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19143,12,12,'2023-02-09 10:46:32',603.327624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19144,12,12,'2023-02-09 10:46:32',603.745626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19145,12,12,'2023-02-09 10:46:32',603.764999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19146,12,12,'2023-02-09 10:46:32',604.334619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19147,12,12,'2023-02-09 10:46:32',604.345623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19148,12,12,'2023-02-09 10:46:32',604.765617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19149,12,12,'2023-02-09 10:46:32',604.784999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19150,12,12,'2023-02-09 10:46:32',605.355626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19151,12,12,'2023-02-09 10:46:32',605.366619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19152,12,12,'2023-02-09 10:46:32',605.785617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19153,12,12,'2023-02-09 10:46:32',605.805000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19154,12,12,'2023-02-09 10:46:32',606.377618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19155,12,12,'2023-02-09 10:46:32',606.388621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19156,12,12,'2023-02-09 10:46:32',606.805618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19157,12,12,'2023-02-09 10:46:32',606.825000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19158,12,12,'2023-02-09 10:46:32',607.394621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19159,12,12,'2023-02-09 10:46:32',607.405625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19160,12,12,'2023-02-09 10:46:32',607.825618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19161,12,12,'2023-02-09 10:46:32',607.845001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19162,12,12,'2023-02-09 10:46:32',608.416623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19163,12,12,'2023-02-09 10:46:32',608.427617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19164,12,12,'2023-02-09 10:46:32',608.845619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19165,12,12,'2023-02-09 10:46:32',608.865001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19166,12,12,'2023-02-09 10:46:32',609.437619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19167,12,12,'2023-02-09 10:46:32',609.448623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19168,12,12,'2023-02-09 10:46:32',609.865619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19169,12,12,'2023-02-09 10:46:32',609.885002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19170,12,12,'2023-02-09 10:46:32',610.456624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19171,12,12,'2023-02-09 10:46:32',610.466622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19172,12,12,'2023-02-09 10:46:32',610.885620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19173,12,12,'2023-02-09 10:46:32',610.941001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19174,12,12,'2023-02-09 10:46:32',611.477620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19175,12,12,'2023-02-09 10:46:32',611.488624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19176,12,12,'2023-02-09 10:46:32',611.905620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19177,12,12,'2023-02-09 10:46:32',611.925003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19178,12,12,'2023-02-09 10:46:32',612.495619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19179,12,12,'2023-02-09 10:46:32',612.506623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19180,12,12,'2023-02-09 10:46:32',612.925621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19181,12,12,'2023-02-09 10:46:32',612.944993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19182,12,12,'2023-02-09 10:46:32',613.516625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19183,12,12,'2023-02-09 10:46:32',613.527619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19184,12,12,'2023-02-09 10:46:32',613.945621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19185,12,12,'2023-02-09 10:46:32',613.964994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19186,12,12,'2023-02-09 10:46:32',614.538617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19187,12,12,'2023-02-09 10:46:32',614.549621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19188,12,12,'2023-02-09 10:46:32',614.965622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19189,12,12,'2023-02-09 10:46:32',614.984994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19190,12,12,'2023-02-09 10:46:32',615.555621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19191,12,12,'2023-02-09 10:46:32',615.566624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19192,12,12,'2023-02-09 10:46:32',615.985622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19193,12,12,'2023-02-09 10:46:32',616.004995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19194,12,12,'2023-02-09 10:46:32',616.577623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19195,12,12,'2023-02-09 10:46:32',616.588626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19196,12,12,'2023-02-09 10:46:32',617.005623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19197,12,12,'2023-02-09 10:46:32',617.024995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19198,12,12,'2023-02-09 10:46:32',617.598619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19199,12,12,'2023-02-09 10:46:32',617.609623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19200,12,12,'2023-02-09 10:46:32',618.025623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19201,12,12,'2023-02-09 10:46:32',618.044996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19202,12,12,'2023-02-09 10:46:32',618.616618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19203,12,12,'2023-02-09 10:46:32',618.627622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19204,12,12,'2023-02-09 10:46:32',619.045624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19205,12,12,'2023-02-09 10:46:32',619.078997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19206,12,12,'2023-02-09 10:46:32',619.637624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19207,12,12,'2023-02-09 10:46:32',619.648618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19208,12,12,'2023-02-09 10:46:32',620.065624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19209,12,12,'2023-02-09 10:46:32',620.084997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19210,12,12,'2023-02-09 10:46:32',620.656619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19211,12,12,'2023-02-09 10:46:32',620.666617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19212,12,12,'2023-02-09 10:46:32',621.085625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19213,12,12,'2023-02-09 10:46:32',621.140996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19214,12,12,'2023-02-09 10:46:32',621.678621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19215,12,12,'2023-02-09 10:46:32',621.689625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19216,12,12,'2023-02-09 10:46:32',622.105625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19217,12,12,'2023-02-09 10:46:32',622.124998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19218,12,12,'2023-02-09 10:46:32',622.695624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19219,12,12,'2023-02-09 10:46:32',622.705622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19220,12,12,'2023-02-09 10:46:32',623.125626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19221,12,12,'2023-02-09 10:46:32',623.144998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19222,12,12,'2023-02-09 10:46:32',623.717626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19223,12,12,'2023-02-09 10:46:32',623.728620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19224,12,12,'2023-02-09 10:46:32',624.145616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19225,12,12,'2023-02-09 10:46:32',624.164999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19226,12,12,'2023-02-09 10:46:32',624.738623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19227,12,12,'2023-02-09 10:46:32',624.749616,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19228,12,12,'2023-02-09 10:46:32',625.165617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19229,12,12,'2023-02-09 10:46:32',625.184999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19230,12,12,'2023-02-09 10:46:32',625.756621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19231,12,12,'2023-02-09 10:46:32',625.767625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19232,12,12,'2023-02-09 10:46:32',626.185617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19233,12,12,'2023-02-09 10:46:32',626.205000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19234,12,12,'2023-02-09 10:46:32',626.777618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19235,12,12,'2023-02-09 10:46:32',626.788621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19236,12,12,'2023-02-09 10:46:32',627.205618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19237,12,12,'2023-02-09 10:46:32',627.260999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19238,12,12,'2023-02-09 10:46:32',627.795617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19239,12,12,'2023-02-09 10:46:32',627.806620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19240,12,12,'2023-02-09 10:46:32',628.225618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19241,12,12,'2023-02-09 10:46:32',628.245001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19242,12,12,'2023-02-09 10:46:32',628.816623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19243,12,12,'2023-02-09 10:46:32',628.827617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19244,12,12,'2023-02-09 10:46:32',629.245619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19245,12,12,'2023-02-09 10:46:32',629.265001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19246,12,12,'2023-02-09 10:46:32',629.835618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19247,12,12,'2023-02-09 10:46:32',629.846621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19248,12,12,'2023-02-09 10:46:32',630.265619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19249,12,12,'2023-02-09 10:46:32',630.298993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19250,12,12,'2023-02-09 10:46:32',630.856624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19251,12,12,'2023-02-09 10:46:32',630.866622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19252,12,12,'2023-02-09 10:46:32',631.285620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19253,12,12,'2023-02-09 10:46:32',631.305002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19254,12,12,'2023-02-09 10:46:32',631.878626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19255,12,12,'2023-02-09 10:46:32',631.889620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19256,12,12,'2023-02-09 10:46:32',632.305620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19257,12,12,'2023-02-09 10:46:32',632.325003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19258,12,12,'2023-02-09 10:46:32',632.895619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19259,12,12,'2023-02-09 10:46:32',632.906623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19260,12,12,'2023-02-09 10:46:32',633.325621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19261,12,12,'2023-02-09 10:46:32',633.344993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19262,12,12,'2023-02-09 10:46:32',633.917621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19263,12,12,'2023-02-09 10:46:32',633.928625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19264,12,12,'2023-02-09 10:46:32',634.345621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19265,12,12,'2023-02-09 10:46:32',634.364994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19266,12,12,'2023-02-09 10:46:32',634.934624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19267,12,12,'2023-02-09 10:46:32',634.945618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19268,12,12,'2023-02-09 10:46:32',635.365622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19269,12,12,'2023-02-09 10:46:32',635.420993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19270,12,12,'2023-02-09 10:46:32',635.956616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19271,12,12,'2023-02-09 10:46:32',635.967620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19272,12,12,'2023-02-09 10:46:32',636.385622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19273,12,12,'2023-02-09 10:46:32',636.404995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19274,12,12,'2023-02-09 10:46:32',636.974625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19275,12,12,'2023-02-09 10:46:32',636.985619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19276,12,12,'2023-02-09 10:46:32',637.405623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19277,12,12,'2023-02-09 10:46:32',637.424995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19278,12,12,'2023-02-09 10:46:32',637.996617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19279,12,12,'2023-02-09 10:46:32',638.007621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19280,12,12,'2023-02-09 10:46:32',638.425623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19281,12,12,'2023-02-09 10:46:32',638.444996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19282,12,12,'2023-02-09 10:46:32',639.018619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19283,12,12,'2023-02-09 10:46:32',639.029623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19284,12,12,'2023-02-09 10:46:32',639.445624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19285,12,12,'2023-02-09 10:46:32',639.464996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19286,12,12,'2023-02-09 10:46:32',640.034617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19287,12,12,'2023-02-09 10:46:32',640.045621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19288,12,12,'2023-02-09 10:46:32',640.465624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19289,12,12,'2023-02-09 10:46:32',640.484997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19290,12,12,'2023-02-09 10:46:32',641.057625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19291,12,12,'2023-02-09 10:46:32',641.068618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19292,12,12,'2023-02-09 10:46:32',641.485625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19293,12,12,'2023-02-09 10:46:32',641.504997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19294,12,12,'2023-02-09 10:46:32',642.074618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19295,12,12,'2023-02-09 10:46:32',642.085622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19296,12,12,'2023-02-09 10:46:32',642.505625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19297,12,12,'2023-02-09 10:46:32',642.524998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19298,12,12,'2023-02-09 10:46:32',643.096620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19299,12,12,'2023-02-09 10:46:32',643.107624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19300,12,12,'2023-02-09 10:46:32',643.525626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19301,12,12,'2023-02-09 10:46:32',643.544998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19302,12,12,'2023-02-09 10:46:32',644.117626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19303,12,12,'2023-02-09 10:46:32',644.128620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19304,12,12,'2023-02-09 10:46:32',644.545626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19305,12,12,'2023-02-09 10:46:32',644.564999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19306,12,12,'2023-02-09 10:46:32',645.135625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19307,12,12,'2023-02-09 10:46:32',645.146619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19308,12,12,'2023-02-09 10:46:32',645.565617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19309,12,12,'2023-02-09 10:46:32',645.584999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19310,12,12,'2023-02-09 10:46:32',646.156621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19311,12,12,'2023-02-09 10:46:32',646.167625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19312,12,12,'2023-02-09 10:46:32',646.585617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19313,12,12,'2023-02-09 10:46:32',646.619001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19314,12,12,'2023-02-09 10:46:32',647.175626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19315,12,12,'2023-02-09 10:46:32',647.185624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19316,12,12,'2023-02-09 10:46:32',647.605618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19317,12,12,'2023-02-09 10:46:32',647.625000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19318,12,12,'2023-02-09 10:46:32',648.196622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19319,12,12,'2023-02-09 10:46:32',648.206620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19320,12,12,'2023-02-09 10:46:32',648.625618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19321,12,12,'2023-02-09 10:46:32',648.645001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19322,12,12,'2023-02-09 10:46:32',649.218625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19323,12,12,'2023-02-09 10:46:32',649.229618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19324,12,12,'2023-02-09 10:46:32',649.645619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19325,12,12,'2023-02-09 10:46:32',649.701000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19326,12,12,'2023-02-09 10:46:32',650.235618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19327,12,12,'2023-02-09 10:46:32',650.246621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19328,12,12,'2023-02-09 10:46:32',650.665619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19329,12,12,'2023-02-09 10:46:32',650.685002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19330,12,12,'2023-02-09 10:46:32',651.257620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19331,12,12,'2023-02-09 10:46:32',651.268623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19332,12,12,'2023-02-09 10:46:32',651.685620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19333,12,12,'2023-02-09 10:46:32',651.705002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19334,12,12,'2023-02-09 10:46:32',652.278626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19335,12,12,'2023-02-09 10:46:32',652.289620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19336,12,12,'2023-02-09 10:46:32',652.705620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19337,12,12,'2023-02-09 10:46:32',652.725003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19338,12,12,'2023-02-09 10:46:32',653.297621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19339,12,12,'2023-02-09 10:46:32',653.307619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19340,12,12,'2023-02-09 10:46:32',653.725621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19341,12,12,'2023-02-09 10:46:32',653.744993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19342,12,12,'2023-02-09 10:46:32',654.314624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19343,12,12,'2023-02-09 10:46:32',654.325618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19344,12,12,'2023-02-09 10:46:32',654.745621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19345,12,12,'2023-02-09 10:46:32',654.764994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19346,12,12,'2023-02-09 10:46:32',655.335620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19347,12,12,'2023-02-09 10:46:32',655.346624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19348,12,12,'2023-02-09 10:46:32',655.765622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19349,12,12,'2023-02-09 10:46:32',655.821003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19350,12,12,'2023-02-09 10:46:32',656.358618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19351,12,12,'2023-02-09 10:46:32',656.368626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19352,12,12,'2023-02-09 10:46:32',656.785622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19353,12,12,'2023-02-09 10:46:32',656.804995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19354,12,12,'2023-02-09 10:46:32',657.375621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19355,12,12,'2023-02-09 10:46:32',657.386625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19356,12,12,'2023-02-09 10:46:32',657.805623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19357,12,12,'2023-02-09 10:46:32',657.838996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19358,12,12,'2023-02-09 10:46:32',658.397623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19359,12,12,'2023-02-09 10:46:32',658.408617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19360,12,12,'2023-02-09 10:46:32',658.825623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19361,12,12,'2023-02-09 10:46:32',658.844996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19362,12,12,'2023-02-09 10:46:32',659.418619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19363,12,12,'2023-02-09 10:46:32',659.429623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19364,12,12,'2023-02-09 10:46:32',659.845624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19365,12,12,'2023-02-09 10:46:32',659.864996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19366,12,12,'2023-02-09 10:46:32',660.436618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19367,12,12,'2023-02-09 10:46:32',660.447622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19368,12,12,'2023-02-09 10:46:32',660.865624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19369,12,12,'2023-02-09 10:46:32',660.884997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19370,12,12,'2023-02-09 10:46:32',661.457625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19371,12,12,'2023-02-09 10:46:32',661.468618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19372,12,12,'2023-02-09 10:46:32',661.885625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19373,12,12,'2023-02-09 10:46:32',661.904997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19374,12,12,'2023-02-09 10:46:32',662.475624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19375,12,12,'2023-02-09 10:46:32',662.486617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19376,12,12,'2023-02-09 10:46:32',662.905625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19377,12,12,'2023-02-09 10:46:32',662.924998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19378,12,12,'2023-02-09 10:46:32',663.496620,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19379,12,12,'2023-02-09 10:46:32',663.507624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19380,12,12,'2023-02-09 10:46:32',663.925626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19381,12,12,'2023-02-09 10:46:32',663.944998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19382,12,12,'2023-02-09 10:46:32',664.514619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19383,12,12,'2023-02-09 10:46:32',664.525623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19384,12,12,'2023-02-09 10:46:32',664.945616,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19385,12,12,'2023-02-09 10:46:32',664.964999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19386,12,12,'2023-02-09 10:46:32',665.536621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19387,12,12,'2023-02-09 10:46:32',665.546619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19388,12,12,'2023-02-09 10:46:32',665.965617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19389,12,12,'2023-02-09 10:46:32',666.020998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19390,12,12,'2023-02-09 10:46:32',666.558623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19391,12,12,'2023-02-09 10:46:32',666.569617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19392,12,12,'2023-02-09 10:46:32',666.985617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19393,12,12,'2023-02-09 10:46:32',667.005000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19394,12,12,'2023-02-09 10:46:32',667.575626,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19395,12,12,'2023-02-09 10:46:32',667.585624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19396,12,12,'2023-02-09 10:46:32',668.005618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19397,12,12,'2023-02-09 10:46:32',668.025000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19398,12,12,'2023-02-09 10:46:32',668.597618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19399,12,12,'2023-02-09 10:46:32',668.608622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19400,12,12,'2023-02-09 10:46:32',669.025618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19401,12,12,'2023-02-09 10:46:32',669.045001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19402,12,12,'2023-02-09 10:46:32',669.618625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19403,12,12,'2023-02-09 10:46:32',669.629618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19404,12,12,'2023-02-09 10:46:32',670.045619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19405,12,12,'2023-02-09 10:46:32',670.065001,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19406,12,12,'2023-02-09 10:46:32',670.636623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19407,12,12,'2023-02-09 10:46:32',670.646621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19408,12,12,'2023-02-09 10:46:32',671.065619,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19409,12,12,'2023-02-09 10:46:32',671.085002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19410,12,12,'2023-02-09 10:46:32',671.654622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19411,12,12,'2023-02-09 10:46:32',671.665626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19412,12,12,'2023-02-09 10:46:32',672.085620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19413,12,12,'2023-02-09 10:46:32',672.105002,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19414,12,12,'2023-02-09 10:46:32',672.675619,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19415,12,12,'2023-02-09 10:46:32',672.686622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19416,12,12,'2023-02-09 10:46:32',673.105620,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19417,12,12,'2023-02-09 10:46:32',673.125003,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19418,12,12,'2023-02-09 10:46:32',673.698616,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19419,12,12,'2023-02-09 10:46:32',673.708624,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19420,12,12,'2023-02-09 10:46:32',674.125621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19421,12,12,'2023-02-09 10:46:32',674.158994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19422,12,12,'2023-02-09 10:46:32',674.714624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19423,12,12,'2023-02-09 10:46:32',674.725618,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19424,12,12,'2023-02-09 10:46:32',675.145621,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19425,12,12,'2023-02-09 10:46:32',675.164994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19426,12,12,'2023-02-09 10:46:32',675.737622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19427,12,12,'2023-02-09 10:46:32',675.748625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19428,12,12,'2023-02-09 10:46:32',676.165622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19429,12,12,'2023-02-09 10:46:32',676.184994,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19430,12,12,'2023-02-09 10:46:32',676.758618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19431,12,12,'2023-02-09 10:46:32',676.768626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19432,12,12,'2023-02-09 10:46:32',677.185622,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19433,12,12,'2023-02-09 10:46:32',677.240993,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19434,12,12,'2023-02-09 10:46:32',677.776617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19435,12,12,'2023-02-09 10:46:32',677.787621,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19436,12,12,'2023-02-09 10:46:32',678.205623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19437,12,12,'2023-02-09 10:46:32',678.224995,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19438,12,12,'2023-02-09 10:46:32',678.797623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19439,12,12,'2023-02-09 10:46:32',678.808617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19440,12,12,'2023-02-09 10:46:32',679.225623,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19441,12,12,'2023-02-09 10:46:32',679.244996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19442,12,12,'2023-02-09 10:46:32',679.815622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19443,12,12,'2023-02-09 10:46:32',679.826626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19444,12,12,'2023-02-09 10:46:32',680.245624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19445,12,12,'2023-02-09 10:46:32',680.264996,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19446,12,12,'2023-02-09 10:46:32',680.836618,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19447,12,12,'2023-02-09 10:46:32',680.847622,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19448,12,12,'2023-02-09 10:46:32',681.265624,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19449,12,12,'2023-02-09 10:46:32',681.284997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19450,12,12,'2023-02-09 10:46:32',681.854617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19451,12,12,'2023-02-09 10:46:32',681.863619,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19452,12,12,'2023-02-09 10:46:32',682.285625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19453,12,12,'2023-02-09 10:46:32',682.304997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19454,12,12,'2023-02-09 10:46:32',682.875624,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19455,12,12,'2023-02-09 10:46:32',682.889625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19456,12,12,'2023-02-09 10:46:32',683.305625,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19457,12,12,'2023-02-09 10:46:32',683.324998,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19458,12,12,'2023-02-09 10:46:32',683.898621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19459,12,12,'2023-02-09 10:46:32',683.909625,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19460,12,12,'2023-02-09 10:46:32',684.325626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19461,12,12,'2023-02-09 10:46:32',684.380997,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19462,12,12,'2023-02-09 10:46:32',684.915625,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19463,12,12,'2023-02-09 10:46:32',684.925623,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19464,12,12,'2023-02-09 10:46:32',685.345626,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19465,12,12,'2023-02-09 10:46:32',685.379000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19466,12,12,'2023-02-09 10:46:32',685.937617,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19467,12,12,'2023-02-09 10:46:32',685.948620,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19468,12,12,'2023-02-09 10:46:32',686.365617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19469,12,12,'2023-02-09 10:46:32',686.384999,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19470,12,12,'2023-02-09 10:46:32',686.958623,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19471,12,12,'2023-02-09 10:46:32',686.969617,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19472,12,12,'2023-02-09 10:46:32',687.385617,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19473,12,12,'2023-02-09 10:46:32',687.405000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19474,12,12,'2023-02-09 10:46:32',687.976622,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19475,12,12,'2023-02-09 10:46:32',687.987626,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19476,12,12,'2023-02-09 10:46:32',688.405618,0.000000,NULL,'6',NULL,NULL,'stms',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19477,12,12,'2023-02-09 10:46:32',688.425000,0.000000,NULL,'nan',NULL,NULL,'DIN2',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19478,12,12,'2023-02-09 10:46:32',688.994621,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19479,13,13,'2023-02-09 11:06:27',0.668997,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19480,13,13,'2023-02-09 11:06:27',0.868342,0.000000,NULL,'2',NULL,NULL,'SESS',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19481,13,13,'2023-02-09 11:06:27',0.920343,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19482,13,13,'2023-02-09 11:06:27',2.017000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19483,13,13,'2023-02-09 11:06:27',5.987340,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19484,13,13,'2023-02-09 11:06:27',6.087339,0.000000,NULL,'nan',NULL,NULL,'bas+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19485,13,13,'2023-02-09 11:06:27',186.160341,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19486,13,13,'2023-02-09 11:06:27',186.210995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19487,14,14,'2023-02-09 11:12:06',0.683993,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19488,14,14,'2023-02-09 11:12:06',0.884948,0.000000,NULL,'2',NULL,NULL,'SESS',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19489,14,14,'2023-02-09 11:12:06',0.934948,0.000000,NULL,'1',NULL,NULL,'CELL',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19490,14,14,'2023-02-09 11:12:06',2.018999,0.000000,NULL,'nan',NULL,NULL,'VEnd',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19491,14,14,'2023-02-09 11:12:06',2.033000,0.000000,NULL,'5',NULL,NULL,'boundary',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19492,14,14,'2023-02-09 11:12:06',2.539994,0.000000,NULL,'nan',NULL,NULL,'VBeg',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19493,14,14,'2023-02-09 11:12:06',4.737950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19494,14,14,'2023-02-09 11:12:06',4.746942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19495,14,14,'2023-02-09 11:12:06',5.019994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19496,14,14,'2023-02-09 11:12:06',5.252944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19497,14,14,'2023-02-09 11:12:06',5.526992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19498,14,14,'2023-02-09 11:12:06',5.748948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19499,14,14,'2023-02-09 11:12:06',5.754943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19500,14,14,'2023-02-09 11:12:06',5.772947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19501,14,14,'2023-02-09 11:12:06',6.046000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19502,14,14,'2023-02-09 11:12:06',6.279945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19503,14,14,'2023-02-09 11:12:06',6.552997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19504,14,14,'2023-02-09 11:12:06',6.774943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19505,14,14,'2023-02-09 11:12:06',6.788945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19506,14,14,'2023-02-09 11:12:06',6.798943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19507,14,14,'2023-02-09 11:12:06',7.073001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19508,14,14,'2023-02-09 11:12:06',7.305950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19509,14,14,'2023-02-09 11:12:06',7.578993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19510,14,14,'2023-02-09 11:12:06',7.800949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19511,14,14,'2023-02-09 11:12:06',7.806944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19512,14,14,'2023-02-09 11:12:06',7.824948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19513,14,14,'2023-02-09 11:12:06',8.098996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19514,14,14,'2023-02-09 11:12:06',8.331946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19515,14,14,'2023-02-09 11:12:06',8.605994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19516,14,14,'2023-02-09 11:12:06',8.826944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19517,14,14,'2023-02-09 11:12:06',8.833945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19518,14,14,'2023-02-09 11:12:06',8.851949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19519,14,14,'2023-02-09 11:12:06',9.125001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19520,14,14,'2023-02-09 11:12:06',9.357951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19521,14,14,'2023-02-09 11:12:06',9.631999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19522,14,14,'2023-02-09 11:12:06',9.852949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19523,14,14,'2023-02-09 11:12:06',9.859950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19524,14,14,'2023-02-09 11:12:06',9.877944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19525,14,14,'2023-02-09 11:12:06',10.151992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19526,14,14,'2023-02-09 11:12:06',10.383946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19527,14,14,'2023-02-09 11:12:06',10.657994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19528,14,14,'2023-02-09 11:12:06',10.878945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19529,14,14,'2023-02-09 11:12:06',10.885945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19530,14,14,'2023-02-09 11:12:06',10.903949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19531,14,14,'2023-02-09 11:12:06',11.177997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19532,14,14,'2023-02-09 11:12:06',11.410947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19533,14,14,'2023-02-09 11:12:06',11.684000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19534,14,14,'2023-02-09 11:12:06',11.905946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19535,14,14,'2023-02-09 11:12:06',11.912946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19536,14,14,'2023-02-09 11:12:06',11.930951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19537,14,14,'2023-02-09 11:12:06',12.203993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19538,14,14,'2023-02-09 11:12:06',12.436943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19539,14,14,'2023-02-09 11:12:06',12.711001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19540,14,14,'2023-02-09 11:12:06',12.931951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19541,14,14,'2023-02-09 11:12:06',12.938951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19542,14,14,'2023-02-09 11:12:06',12.956946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19543,14,14,'2023-02-09 11:12:06',13.229998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19544,14,14,'2023-02-09 11:12:06',13.463944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19545,14,14,'2023-02-09 11:12:06',13.736996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19546,14,14,'2023-02-09 11:12:06',13.957946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19547,14,14,'2023-02-09 11:12:06',13.964947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19548,14,14,'2023-02-09 11:12:06',13.982951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19549,14,14,'2023-02-09 11:12:06',14.256999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19550,14,14,'2023-02-09 11:12:06',14.489949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19551,14,14,'2023-02-09 11:12:06',14.763001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19552,14,14,'2023-02-09 11:12:06',14.984947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19553,14,14,'2023-02-09 11:12:06',14.991948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19554,14,14,'2023-02-09 11:12:06',15.009942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19555,14,14,'2023-02-09 11:12:06',15.282994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19556,14,14,'2023-02-09 11:12:06',15.515944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19557,14,14,'2023-02-09 11:12:06',15.790002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19558,14,14,'2023-02-09 11:12:06',16.010942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19559,14,14,'2023-02-09 11:12:06',16.017943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19560,14,14,'2023-02-09 11:12:06',16.035947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19561,14,14,'2023-02-09 11:12:06',16.309000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19562,14,14,'2023-02-09 11:12:06',16.541949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19563,14,14,'2023-02-09 11:12:06',16.815997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19564,14,14,'2023-02-09 11:12:06',17.036948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19565,14,14,'2023-02-09 11:12:06',17.043948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19566,14,14,'2023-02-09 11:12:06',17.061943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19567,14,14,'2023-02-09 11:12:06',17.336001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19568,14,14,'2023-02-09 11:12:06',17.567945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19569,14,14,'2023-02-09 11:12:06',17.841993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19570,14,14,'2023-02-09 11:12:06',18.062943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19571,14,14,'2023-02-09 11:12:06',18.069944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19572,14,14,'2023-02-09 11:12:06',18.087948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19573,14,14,'2023-02-09 11:12:06',18.361996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19574,14,14,'2023-02-09 11:12:06',18.594946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19575,14,14,'2023-02-09 11:12:06',18.868994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19576,14,14,'2023-02-09 11:12:06',19.088948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19577,14,14,'2023-02-09 11:12:06',19.095949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19578,14,14,'2023-02-09 11:12:06',19.113943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19579,14,14,'2023-02-09 11:12:06',19.388001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19580,14,14,'2023-02-09 11:12:06',19.620951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19581,14,14,'2023-02-09 11:12:06',19.894999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19582,14,14,'2023-02-09 11:12:06',20.115949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19583,14,14,'2023-02-09 11:12:06',20.122950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19584,14,14,'2023-02-09 11:12:06',20.140944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19585,14,14,'2023-02-09 11:12:06',20.414992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19586,14,14,'2023-02-09 11:12:06',20.646946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19587,14,14,'2023-02-09 11:12:06',20.920994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19588,14,14,'2023-02-09 11:12:06',21.141945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19589,14,14,'2023-02-09 11:12:06',21.148945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19590,14,14,'2023-02-09 11:12:06',21.166949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19591,14,14,'2023-02-09 11:12:06',21.440997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19592,14,14,'2023-02-09 11:12:06',21.673947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19593,14,14,'2023-02-09 11:12:06',21.947995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19594,14,14,'2023-02-09 11:12:06',22.168946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19595,14,14,'2023-02-09 11:12:06',22.174950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19596,14,14,'2023-02-09 11:12:06',22.192945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19597,14,14,'2023-02-09 11:12:06',22.466993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19598,14,14,'2023-02-09 11:12:06',22.699943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19599,14,14,'2023-02-09 11:12:06',22.974001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19600,14,14,'2023-02-09 11:12:06',23.194951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19601,14,14,'2023-02-09 11:12:06',23.201952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19602,14,14,'2023-02-09 11:12:06',23.219946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19603,14,14,'2023-02-09 11:12:06',23.492998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19604,14,14,'2023-02-09 11:12:06',23.725948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19605,14,14,'2023-02-09 11:12:06',23.999996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19606,14,14,'2023-02-09 11:12:06',24.220946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19607,14,14,'2023-02-09 11:12:06',24.227947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19608,14,14,'2023-02-09 11:12:06',24.245951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19609,14,14,'2023-02-09 11:12:06',24.519999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19610,14,14,'2023-02-09 11:12:06',24.751943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19611,14,14,'2023-02-09 11:12:06',25.026001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19612,14,14,'2023-02-09 11:12:06',25.246952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19613,14,14,'2023-02-09 11:12:06',25.253942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19614,14,14,'2023-02-09 11:12:06',25.271946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19615,14,14,'2023-02-09 11:12:06',25.545994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19616,14,14,'2023-02-09 11:12:06',25.777948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19617,14,14,'2023-02-09 11:12:06',26.052992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19618,14,14,'2023-02-09 11:12:06',26.273943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19619,14,14,'2023-02-09 11:12:06',26.280943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19620,14,14,'2023-02-09 11:12:06',26.297942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19621,14,14,'2023-02-09 11:12:06',26.572000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19622,14,14,'2023-02-09 11:12:06',26.804949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19623,14,14,'2023-02-09 11:12:06',27.078997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19624,14,14,'2023-02-09 11:12:06',27.299948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19625,14,14,'2023-02-09 11:12:06',27.306948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19626,14,14,'2023-02-09 11:12:06',27.324943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19627,14,14,'2023-02-09 11:12:06',27.599001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19628,14,14,'2023-02-09 11:12:06',27.830945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19629,14,14,'2023-02-09 11:12:06',28.103997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19630,14,14,'2023-02-09 11:12:06',28.325943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19631,14,14,'2023-02-09 11:12:06',28.332944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19632,14,14,'2023-02-09 11:12:06',28.350948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19633,14,14,'2023-02-09 11:12:06',28.624996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19634,14,14,'2023-02-09 11:12:06',28.856950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19635,14,14,'2023-02-09 11:12:06',29.130998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19636,14,14,'2023-02-09 11:12:06',29.351948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19637,14,14,'2023-02-09 11:12:06',29.358949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19638,14,14,'2023-02-09 11:12:06',29.376943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19639,14,14,'2023-02-09 11:12:06',29.651001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19640,14,14,'2023-02-09 11:12:06',29.883951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19641,14,14,'2023-02-09 11:12:06',30.156993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19642,14,14,'2023-02-09 11:12:06',30.378949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19643,14,14,'2023-02-09 11:12:06',30.385950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19644,14,14,'2023-02-09 11:12:06',30.403944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19645,14,14,'2023-02-09 11:12:06',30.677992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19646,14,14,'2023-02-09 11:12:06',30.909946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19647,14,14,'2023-02-09 11:12:06',31.182999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19648,14,14,'2023-02-09 11:12:06',31.404945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19649,14,14,'2023-02-09 11:12:06',31.411945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19650,14,14,'2023-02-09 11:12:06',31.429950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19651,14,14,'2023-02-09 11:12:06',31.703002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19652,14,14,'2023-02-09 11:12:06',31.935952,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19653,14,14,'2023-02-09 11:12:06',32.210000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19654,14,14,'2023-02-09 11:12:06',32.430950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19655,14,14,'2023-02-09 11:12:06',32.437951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19656,14,14,'2023-02-09 11:12:06',32.455945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19657,14,14,'2023-02-09 11:12:06',32.728997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19658,14,14,'2023-02-09 11:12:06',32.961947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19659,14,14,'2023-02-09 11:12:06',33.235995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19660,14,14,'2023-02-09 11:12:06',33.456945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19661,14,14,'2023-02-09 11:12:06',33.463946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19662,14,14,'2023-02-09 11:12:06',33.481950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19663,14,14,'2023-02-09 11:12:06',33.755998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19664,14,14,'2023-02-09 11:12:06',33.988948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19665,14,14,'2023-02-09 11:12:06',34.262000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19666,14,14,'2023-02-09 11:12:06',34.483946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19667,14,14,'2023-02-09 11:12:06',34.490947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19668,14,14,'2023-02-09 11:12:06',34.507945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19669,14,14,'2023-02-09 11:12:06',34.781993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19670,14,14,'2023-02-09 11:12:06',35.014943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19671,14,14,'2023-02-09 11:12:06',35.287995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19672,14,14,'2023-02-09 11:12:06',35.509952,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19673,14,14,'2023-02-09 11:12:06',35.516942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19674,14,14,'2023-02-09 11:12:06',35.534946,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19675,14,14,'2023-02-09 11:12:06',35.807999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19676,14,14,'2023-02-09 11:12:06',36.040948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19677,14,14,'2023-02-09 11:12:06',36.314996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19678,14,14,'2023-02-09 11:12:06',36.535947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19679,14,14,'2023-02-09 11:12:06',36.542947,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19680,14,14,'2023-02-09 11:12:06',36.560952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19681,14,14,'2023-02-09 11:12:06',36.833994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19682,14,14,'2023-02-09 11:12:06',37.066944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19683,14,14,'2023-02-09 11:12:06',37.341002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19684,14,14,'2023-02-09 11:12:06',37.561942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19685,14,14,'2023-02-09 11:12:06',37.568943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19686,14,14,'2023-02-09 11:12:06',37.586947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19687,14,14,'2023-02-09 11:12:06',37.860995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19688,14,14,'2023-02-09 11:12:06',38.093945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19689,14,14,'2023-02-09 11:12:06',38.366997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19690,14,14,'2023-02-09 11:12:06',38.588943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19691,14,14,'2023-02-09 11:12:06',38.595944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19692,14,14,'2023-02-09 11:12:06',38.613948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19693,14,14,'2023-02-09 11:12:06',38.887000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19694,14,14,'2023-02-09 11:12:06',39.119950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19695,14,14,'2023-02-09 11:12:06',39.393998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19696,14,14,'2023-02-09 11:12:06',39.614948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19697,14,14,'2023-02-09 11:12:06',39.621949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19698,14,14,'2023-02-09 11:12:06',39.639943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19699,14,14,'2023-02-09 11:12:06',39.912995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19700,14,14,'2023-02-09 11:12:06',40.145945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19701,14,14,'2023-02-09 11:12:06',40.419993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19702,14,14,'2023-02-09 11:12:06',40.640944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19703,14,14,'2023-02-09 11:12:06',40.647944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19704,14,14,'2023-02-09 11:12:06',40.665949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19705,14,14,'2023-02-09 11:12:06',40.939997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19706,14,14,'2023-02-09 11:12:06',41.172946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19707,14,14,'2023-02-09 11:12:06',41.445999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19708,14,14,'2023-02-09 11:12:06',41.666949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19709,14,14,'2023-02-09 11:12:06',41.673950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19710,14,14,'2023-02-09 11:12:06',41.692950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19711,14,14,'2023-02-09 11:12:06',41.966002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19712,14,14,'2023-02-09 11:12:06',42.198942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19713,14,14,'2023-02-09 11:12:06',42.473000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19714,14,14,'2023-02-09 11:12:06',42.693950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19715,14,14,'2023-02-09 11:12:06',42.700951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19716,14,14,'2023-02-09 11:12:06',42.718945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19717,14,14,'2023-02-09 11:12:06',42.991997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19718,14,14,'2023-02-09 11:12:06',43.224947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19719,14,14,'2023-02-09 11:12:06',43.498995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19720,14,14,'2023-02-09 11:12:06',43.719945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19721,14,14,'2023-02-09 11:12:06',43.726946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19722,14,14,'2023-02-09 11:12:06',43.744950,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19723,14,14,'2023-02-09 11:12:06',44.018998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19724,14,14,'2023-02-09 11:12:06',44.251948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19725,14,14,'2023-02-09 11:12:06',44.525000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19726,14,14,'2023-02-09 11:12:06',44.745951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19727,14,14,'2023-02-09 11:12:06',44.752951,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19728,14,14,'2023-02-09 11:12:06',44.770945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19729,14,14,'2023-02-09 11:12:06',45.044993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19730,14,14,'2023-02-09 11:12:06',45.277943,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19731,14,14,'2023-02-09 11:12:06',45.552001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19732,14,14,'2023-02-09 11:12:06',45.771946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19733,14,14,'2023-02-09 11:12:06',45.778946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19734,14,14,'2023-02-09 11:12:06',45.796951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19735,14,14,'2023-02-09 11:12:06',46.070999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19736,14,14,'2023-02-09 11:12:06',46.303949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19737,14,14,'2023-02-09 11:12:06',46.577997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19738,14,14,'2023-02-09 11:12:06',46.798947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19739,14,14,'2023-02-09 11:12:06',46.804952,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19740,14,14,'2023-02-09 11:12:06',46.823942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19741,14,14,'2023-02-09 11:12:06',47.096994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19742,14,14,'2023-02-09 11:12:06',47.329944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19743,14,14,'2023-02-09 11:12:06',47.604002,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19744,14,14,'2023-02-09 11:12:06',47.824942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19745,14,14,'2023-02-09 11:12:06',47.831943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19746,14,14,'2023-02-09 11:12:06',47.849947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19747,14,14,'2023-02-09 11:12:06',48.123995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19748,14,14,'2023-02-09 11:12:06',48.356945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19749,14,14,'2023-02-09 11:12:06',48.629997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19750,14,14,'2023-02-09 11:12:06',48.851943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19751,14,14,'2023-02-09 11:12:06',48.857948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19752,14,14,'2023-02-09 11:12:06',48.876948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19753,14,14,'2023-02-09 11:12:06',49.150000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19754,14,14,'2023-02-09 11:12:06',49.382950,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19755,14,14,'2023-02-09 11:12:06',49.656998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19756,14,14,'2023-02-09 11:12:06',49.877948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19757,14,14,'2023-02-09 11:12:06',49.883943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19758,14,14,'2023-02-09 11:12:06',49.902943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19759,14,14,'2023-02-09 11:12:06',50.175996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19760,14,14,'2023-02-09 11:12:06',50.408945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19761,14,14,'2023-02-09 11:12:06',50.682993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19762,14,14,'2023-02-09 11:12:06',50.903944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19763,14,14,'2023-02-09 11:12:06',50.910944,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19764,14,14,'2023-02-09 11:12:06',50.928949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19765,14,14,'2023-02-09 11:12:06',51.202997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19766,14,14,'2023-02-09 11:12:06',51.434951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19767,14,14,'2023-02-09 11:12:06',51.708999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19768,14,14,'2023-02-09 11:12:06',51.929949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19769,14,14,'2023-02-09 11:12:06',51.936950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19770,14,14,'2023-02-09 11:12:06',51.954944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19771,14,14,'2023-02-09 11:12:06',52.228992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19772,14,14,'2023-02-09 11:12:06',52.460946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19773,14,14,'2023-02-09 11:12:06',52.736000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19774,14,14,'2023-02-09 11:12:06',52.955944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19775,14,14,'2023-02-09 11:12:06',52.962945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19776,14,14,'2023-02-09 11:12:06',52.980949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19777,14,14,'2023-02-09 11:12:06',53.254997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19778,14,14,'2023-02-09 11:12:06',53.487947,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19779,14,14,'2023-02-09 11:12:06',53.760999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19780,14,14,'2023-02-09 11:12:06',53.981950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19781,14,14,'2023-02-09 11:12:06',53.988950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19782,14,14,'2023-02-09 11:12:06',54.006944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19783,14,14,'2023-02-09 11:12:06',54.281998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19784,14,14,'2023-02-09 11:12:06',54.513942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19785,14,14,'2023-02-09 11:12:06',54.786994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19786,14,14,'2023-02-09 11:12:06',55.008951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19787,14,14,'2023-02-09 11:12:06',55.014945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19788,14,14,'2023-02-09 11:12:06',55.033945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19789,14,14,'2023-02-09 11:12:06',55.307993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19790,14,14,'2023-02-09 11:12:06',55.539948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19791,14,14,'2023-02-09 11:12:06',55.813996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19792,14,14,'2023-02-09 11:12:06',56.034946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19793,14,14,'2023-02-09 11:12:06',56.041946,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19794,14,14,'2023-02-09 11:12:06',56.059951,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19795,14,14,'2023-02-09 11:12:06',56.333999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19796,14,14,'2023-02-09 11:12:06',56.566949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19797,14,14,'2023-02-09 11:12:06',56.840001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19798,14,14,'2023-02-09 11:12:06',57.060951,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19799,14,14,'2023-02-09 11:12:06',57.067942,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19800,14,14,'2023-02-09 11:12:06',57.086952,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19801,14,14,'2023-02-09 11:12:06',57.361000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19802,14,14,'2023-02-09 11:12:06',57.592944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19803,14,14,'2023-02-09 11:12:06',57.865996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19804,14,14,'2023-02-09 11:12:06',58.087942,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19805,14,14,'2023-02-09 11:12:06',58.094943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19806,14,14,'2023-02-09 11:12:06',58.112947,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19807,14,14,'2023-02-09 11:12:06',58.385999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19808,14,14,'2023-02-09 11:12:06',58.618949,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19809,14,14,'2023-02-09 11:12:06',58.892997,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19810,14,14,'2023-02-09 11:12:06',59.113947,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19811,14,14,'2023-02-09 11:12:06',59.120948,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19812,14,14,'2023-02-09 11:12:06',59.138942,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19813,14,14,'2023-02-09 11:12:06',59.411995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19814,14,14,'2023-02-09 11:12:06',59.644944,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19815,14,14,'2023-02-09 11:12:06',59.918992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19816,14,14,'2023-02-09 11:12:06',60.139943,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19817,14,14,'2023-02-09 11:12:06',60.146943,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19818,14,14,'2023-02-09 11:12:06',60.164948,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19819,14,14,'2023-02-09 11:12:06',60.438000,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19820,14,14,'2023-02-09 11:12:06',60.671945,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19821,14,14,'2023-02-09 11:12:06',60.944998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19822,14,14,'2023-02-09 11:12:06',61.165948,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19823,14,14,'2023-02-09 11:12:06',61.172949,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19824,14,14,'2023-02-09 11:12:06',61.190943,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19825,14,14,'2023-02-09 11:12:06',61.465001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19826,14,14,'2023-02-09 11:12:06',61.697951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19827,14,14,'2023-02-09 11:12:06',61.970993,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19828,14,14,'2023-02-09 11:12:06',62.192949,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19829,14,14,'2023-02-09 11:12:06',62.199950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19830,14,14,'2023-02-09 11:12:06',62.217944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19831,14,14,'2023-02-09 11:12:06',62.490996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19832,14,14,'2023-02-09 11:12:06',62.723946,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19833,14,14,'2023-02-09 11:12:06',62.997994,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19834,14,14,'2023-02-09 11:12:06',63.218944,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19835,14,14,'2023-02-09 11:12:06',63.225945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19836,14,14,'2023-02-09 11:12:06',63.243949,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19837,14,14,'2023-02-09 11:12:06',63.517001,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19838,14,14,'2023-02-09 11:12:06',63.749951,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19839,14,14,'2023-02-09 11:12:06',64.023999,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19840,14,14,'2023-02-09 11:12:06',64.244950,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19841,14,14,'2023-02-09 11:12:06',64.251950,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19842,14,14,'2023-02-09 11:12:06',64.269944,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19843,14,14,'2023-02-09 11:12:06',64.543992,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19844,14,14,'2023-02-09 11:12:06',64.776942,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19845,14,14,'2023-02-09 11:12:06',65.049995,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19846,14,14,'2023-02-09 11:12:06',65.270945,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19847,14,14,'2023-02-09 11:12:06',65.277945,0.000000,NULL,'4',NULL,NULL,'bgin',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19848,14,14,'2023-02-09 11:12:06',65.296945,0.000000,NULL,'nan',NULL,NULL,'ch1+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19849,14,14,'2023-02-09 11:12:06',65.569998,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19850,14,14,'2023-02-09 11:12:06',65.802948,0.000000,NULL,'nan',NULL,NULL,'ch2+',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19851,14,14,'2023-02-09 11:12:06',66.076996,0.000000,NULL,'nan',NULL,NULL,'DIN3',NULL,NULL);
-INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`, `AssembledHED`) VALUES (19852,14,14,'2023-02-09 11:12:06',66.297946,0.000000,NULL,'3',NULL,NULL,'TRSP',NULL,NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1,1,1,'2019-08-21 15:09:58',11.734000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2,1,1,'2019-08-21 15:09:58',12.533000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3,1,1,'2019-08-21 15:09:58',13.332000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4,1,1,'2019-08-21 15:09:58',14.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5,1,1,'2019-08-21 15:09:58',14.997000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6,1,1,'2019-08-21 15:09:58',15.508000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7,1,1,'2019-08-21 15:09:58',15.796000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (8,1,1,'2019-08-21 15:09:58',16.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (9,1,1,'2019-08-21 15:09:58',17.478000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (10,1,1,'2019-08-21 15:09:58',18.243000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (11,1,1,'2019-08-21 15:09:58',19.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (12,1,1,'2019-08-21 15:09:58',19.941000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (13,1,1,'2019-08-21 15:09:58',20.554000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (14,1,1,'2019-08-21 15:09:58',20.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (15,1,1,'2019-08-21 15:09:58',21.159000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (16,1,1,'2019-08-21 15:09:58',21.739000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (17,1,1,'2019-08-21 15:09:58',22.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (18,1,1,'2019-08-21 15:09:58',23.505000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (19,1,1,'2019-08-21 15:09:58',23.975000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (20,1,1,'2019-08-21 15:09:58',24.503000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (21,1,1,'2019-08-21 15:09:58',24.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (22,1,1,'2019-08-21 15:09:58',25.419000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (23,1,1,'2019-08-21 15:09:58',26.285000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (24,1,1,'2019-08-21 15:09:58',27.200000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (25,1,1,'2019-08-21 15:09:58',27.558000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (26,1,1,'2019-08-21 15:09:58',28.066000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (27,1,1,'2019-08-21 15:09:58',28.915000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (28,1,1,'2019-08-21 15:09:58',29.715000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (29,1,1,'2019-08-21 15:09:58',30.040000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (30,1,1,'2019-08-21 15:09:58',30.597000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (31,1,1,'2019-08-21 15:09:58',31.513000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (32,1,1,'2019-08-21 15:09:58',32.411000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (33,1,1,'2019-08-21 15:09:58',32.855000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (34,1,1,'2019-08-21 15:09:58',33.178000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (35,1,1,'2019-08-21 15:09:58',33.521000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (36,1,1,'2019-08-21 15:09:58',34.010000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (37,1,1,'2019-08-21 15:09:58',35.009000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (38,1,1,'2019-08-21 15:09:58',35.891000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (39,1,1,'2019-08-21 15:09:58',36.890000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (40,1,1,'2019-08-21 15:09:58',37.672000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (41,1,1,'2019-08-21 15:09:58',38.472000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (42,1,1,'2019-08-21 15:09:58',39.454000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (43,1,1,'2019-08-21 15:09:58',40.236000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (44,1,1,'2019-08-21 15:09:58',40.597000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (45,1,1,'2019-08-21 15:09:58',41.219000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (46,1,1,'2019-08-21 15:09:58',42.117000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (47,1,1,'2019-08-21 15:09:58',42.483000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (48,1,1,'2019-08-21 15:09:58',43.083000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (49,1,1,'2019-08-21 15:09:58',44.049000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (50,1,1,'2019-08-21 15:09:58',45.015000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (51,1,1,'2019-08-21 15:09:58',45.410000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (52,1,1,'2019-08-21 15:09:58',45.913000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (53,1,1,'2019-08-21 15:09:58',46.696000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (54,1,1,'2019-08-21 15:09:58',47.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (55,1,1,'2019-08-21 15:09:58',47.528000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (56,1,1,'2019-08-21 15:09:58',48.494000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (57,1,1,'2019-08-21 15:09:58',49.409000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (58,1,1,'2019-08-21 15:09:58',50.226000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (59,1,1,'2019-08-21 15:09:58',51.141000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (60,1,1,'2019-08-21 15:09:58',51.957000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (61,1,1,'2019-08-21 15:09:58',52.344000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (62,1,1,'2019-08-21 15:09:58',52.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (63,1,1,'2019-08-21 15:09:58',53.362000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (64,1,1,'2019-08-21 15:09:58',53.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (65,1,1,'2019-08-21 15:09:58',54.109000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (66,1,1,'2019-08-21 15:09:58',54.587000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (67,1,1,'2019-08-21 15:09:58',55.370000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (68,1,1,'2019-08-21 15:09:58',55.896000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (69,1,1,'2019-08-21 15:09:58',56.302000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (70,1,1,'2019-08-21 15:09:58',57.301000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (71,1,1,'2019-08-21 15:09:58',58.300000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (72,1,1,'2019-08-21 15:09:58',59.199000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (73,1,1,'2019-08-21 15:09:58',60.015000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (74,1,1,'2019-08-21 15:09:58',61.014000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (75,1,1,'2019-08-21 15:09:58',61.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (76,1,1,'2019-08-21 15:09:58',62.324000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (77,1,1,'2019-08-21 15:09:58',62.828000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (78,1,1,'2019-08-21 15:09:58',63.644000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (79,1,1,'2019-08-21 15:09:58',64.010000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (80,1,1,'2019-08-21 15:09:58',64.410000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (81,1,1,'2019-08-21 15:09:58',65.409000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (82,1,1,'2019-08-21 15:09:58',66.175000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (83,1,1,'2019-08-21 15:09:58',66.645000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (84,1,1,'2019-08-21 15:09:58',67.073000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (85,1,1,'2019-08-21 15:09:58',67.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (86,1,1,'2019-08-21 15:09:58',68.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (87,1,1,'2019-08-21 15:09:58',68.755000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (88,1,1,'2019-08-21 15:09:58',69.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (89,1,1,'2019-08-21 15:09:58',69.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (90,1,1,'2019-08-21 15:09:58',70.337000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (91,1,1,'2019-08-21 15:09:58',71.285000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (92,1,1,'2019-08-21 15:09:58',72.268000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (93,1,1,'2019-08-21 15:09:58',73.184000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (94,1,1,'2019-08-21 15:09:58',73.617000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (95,1,1,'2019-08-21 15:09:58',73.966000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (96,1,1,'2019-08-21 15:09:58',74.832000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (97,1,1,'2019-08-21 15:09:58',75.598000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (98,1,1,'2019-08-21 15:09:58',76.597000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (99,1,1,'2019-08-21 15:09:58',77.445000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (100,1,1,'2019-08-21 15:09:58',77.866000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (101,1,1,'2019-08-21 15:09:58',78.444000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (102,1,1,'2019-08-21 15:09:58',78.855000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (103,1,1,'2019-08-21 15:09:58',79.210000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (104,1,1,'2019-08-21 15:09:58',80.060000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (105,1,1,'2019-08-21 15:09:58',80.958000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (106,1,1,'2019-08-21 15:09:58',81.957000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (107,1,1,'2019-08-21 15:09:58',82.790000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (108,1,1,'2019-08-21 15:09:58',83.165000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (109,1,1,'2019-08-21 15:09:58',83.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (110,1,1,'2019-08-21 15:09:58',84.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (111,1,1,'2019-08-21 15:09:58',85.052000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (112,1,1,'2019-08-21 15:09:58',85.670000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (113,1,1,'2019-08-21 15:09:58',86.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (114,1,1,'2019-08-21 15:09:58',87.401000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (115,1,1,'2019-08-21 15:09:58',88.268000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (116,1,1,'2019-08-21 15:09:58',88.675000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (117,1,1,'2019-08-21 15:09:58',89.166000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (118,1,1,'2019-08-21 15:09:58',89.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (119,1,1,'2019-08-21 15:09:58',89.932000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (120,1,1,'2019-08-21 15:09:58',90.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (121,1,1,'2019-08-21 15:09:58',91.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (122,1,1,'2019-08-21 15:09:58',92.513000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (123,1,1,'2019-08-21 15:09:58',92.863000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (124,1,1,'2019-08-21 15:09:58',93.378000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (125,1,1,'2019-08-21 15:09:58',94.277000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (126,1,1,'2019-08-21 15:09:58',94.640000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (127,1,1,'2019-08-21 15:09:58',95.243000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (128,1,1,'2019-08-21 15:09:58',96.025000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (129,1,1,'2019-08-21 15:09:58',96.975000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (130,1,1,'2019-08-21 15:09:58',97.344000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (131,1,1,'2019-08-21 15:09:58',97.840000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (132,1,1,'2019-08-21 15:09:58',98.789000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (133,1,1,'2019-08-21 15:09:58',99.181000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (134,1,1,'2019-08-21 15:09:58',99.688000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (135,1,1,'2019-08-21 15:09:58',100.504000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (136,1,1,'2019-08-21 15:09:58',101.470000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (137,1,1,'2019-08-21 15:09:58',102.468000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (138,1,1,'2019-08-21 15:09:58',103.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (139,1,1,'2019-08-21 15:09:58',103.803000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (140,1,1,'2019-08-21 15:09:58',104.350000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (141,1,1,'2019-08-21 15:09:58',105.282000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (142,1,1,'2019-08-21 15:09:58',106.214000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (143,1,1,'2019-08-21 15:09:58',106.538000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (144,1,1,'2019-08-21 15:09:58',107.146000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (145,1,1,'2019-08-21 15:09:58',107.598000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (146,1,1,'2019-08-21 15:09:58',108.129000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (147,1,1,'2019-08-21 15:09:58',109.044000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (148,1,1,'2019-08-21 15:09:58',109.910000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (149,1,1,'2019-08-21 15:09:58',110.332000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (150,1,1,'2019-08-21 15:09:58',110.709000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (151,1,1,'2019-08-21 15:09:58',111.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (152,1,1,'2019-08-21 15:09:58',112.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (153,1,1,'2019-08-21 15:09:58',113.623000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (154,1,1,'2019-08-21 15:09:58',114.057000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (155,1,1,'2019-08-21 15:09:58',114.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (156,1,1,'2019-08-21 15:09:58',115.287000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (157,1,1,'2019-08-21 15:09:58',115.712000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (158,1,1,'2019-08-21 15:09:58',116.220000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (159,1,1,'2019-08-21 15:09:58',117.136000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (160,1,1,'2019-08-21 15:09:58',118.018000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (161,1,1,'2019-08-21 15:09:58',118.416000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (162,1,1,'2019-08-21 15:09:58',118.967000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (163,1,1,'2019-08-21 15:09:58',119.496000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (164,1,1,'2019-08-21 15:09:58',119.816000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (165,1,1,'2019-08-21 15:09:58',120.682000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (166,1,1,'2019-08-21 15:09:58',121.497000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (167,1,1,'2019-08-21 15:09:58',122.347000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (168,1,1,'2019-08-21 15:09:58',123.212000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (169,1,1,'2019-08-21 15:09:58',123.573000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (170,1,1,'2019-08-21 15:09:58',124.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (171,1,1,'2019-08-21 15:09:58',124.943000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (172,1,1,'2019-08-21 15:09:58',125.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (173,1,1,'2019-08-21 15:09:58',126.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (174,1,1,'2019-08-21 15:09:58',126.742000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (175,1,1,'2019-08-21 15:09:58',127.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (176,1,1,'2019-08-21 15:09:58',128.523000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (177,1,1,'2019-08-21 15:09:58',129.289000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (178,1,1,'2019-08-21 15:09:58',130.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (179,1,1,'2019-08-21 15:09:58',130.547000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (180,1,1,'2019-08-21 15:09:58',131.004000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (181,1,1,'2019-08-21 15:09:58',131.415000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (182,1,1,'2019-08-21 15:09:58',131.819000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (183,1,1,'2019-08-21 15:09:58',132.802000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (184,1,1,'2019-08-21 15:09:58',133.801000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (185,1,1,'2019-08-21 15:09:58',134.160000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (186,1,1,'2019-08-21 15:09:58',134.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (187,1,1,'2019-08-21 15:09:58',135.665000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (188,1,1,'2019-08-21 15:09:58',136.598000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (189,1,1,'2019-08-21 15:09:58',137.580000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (190,1,1,'2019-08-21 15:09:58',138.015000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (191,1,1,'2019-08-21 15:09:58',138.462000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (192,1,1,'2019-08-21 15:09:58',139.378000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (193,1,1,'2019-08-21 15:09:58',140.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (194,1,1,'2019-08-21 15:09:58',140.578000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (195,1,1,'2019-08-21 15:09:58',141.010000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (196,1,1,'2019-08-21 15:09:58',141.842000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (197,1,1,'2019-08-21 15:09:58',142.314000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (198,1,1,'2019-08-21 15:09:58',142.808000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (199,1,1,'2019-08-21 15:09:58',143.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (200,1,1,'2019-08-21 15:09:58',144.589000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (201,1,1,'2019-08-21 15:09:58',145.090000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (202,1,1,'2019-08-21 15:09:58',145.505000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (203,1,1,'2019-08-21 15:09:58',146.320000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (204,1,1,'2019-08-21 15:09:58',147.086000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (205,1,1,'2019-08-21 15:09:58',148.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (206,1,1,'2019-08-21 15:09:58',148.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (207,1,1,'2019-08-21 15:09:58',148.984000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (208,1,1,'2019-08-21 15:09:58',149.850000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (209,1,1,'2019-08-21 15:09:58',150.716000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (210,1,1,'2019-08-21 15:09:58',151.682000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (211,1,1,'2019-08-21 15:09:58',152.663000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (212,1,1,'2019-08-21 15:09:58',153.629000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (213,1,1,'2019-08-21 15:09:58',154.132000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (214,1,1,'2019-08-21 15:09:58',154.595000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (215,1,1,'2019-08-21 15:09:58',155.030000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (216,1,1,'2019-08-21 15:09:58',155.443000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (217,1,1,'2019-08-21 15:09:58',156.310000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (218,1,1,'2019-08-21 15:09:58',157.158000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (219,1,1,'2019-08-21 15:09:58',157.503000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (220,1,1,'2019-08-21 15:09:58',158.091000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (221,1,1,'2019-08-21 15:09:58',158.593000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (222,1,1,'2019-08-21 15:09:58',158.974000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (223,1,1,'2019-08-21 15:09:58',159.955000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (224,1,1,'2019-08-21 15:09:58',160.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (225,1,1,'2019-08-21 15:09:58',161.358000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (226,1,1,'2019-08-21 15:09:58',161.787000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (227,1,1,'2019-08-21 15:09:58',162.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (228,1,1,'2019-08-21 15:09:58',163.585000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (229,1,1,'2019-08-21 15:09:58',164.417000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (230,1,1,'2019-08-21 15:09:58',164.789000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (231,1,1,'2019-08-21 15:09:58',165.250000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (232,1,1,'2019-08-21 15:09:58',166.115000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (233,1,1,'2019-08-21 15:09:58',167.098000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (234,1,1,'2019-08-21 15:09:58',168.030000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (235,1,1,'2019-08-21 15:09:58',168.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (236,1,1,'2019-08-21 15:09:58',168.979000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (237,1,1,'2019-08-21 15:09:58',169.928000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (238,1,1,'2019-08-21 15:09:58',170.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (239,1,1,'2019-08-21 15:09:58',170.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (240,1,1,'2019-08-21 15:09:58',171.843000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (241,1,1,'2019-08-21 15:09:58',172.809000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (242,1,1,'2019-08-21 15:09:58',173.607000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (243,1,1,'2019-08-21 15:09:58',174.034000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (244,1,1,'2019-08-21 15:09:58',174.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (245,1,1,'2019-08-21 15:09:58',175.013000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (246,1,1,'2019-08-21 15:09:58',175.472000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (247,1,1,'2019-08-21 15:09:58',176.338000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (248,1,1,'2019-08-21 15:09:58',177.337000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (249,1,1,'2019-08-21 15:09:58',178.335000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (250,1,1,'2019-08-21 15:09:58',179.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (251,1,1,'2019-08-21 15:09:58',180.150000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (252,1,1,'2019-08-21 15:09:58',180.634000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (253,1,1,'2019-08-21 15:09:58',180.999000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (254,1,1,'2019-08-21 15:09:58',181.798000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (255,1,1,'2019-08-21 15:09:58',182.179000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (256,1,1,'2019-08-21 15:09:58',182.747000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (257,1,1,'2019-08-21 15:09:58',183.197000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (258,1,1,'2019-08-21 15:09:58',183.547000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (259,1,1,'2019-08-21 15:09:58',184.545000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (260,1,1,'2019-08-21 15:09:58',185.428000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (261,1,1,'2019-08-21 15:09:58',186.377000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (262,1,1,'2019-08-21 15:09:58',187.259000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (263,1,1,'2019-08-21 15:09:58',187.668000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (264,1,1,'2019-08-21 15:09:58',188.274000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (265,1,1,'2019-08-21 15:09:58',189.190000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (266,1,1,'2019-08-21 15:09:58',190.156000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (267,1,1,'2019-08-21 15:09:58',190.585000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (268,1,1,'2019-08-21 15:09:58',190.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (269,1,1,'2019-08-21 15:09:58',191.921000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (270,1,1,'2019-08-21 15:09:58',192.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (271,1,1,'2019-08-21 15:09:58',192.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (272,1,1,'2019-08-21 15:09:58',193.719000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (273,1,1,'2019-08-21 15:09:58',194.299000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (274,1,1,'2019-08-21 15:09:58',194.617000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (275,1,1,'2019-08-21 15:09:58',195.533000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (276,1,1,'2019-08-21 15:09:58',196.499000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (277,1,1,'2019-08-21 15:09:58',197.281000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (278,1,1,'2019-08-21 15:09:58',198.080000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (279,1,1,'2019-08-21 15:09:58',198.487000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (280,1,1,'2019-08-21 15:09:58',198.979000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (281,1,1,'2019-08-21 15:09:58',199.962000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (282,1,1,'2019-08-21 15:09:58',200.827000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (283,1,1,'2019-08-21 15:09:58',201.677000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (284,1,1,'2019-08-21 15:09:58',202.181000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (285,1,1,'2019-08-21 15:09:58',202.476000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (286,1,1,'2019-08-21 15:09:58',203.309000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (287,1,1,'2019-08-21 15:09:58',203.766000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (288,1,1,'2019-08-21 15:09:58',204.273000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (289,1,1,'2019-08-21 15:09:58',205.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (290,1,1,'2019-08-21 15:09:58',205.683000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (291,1,1,'2019-08-21 15:09:58',206.205000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (292,1,1,'2019-08-21 15:09:58',207.021000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (293,1,1,'2019-08-21 15:09:58',207.804000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (294,1,1,'2019-08-21 15:09:58',208.246000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (295,1,1,'2019-08-21 15:09:58',208.669000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (296,1,1,'2019-08-21 15:09:58',209.451000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (297,1,1,'2019-08-21 15:09:58',210.367000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (298,1,1,'2019-08-21 15:09:58',210.719000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (299,1,1,'2019-08-21 15:09:58',211.300000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (300,1,1,'2019-08-21 15:09:58',212.281000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (301,1,1,'2019-08-21 15:09:58',212.656000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (302,1,1,'2019-08-21 15:09:58',213.081000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (303,1,1,'2019-08-21 15:09:58',213.946000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (304,1,1,'2019-08-21 15:09:58',214.862000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (305,1,1,'2019-08-21 15:09:58',215.694000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (306,1,1,'2019-08-21 15:09:58',216.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (307,1,1,'2019-08-21 15:09:58',216.915000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (308,1,1,'2019-08-21 15:09:58',217.442000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (309,1,1,'2019-08-21 15:09:58',218.242000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (310,1,1,'2019-08-21 15:09:58',218.631000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (311,1,1,'2019-08-21 15:09:58',219.024000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (312,1,1,'2019-08-21 15:09:58',219.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (313,1,1,'2019-08-21 15:09:58',220.905000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (314,1,1,'2019-08-21 15:09:58',221.838000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (315,1,1,'2019-08-21 15:09:58',222.163000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (316,1,1,'2019-08-21 15:09:58',222.820000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (317,1,1,'2019-08-21 15:09:58',223.233000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (318,1,1,'2019-08-21 15:09:58',223.586000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (319,1,1,'2019-08-21 15:09:58',224.385000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (320,1,1,'2019-08-21 15:09:58',225.284000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (321,1,1,'2019-08-21 15:09:58',226.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (322,1,1,'2019-08-21 15:09:58',226.543000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (323,1,1,'2019-08-21 15:09:58',226.949000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (324,1,1,'2019-08-21 15:09:58',227.452000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (325,1,1,'2019-08-21 15:09:58',227.932000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (326,1,1,'2019-08-21 15:09:58',228.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (327,1,1,'2019-08-21 15:09:58',229.646000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (328,1,1,'2019-08-21 15:09:58',230.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (329,1,1,'2019-08-21 15:09:58',231.311000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (330,1,1,'2019-08-21 15:09:58',232.210000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (331,1,1,'2019-08-21 15:09:58',232.608000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (332,1,1,'2019-08-21 15:09:58',233.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (333,1,1,'2019-08-21 15:09:58',233.908000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (334,1,1,'2019-08-21 15:09:58',234.426000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (335,1,1,'2019-08-21 15:09:58',234.824000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (336,1,1,'2019-08-21 15:09:58',235.789000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (337,1,1,'2019-08-21 15:09:58',236.589000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (338,1,1,'2019-08-21 15:09:58',237.471000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (339,1,1,'2019-08-21 15:09:58',237.947000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (340,1,1,'2019-08-21 15:09:58',238.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (341,1,1,'2019-08-21 15:09:58',239.235000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (342,1,1,'2019-08-21 15:09:58',240.201000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (343,1,1,'2019-08-21 15:09:58',240.622000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (344,1,1,'2019-08-21 15:09:58',240.967000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (345,1,1,'2019-08-21 15:09:58',241.899000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (346,1,1,'2019-08-21 15:09:58',242.849000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (347,1,1,'2019-08-21 15:09:58',243.780000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (348,1,1,'2019-08-21 15:09:58',244.204000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (349,1,1,'2019-08-21 15:09:58',244.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (350,1,1,'2019-08-21 15:09:58',245.662000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (351,1,1,'2019-08-21 15:09:58',246.052000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (352,1,1,'2019-08-21 15:09:58',246.444000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (353,1,1,'2019-08-21 15:09:58',247.410000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (354,1,1,'2019-08-21 15:09:58',248.226000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (355,1,1,'2019-08-21 15:09:58',249.125000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (356,1,1,'2019-08-21 15:09:58',249.543000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (357,1,1,'2019-08-21 15:09:58',249.940000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (358,1,1,'2019-08-21 15:09:58',250.723000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (359,1,1,'2019-08-21 15:09:58',251.522000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (360,1,1,'2019-08-21 15:09:58',251.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (361,1,1,'2019-08-21 15:09:58',252.305000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (362,1,1,'2019-08-21 15:09:58',253.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (363,1,1,'2019-08-21 15:09:58',254.053000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (364,1,1,'2019-08-21 15:09:58',254.519000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (365,1,1,'2019-08-21 15:09:58',255.035000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (366,1,1,'2019-08-21 15:09:58',255.934000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (367,1,1,'2019-08-21 15:09:58',256.866000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (368,1,1,'2019-08-21 15:09:58',257.264000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (369,1,1,'2019-08-21 15:09:58',257.732000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (370,1,1,'2019-08-21 15:09:58',258.531000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (371,1,1,'2019-08-21 15:09:58',259.530000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (372,1,1,'2019-08-21 15:09:58',259.878000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (373,1,1,'2019-08-21 15:09:58',260.379000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (374,1,1,'2019-08-21 15:09:58',261.145000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (375,1,1,'2019-08-21 15:09:58',261.944000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (376,1,1,'2019-08-21 15:09:58',262.400000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (377,1,1,'2019-08-21 15:09:58',262.910000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (378,1,1,'2019-08-21 15:09:58',263.875000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (379,1,1,'2019-08-21 15:09:58',264.675000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (380,1,1,'2019-08-21 15:09:58',265.573000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (381,1,1,'2019-08-21 15:09:58',266.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (382,1,1,'2019-08-21 15:09:58',266.942000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (383,1,1,'2019-08-21 15:09:58',267.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (384,1,1,'2019-08-21 15:09:58',268.088000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (385,1,1,'2019-08-21 15:09:58',268.769000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (386,1,1,'2019-08-21 15:09:58',268.887000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (387,1,1,'2019-08-21 15:09:58',269.769000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (388,1,1,'2019-08-21 15:09:58',270.568000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (389,1,1,'2019-08-21 15:09:58',270.999000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (390,1,1,'2019-08-21 15:09:58',271.483000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (391,1,1,'2019-08-21 15:09:58',272.267000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (392,1,1,'2019-08-21 15:09:58',273.198000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (393,1,1,'2019-08-21 15:09:58',273.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (394,1,1,'2019-08-21 15:09:58',274.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (395,1,1,'2019-08-21 15:09:58',274.880000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (396,1,1,'2019-08-21 15:09:58',275.379000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (397,1,1,'2019-08-21 15:09:58',275.662000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (398,1,1,'2019-08-21 15:09:58',276.678000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (399,1,1,'2019-08-21 15:09:58',293.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (400,1,1,'2019-08-21 15:09:58',312.301000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (401,1,1,'2019-08-21 15:09:58',312.883000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (402,1,1,'2019-08-21 15:09:58',313.282000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (403,1,1,'2019-08-21 15:09:58',314.099000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (404,1,1,'2019-08-21 15:09:58',315.097000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (405,1,1,'2019-08-21 15:09:58',315.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (406,1,1,'2019-08-21 15:09:58',316.516000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (407,1,1,'2019-08-21 15:09:58',316.896000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (408,1,1,'2019-08-21 15:09:58',317.860000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (409,1,1,'2019-08-21 15:09:58',318.302000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (410,1,1,'2019-08-21 15:09:58',318.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (411,1,1,'2019-08-21 15:09:58',319.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (412,1,1,'2019-08-21 15:09:58',320.508000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (413,1,1,'2019-08-21 15:09:58',320.977000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (414,1,1,'2019-08-21 15:09:58',321.323000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (415,1,1,'2019-08-21 15:09:58',322.140000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (416,1,1,'2019-08-21 15:09:58',322.922000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (417,1,1,'2019-08-21 15:09:58',323.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (418,1,1,'2019-08-21 15:09:58',323.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (419,1,1,'2019-08-21 15:09:58',324.770000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (420,1,1,'2019-08-21 15:09:58',325.719000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (421,1,1,'2019-08-21 15:09:58',326.123000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (422,1,1,'2019-08-21 15:09:58',326.518000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (423,1,1,'2019-08-21 15:09:58',327.467000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (424,1,1,'2019-08-21 15:09:58',328.416000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (425,1,1,'2019-08-21 15:09:58',329.298000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (426,1,1,'2019-08-21 15:09:58',329.826000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (427,1,1,'2019-08-21 15:09:58',330.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (428,1,1,'2019-08-21 15:09:58',330.725000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (429,1,1,'2019-08-21 15:09:58',331.246000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (430,1,1,'2019-08-21 15:09:58',332.028000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (431,1,1,'2019-08-21 15:09:58',332.928000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (432,1,1,'2019-08-21 15:09:58',333.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (433,1,1,'2019-08-21 15:09:58',334.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (434,1,1,'2019-08-21 15:09:58',335.592000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (435,1,1,'2019-08-21 15:09:58',336.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (436,1,1,'2019-08-21 15:09:58',337.373000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (437,1,1,'2019-08-21 15:09:58',337.810000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (438,1,1,'2019-08-21 15:09:58',338.355000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (439,1,1,'2019-08-21 15:09:58',338.879000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (440,1,1,'2019-08-21 15:09:58',339.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (441,1,1,'2019-08-21 15:09:58',339.575000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (442,1,1,'2019-08-21 15:09:58',340.003000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (443,1,1,'2019-08-21 15:09:58',340.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (444,1,1,'2019-08-21 15:09:58',340.969000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (445,1,1,'2019-08-21 15:09:58',341.802000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (446,1,1,'2019-08-21 15:09:58',342.634000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (447,1,1,'2019-08-21 15:09:58',343.517000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (448,1,1,'2019-08-21 15:09:58',344.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (449,1,1,'2019-08-21 15:09:58',345.381000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (450,1,1,'2019-08-21 15:09:58',346.213000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (451,1,1,'2019-08-21 15:09:58',346.996000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (452,1,1,'2019-08-21 15:09:58',347.548000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (453,1,1,'2019-08-21 15:09:58',347.778000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (454,1,1,'2019-08-21 15:09:58',348.123000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (455,1,1,'2019-08-21 15:09:58',348.577000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (456,1,1,'2019-08-21 15:09:58',349.477000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (457,1,1,'2019-08-21 15:09:58',350.375000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (458,1,1,'2019-08-21 15:09:58',351.175000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (459,1,1,'2019-08-21 15:09:58',351.564000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (460,1,1,'2019-08-21 15:09:58',351.990000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (461,1,1,'2019-08-21 15:09:58',352.402000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (462,1,1,'2019-08-21 15:09:58',352.923000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (463,1,1,'2019-08-21 15:09:58',353.888000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (464,1,1,'2019-08-21 15:09:58',354.787000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (465,1,1,'2019-08-21 15:09:58',355.703000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (466,1,1,'2019-08-21 15:09:58',356.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (467,1,1,'2019-08-21 15:09:58',356.963000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (468,1,1,'2019-08-21 15:09:58',357.351000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (469,1,1,'2019-08-21 15:09:58',358.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (470,1,1,'2019-08-21 15:09:58',359.065000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (471,1,1,'2019-08-21 15:09:58',359.456000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (472,1,1,'2019-08-21 15:09:58',359.915000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (473,1,1,'2019-08-21 15:09:58',360.830000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (474,1,1,'2019-08-21 15:09:58',361.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (475,1,1,'2019-08-21 15:09:58',362.479000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (476,1,1,'2019-08-21 15:09:58',362.888000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (477,1,1,'2019-08-21 15:09:58',363.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (478,1,1,'2019-08-21 15:09:58',363.685000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (479,1,1,'2019-08-21 15:09:58',364.094000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (480,1,1,'2019-08-21 15:09:58',365.076000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (481,1,1,'2019-08-21 15:09:58',366.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (482,1,1,'2019-08-21 15:09:58',366.891000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (483,1,1,'2019-08-21 15:09:58',367.807000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (484,1,1,'2019-08-21 15:09:58',368.195000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (485,1,1,'2019-08-21 15:09:58',368.655000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (486,1,1,'2019-08-21 15:09:58',369.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (487,1,1,'2019-08-21 15:09:58',369.860000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (488,1,1,'2019-08-21 15:09:58',370.420000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (489,1,1,'2019-08-21 15:09:58',371.286000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (490,1,1,'2019-08-21 15:09:58',371.678000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (491,1,1,'2019-08-21 15:09:58',372.085000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (492,1,1,'2019-08-21 15:09:58',372.950000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (493,1,1,'2019-08-21 15:09:58',373.916000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (494,1,1,'2019-08-21 15:09:58',374.342000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (495,1,1,'2019-08-21 15:09:58',374.898000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (496,1,1,'2019-08-21 15:09:58',375.864000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (497,1,1,'2019-08-21 15:09:58',376.663000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (498,1,1,'2019-08-21 15:09:58',377.629000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (499,1,1,'2019-08-21 15:09:58',378.528000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (500,1,1,'2019-08-21 15:09:58',379.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (501,1,1,'2019-08-21 15:09:58',379.812000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (502,1,1,'2019-08-21 15:09:58',380.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (503,1,1,'2019-08-21 15:09:58',381.103000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (504,1,1,'2019-08-21 15:09:58',381.175000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (505,1,1,'2019-08-21 15:09:58',381.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (506,1,1,'2019-08-21 15:09:58',382.294000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (507,1,1,'2019-08-21 15:09:58',382.956000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (508,1,1,'2019-08-21 15:09:58',383.855000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (509,1,1,'2019-08-21 15:09:58',384.788000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (510,1,1,'2019-08-21 15:09:58',385.570000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (511,1,1,'2019-08-21 15:09:58',386.088000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (512,1,1,'2019-08-21 15:09:58',386.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (513,1,1,'2019-08-21 15:09:58',387.318000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (514,1,1,'2019-08-21 15:09:58',388.218000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (515,1,1,'2019-08-21 15:09:58',388.823000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (516,1,1,'2019-08-21 15:09:58',389.166000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (517,1,1,'2019-08-21 15:09:58',390.148000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (518,1,1,'2019-08-21 15:09:58',390.549000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (519,1,1,'2019-08-21 15:09:58',390.964000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (520,1,1,'2019-08-21 15:09:58',391.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (521,1,1,'2019-08-21 15:09:58',392.713000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (522,1,1,'2019-08-21 15:09:58',393.595000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (523,1,1,'2019-08-21 15:09:58',394.561000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (524,1,1,'2019-08-21 15:09:58',395.442000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (525,1,1,'2019-08-21 15:09:58',395.877000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (526,1,1,'2019-08-21 15:09:58',396.242000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (527,1,1,'2019-08-21 15:09:58',396.584000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (528,1,1,'2019-08-21 15:09:58',397.107000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (529,1,1,'2019-08-21 15:09:58',398.073000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (530,1,1,'2019-08-21 15:09:58',398.512000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (531,1,1,'2019-08-21 15:09:58',399.006000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (532,1,1,'2019-08-21 15:09:58',399.871000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (533,1,1,'2019-08-21 15:09:58',400.277000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (534,1,1,'2019-08-21 15:09:58',400.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (535,1,1,'2019-08-21 15:09:58',401.869000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (536,1,1,'2019-08-21 15:09:58',402.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (537,1,1,'2019-08-21 15:09:58',403.314000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (538,1,1,'2019-08-21 15:09:58',403.617000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (539,1,1,'2019-08-21 15:09:58',404.583000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (540,1,1,'2019-08-21 15:09:58',405.481000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (541,1,1,'2019-08-21 15:09:58',405.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (542,1,1,'2019-08-21 15:09:58',406.364000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (543,1,1,'2019-08-21 15:09:58',407.213000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (544,1,1,'2019-08-21 15:09:58',408.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (545,1,1,'2019-08-21 15:09:58',408.512000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (546,1,1,'2019-08-21 15:09:58',409.111000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (547,1,1,'2019-08-21 15:09:58',409.877000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (548,1,1,'2019-08-21 15:09:58',410.859000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (549,1,1,'2019-08-21 15:09:58',411.237000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (550,1,1,'2019-08-21 15:09:58',411.741000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (551,1,1,'2019-08-21 15:09:58',412.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (552,1,1,'2019-08-21 15:09:58',413.656000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (553,1,1,'2019-08-21 15:09:58',414.422000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (554,1,1,'2019-08-21 15:09:58',415.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (555,1,1,'2019-08-21 15:09:58',416.320000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (556,1,1,'2019-08-21 15:09:58',417.136000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (557,1,1,'2019-08-21 15:09:58',417.564000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (558,1,1,'2019-08-21 15:09:58',418.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (559,1,1,'2019-08-21 15:09:58',418.503000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (560,1,1,'2019-08-21 15:09:58',419.084000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (561,1,1,'2019-08-21 15:09:58',420.049000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (562,1,1,'2019-08-21 15:09:58',420.915000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (563,1,1,'2019-08-21 15:09:58',421.914000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (564,1,1,'2019-08-21 15:09:58',422.763000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (565,1,1,'2019-08-21 15:09:58',423.307000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (566,1,1,'2019-08-21 15:09:58',423.729000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (567,1,1,'2019-08-21 15:09:58',424.544000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (568,1,1,'2019-08-21 15:09:58',425.377000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (569,1,1,'2019-08-21 15:09:58',425.729000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (570,1,1,'2019-08-21 15:09:58',426.159000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (571,1,1,'2019-08-21 15:09:58',427.092000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (572,1,1,'2019-08-21 15:09:58',427.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (573,1,1,'2019-08-21 15:09:58',428.322000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (574,1,1,'2019-08-21 15:09:58',428.790000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (575,1,1,'2019-08-21 15:09:58',429.789000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (576,1,1,'2019-08-21 15:09:58',430.721000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (577,1,1,'2019-08-21 15:09:58',431.637000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (578,1,1,'2019-08-21 15:09:58',432.197000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (579,1,1,'2019-08-21 15:09:58',432.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (580,1,1,'2019-08-21 15:09:58',433.484000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (581,1,1,'2019-08-21 15:09:58',434.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (582,1,1,'2019-08-21 15:09:58',434.872000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (583,1,1,'2019-08-21 15:09:58',435.333000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (584,1,1,'2019-08-21 15:09:58',436.215000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (585,1,1,'2019-08-21 15:09:58',436.997000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (586,1,1,'2019-08-21 15:09:58',437.436000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (587,1,1,'2019-08-21 15:09:58',437.847000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (588,1,1,'2019-08-21 15:09:58',438.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (589,1,1,'2019-08-21 15:09:58',439.211000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (590,1,1,'2019-08-21 15:09:58',439.611000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (591,1,1,'2019-08-21 15:09:58',440.594000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (592,1,1,'2019-08-21 15:09:58',440.957000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (593,1,1,'2019-08-21 15:09:58',441.543000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (594,1,1,'2019-08-21 15:09:58',442.558000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (595,1,1,'2019-08-21 15:09:58',442.936000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (596,1,1,'2019-08-21 15:09:58',443.507000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (597,1,1,'2019-08-21 15:09:58',444.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (598,1,1,'2019-08-21 15:09:58',445.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (599,1,1,'2019-08-21 15:09:58',446.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (600,1,1,'2019-08-21 15:09:58',447.020000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (601,1,1,'2019-08-21 15:09:58',447.426000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (602,1,1,'2019-08-21 15:09:58',447.952000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (603,1,1,'2019-08-21 15:09:58',448.334000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (604,1,1,'2019-08-21 15:09:58',448.751000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (605,1,1,'2019-08-21 15:09:58',449.601000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (606,1,1,'2019-08-21 15:09:58',450.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (607,1,1,'2019-08-21 15:09:58',451.282000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (608,1,1,'2019-08-21 15:09:58',452.081000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (609,1,1,'2019-08-21 15:09:58',452.946000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (610,1,1,'2019-08-21 15:09:58',453.562000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (611,1,1,'2019-08-21 15:09:58',453.763000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (612,1,1,'2019-08-21 15:09:58',454.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (613,1,1,'2019-08-21 15:09:58',455.511000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (614,1,1,'2019-08-21 15:09:58',456.477000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (615,1,1,'2019-08-21 15:09:58',457.408000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (616,1,1,'2019-08-21 15:09:58',458.391000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (617,1,1,'2019-08-21 15:09:58',458.840000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (618,1,1,'2019-08-21 15:09:58',459.156000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (619,1,1,'2019-08-21 15:09:58',460.072000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (620,1,1,'2019-08-21 15:09:58',460.435000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (621,1,1,'2019-08-21 15:09:58',460.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (622,1,1,'2019-08-21 15:09:58',461.903000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (623,1,1,'2019-08-21 15:09:58',462.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (624,1,1,'2019-08-21 15:09:58',463.382000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (625,1,1,'2019-08-21 15:09:58',463.651000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (626,1,1,'2019-08-21 15:09:58',463.997000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (627,1,1,'2019-08-21 15:09:58',464.601000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (628,1,1,'2019-08-21 15:09:58',465.517000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (629,1,1,'2019-08-21 15:09:58',466.448000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (630,1,1,'2019-08-21 15:09:58',467.231000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (631,1,1,'2019-08-21 15:09:58',468.146000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (632,1,1,'2019-08-21 15:09:58',468.589000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (633,1,1,'2019-08-21 15:09:58',468.912000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (634,1,1,'2019-08-21 15:09:58',469.795000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (635,1,1,'2019-08-21 15:09:58',470.627000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (636,1,1,'2019-08-21 15:09:58',471.427000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (637,1,1,'2019-08-21 15:09:58',471.809000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (638,1,1,'2019-08-21 15:09:58',472.375000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (639,1,1,'2019-08-21 15:09:58',473.341000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (640,1,1,'2019-08-21 15:09:58',474.307000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (641,1,1,'2019-08-21 15:09:58',475.139000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (642,1,1,'2019-08-21 15:09:58',476.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (643,1,1,'2019-08-21 15:09:58',476.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (644,1,1,'2019-08-21 15:09:58',476.904000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (645,1,1,'2019-08-21 15:09:58',477.278000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (646,1,1,'2019-08-21 15:09:58',477.803000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (647,1,1,'2019-08-21 15:09:58',478.702000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (648,1,1,'2019-08-21 15:09:58',479.701000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (649,1,1,'2019-08-21 15:09:58',480.194000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (650,1,1,'2019-08-21 15:09:58',480.666000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (651,1,1,'2019-08-21 15:09:58',481.599000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (652,1,1,'2019-08-21 15:09:58',482.448000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (653,1,1,'2019-08-21 15:09:58',482.899000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (654,1,1,'2019-08-21 15:09:58',483.247000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (655,1,1,'2019-08-21 15:09:58',484.112000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (656,1,1,'2019-08-21 15:09:58',484.945000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (657,1,1,'2019-08-21 15:09:58',485.301000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (658,1,1,'2019-08-21 15:09:58',485.928000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (659,1,1,'2019-08-21 15:09:58',486.391000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (660,1,1,'2019-08-21 15:09:58',486.926000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (661,1,1,'2019-08-21 15:09:58',487.809000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (662,1,1,'2019-08-21 15:09:58',488.691000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (663,1,1,'2019-08-21 15:09:58',489.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (664,1,1,'2019-08-21 15:09:58',489.943000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (665,1,1,'2019-08-21 15:09:58',490.522000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (666,1,1,'2019-08-21 15:09:58',491.338000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (667,1,1,'2019-08-21 15:09:58',492.204000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (668,1,1,'2019-08-21 15:09:58',492.647000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (669,1,1,'2019-08-21 15:09:58',493.069000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (670,1,1,'2019-08-21 15:09:58',493.835000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (671,1,1,'2019-08-21 15:09:58',494.701000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (672,1,1,'2019-08-21 15:09:58',495.517000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (673,1,1,'2019-08-21 15:09:58',495.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (674,1,1,'2019-08-21 15:09:58',496.366000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (675,1,1,'2019-08-21 15:09:58',497.314000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (676,1,1,'2019-08-21 15:09:58',498.081000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (677,1,1,'2019-08-21 15:09:58',498.471000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (678,1,1,'2019-08-21 15:09:58',498.930000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (679,1,1,'2019-08-21 15:09:58',499.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (680,1,1,'2019-08-21 15:09:58',500.227000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (681,1,1,'2019-08-21 15:09:58',500.694000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (682,1,1,'2019-08-21 15:09:58',501.677000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (683,1,1,'2019-08-21 15:09:58',502.560000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (684,1,1,'2019-08-21 15:09:58',503.375000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (685,1,1,'2019-08-21 15:09:58',503.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (686,1,1,'2019-08-21 15:09:58',504.240000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (687,1,1,'2019-08-21 15:09:58',505.057000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (688,1,1,'2019-08-21 15:09:58',505.424000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (689,1,1,'2019-08-21 15:09:58',506.039000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (690,1,1,'2019-08-21 15:09:58',506.954000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (691,1,1,'2019-08-21 15:09:58',507.837000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (692,1,1,'2019-08-21 15:09:58',508.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (693,1,1,'2019-08-21 15:09:58',508.702000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (694,1,1,'2019-08-21 15:09:58',509.519000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (695,1,1,'2019-08-21 15:09:58',510.483000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (696,1,1,'2019-08-21 15:09:58',510.844000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (697,1,1,'2019-08-21 15:09:58',511.416000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (698,1,1,'2019-08-21 15:09:58',512.215000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (699,1,1,'2019-08-21 15:09:58',513.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (700,1,1,'2019-08-21 15:09:58',513.997000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (701,1,1,'2019-08-21 15:09:58',514.467000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (702,1,1,'2019-08-21 15:09:58',514.896000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (703,1,1,'2019-08-21 15:09:58',515.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (704,1,1,'2019-08-21 15:09:58',516.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (705,1,1,'2019-08-21 15:09:58',516.494000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (706,1,1,'2019-08-21 15:09:58',517.029000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (707,1,1,'2019-08-21 15:09:58',517.326000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (708,1,1,'2019-08-21 15:09:58',518.292000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (709,1,1,'2019-08-21 15:09:58',519.241000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (710,1,1,'2019-08-21 15:09:58',520.140000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (711,1,1,'2019-08-21 15:09:58',521.089000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (712,1,1,'2019-08-21 15:09:58',521.581000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (713,1,1,'2019-08-21 15:09:58',521.854000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (714,1,1,'2019-08-21 15:09:58',522.196000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (715,1,1,'2019-08-21 15:09:58',522.671000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (716,1,1,'2019-08-21 15:09:58',523.636000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (717,1,1,'2019-08-21 15:09:58',524.585000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (718,1,1,'2019-08-21 15:09:58',525.534000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (719,1,1,'2019-08-21 15:09:58',526.467000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (720,1,1,'2019-08-21 15:09:58',526.909000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (721,1,1,'2019-08-21 15:09:58',527.266000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (722,1,1,'2019-08-21 15:09:58',528.215000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (723,1,1,'2019-08-21 15:09:58',528.655000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (724,1,1,'2019-08-21 15:09:58',529.063000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (725,1,1,'2019-08-21 15:09:58',529.946000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (726,1,1,'2019-08-21 15:09:58',530.762000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (727,1,1,'2019-08-21 15:09:58',531.627000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (728,1,1,'2019-08-21 15:09:58',532.477000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (729,1,1,'2019-08-21 15:09:58',533.442000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (730,1,1,'2019-08-21 15:09:58',534.208000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (731,1,1,'2019-08-21 15:09:58',534.560000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (732,1,1,'2019-08-21 15:09:58',535.157000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (733,1,1,'2019-08-21 15:09:58',535.508000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (734,1,1,'2019-08-21 15:09:58',536.105000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (735,1,1,'2019-08-21 15:09:58',536.905000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (736,1,1,'2019-08-21 15:09:58',537.820000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (737,1,1,'2019-08-21 15:09:58',538.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (738,1,1,'2019-08-21 15:09:58',539.785000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (739,1,1,'2019-08-21 15:09:58',540.261000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (740,1,1,'2019-08-21 15:09:58',540.668000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (741,1,1,'2019-08-21 15:09:58',541.028000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (742,1,1,'2019-08-21 15:09:58',541.649000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (743,1,1,'2019-08-21 15:09:58',542.449000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (744,1,1,'2019-08-21 15:09:58',543.314000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (745,1,1,'2019-08-21 15:09:58',544.313000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (746,1,1,'2019-08-21 15:09:58',544.681000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (747,1,1,'2019-08-21 15:09:58',545.163000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (748,1,1,'2019-08-21 15:09:58',545.962000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (749,1,1,'2019-08-21 15:09:58',546.366000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (750,1,1,'2019-08-21 15:09:58',546.911000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (751,1,1,'2019-08-21 15:09:58',547.826000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (752,1,1,'2019-08-21 15:09:58',548.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (753,1,1,'2019-08-21 15:09:58',549.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (754,1,1,'2019-08-21 15:09:58',550.141000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (755,1,1,'2019-08-21 15:09:58',550.557000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (756,1,1,'2019-08-21 15:09:58',551.423000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (757,1,1,'2019-08-21 15:09:58',551.836000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (758,1,1,'2019-08-21 15:09:58',552.338000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (759,1,1,'2019-08-21 15:09:58',553.138000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (760,1,1,'2019-08-21 15:09:58',554.053000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (761,1,1,'2019-08-21 15:09:58',554.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (762,1,1,'2019-08-21 15:09:58',555.207000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (763,1,1,'2019-08-21 15:09:58',555.685000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (764,1,1,'2019-08-21 15:09:58',556.095000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (765,1,1,'2019-08-21 15:09:58',556.634000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (766,1,1,'2019-08-21 15:09:58',557.549000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (767,1,1,'2019-08-21 15:09:58',558.515000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (768,1,1,'2019-08-21 15:09:58',559.530000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (769,1,1,'2019-08-21 15:09:58',559.971000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (770,1,1,'2019-08-21 15:09:58',560.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (771,1,1,'2019-08-21 15:09:58',561.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (772,1,1,'2019-08-21 15:09:58',562.277000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (773,1,1,'2019-08-21 15:09:58',562.715000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (774,1,1,'2019-08-21 15:09:58',563.177000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (775,1,1,'2019-08-21 15:09:58',564.191000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (776,1,1,'2019-08-21 15:09:58',564.643000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (777,1,1,'2019-08-21 15:09:58',565.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (778,1,1,'2019-08-21 15:09:58',565.940000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (779,1,1,'2019-08-21 15:09:58',566.257000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (780,1,1,'2019-08-21 15:09:58',566.839000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (781,1,1,'2019-08-21 15:09:58',567.621000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (782,1,1,'2019-08-21 15:09:58',568.421000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (783,1,1,'2019-08-21 15:09:58',568.892000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (784,1,1,'2019-08-21 15:09:58',569.336000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (785,1,1,'2019-08-21 15:09:58',570.202000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (786,1,1,'2019-08-21 15:09:58',571.117000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (787,1,1,'2019-08-21 15:09:58',572.033000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (788,1,1,'2019-08-21 15:09:58',572.383000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (789,1,1,'2019-08-21 15:09:58',572.999000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (790,1,1,'2019-08-21 15:09:58',573.915000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (791,1,1,'2019-08-21 15:09:58',574.913000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (792,1,1,'2019-08-21 15:09:58',575.779000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (793,1,1,'2019-08-21 15:09:58',576.147000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (794,1,1,'2019-08-21 15:09:58',576.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (795,1,1,'2019-08-21 15:09:58',577.327000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (796,1,1,'2019-08-21 15:09:58',578.310000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (797,1,1,'2019-08-21 15:09:58',578.730000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (798,1,1,'2019-08-21 15:09:58',603.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (799,1,1,'2019-08-21 15:09:58',617.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (800,1,1,'2019-08-21 15:09:58',618.548000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (801,1,1,'2019-08-21 15:09:58',619.447000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (802,1,1,'2019-08-21 15:09:58',620.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (803,1,1,'2019-08-21 15:09:58',620.842000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (804,1,1,'2019-08-21 15:09:58',621.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (805,1,1,'2019-08-21 15:09:58',621.659000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (806,1,1,'2019-08-21 15:09:58',622.011000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (807,1,1,'2019-08-21 15:09:58',622.993000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (808,1,1,'2019-08-21 15:09:58',623.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (809,1,1,'2019-08-21 15:09:58',623.858000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (810,1,1,'2019-08-21 15:09:58',624.824000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (811,1,1,'2019-08-21 15:09:58',625.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (812,1,1,'2019-08-21 15:09:58',626.506000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (813,1,1,'2019-08-21 15:09:58',627.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (814,1,1,'2019-08-21 15:09:58',627.705000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (815,1,1,'2019-08-21 15:09:58',628.337000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (816,1,1,'2019-08-21 15:09:58',629.187000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (817,1,1,'2019-08-21 15:09:58',630.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (818,1,1,'2019-08-21 15:09:58',630.490000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (819,1,1,'2019-08-21 15:09:58',630.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (820,1,1,'2019-08-21 15:09:58',631.429000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (821,1,1,'2019-08-21 15:09:58',631.783000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (822,1,1,'2019-08-21 15:09:58',632.582000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (823,1,1,'2019-08-21 15:09:58',633.349000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (824,1,1,'2019-08-21 15:09:58',633.740000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (825,1,1,'2019-08-21 15:09:58',634.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (826,1,1,'2019-08-21 15:09:58',634.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (827,1,1,'2019-08-21 15:09:58',635.405000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (828,1,1,'2019-08-21 15:09:58',635.962000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (829,1,1,'2019-08-21 15:09:58',636.928000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (830,1,1,'2019-08-21 15:09:58',637.727000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (831,1,1,'2019-08-21 15:09:58',638.726000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (832,1,1,'2019-08-21 15:09:58',639.625000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (833,1,1,'2019-08-21 15:09:58',640.440000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (834,1,1,'2019-08-21 15:09:58',640.835000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (835,1,1,'2019-08-21 15:09:58',641.373000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (836,1,1,'2019-08-21 15:09:58',642.288000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (837,1,1,'2019-08-21 15:09:58',643.088000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (838,1,1,'2019-08-21 15:09:58',643.500000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (839,1,1,'2019-08-21 15:09:58',644.003000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (840,1,1,'2019-08-21 15:09:58',644.969000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (841,1,1,'2019-08-21 15:09:58',645.417000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (842,1,1,'2019-08-21 15:09:58',645.835000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (843,1,1,'2019-08-21 15:09:58',646.175000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (844,1,1,'2019-08-21 15:09:58',646.750000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (845,1,1,'2019-08-21 15:09:58',647.649000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (846,1,1,'2019-08-21 15:09:58',648.615000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (847,1,1,'2019-08-21 15:09:58',649.497000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (848,1,1,'2019-08-21 15:09:58',649.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (849,1,1,'2019-08-21 15:09:58',650.479000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (850,1,1,'2019-08-21 15:09:58',651.479000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (851,1,1,'2019-08-21 15:09:58',652.294000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (852,1,1,'2019-08-21 15:09:58',653.260000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (853,1,1,'2019-08-21 15:09:58',653.684000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (854,1,1,'2019-08-21 15:09:58',654.059000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (855,1,1,'2019-08-21 15:09:58',654.958000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (856,1,1,'2019-08-21 15:09:58',655.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (857,1,1,'2019-08-21 15:09:58',656.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (858,1,1,'2019-08-21 15:09:58',657.755000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (859,1,1,'2019-08-21 15:09:58',658.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (860,1,1,'2019-08-21 15:09:58',658.922000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (861,1,1,'2019-08-21 15:09:58',659.286000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (862,1,1,'2019-08-21 15:09:58',659.698000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (863,1,1,'2019-08-21 15:09:58',660.086000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (864,1,1,'2019-08-21 15:09:58',661.035000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (865,1,1,'2019-08-21 15:09:58',661.851000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (866,1,1,'2019-08-21 15:09:58',662.833000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (867,1,1,'2019-08-21 15:09:58',663.614000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (868,1,1,'2019-08-21 15:09:58',663.815000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (869,1,1,'2019-08-21 15:09:58',664.780000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (870,1,1,'2019-08-21 15:09:58',665.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (871,1,1,'2019-08-21 15:09:58',665.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (872,1,1,'2019-08-21 15:09:58',666.528000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (873,1,1,'2019-08-21 15:09:58',666.976000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (874,1,1,'2019-08-21 15:09:58',667.511000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (875,1,1,'2019-08-21 15:09:58',668.311000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (876,1,1,'2019-08-21 15:09:58',668.620000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (877,1,1,'2019-08-21 15:09:58',669.292000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (878,1,1,'2019-08-21 15:09:58',670.108000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (879,1,1,'2019-08-21 15:09:58',670.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (880,1,1,'2019-08-21 15:09:58',671.873000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (881,1,1,'2019-08-21 15:09:58',672.705000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (882,1,1,'2019-08-21 15:09:58',673.041000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (883,1,1,'2019-08-21 15:09:58',673.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (884,1,1,'2019-08-21 15:09:58',674.453000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (885,1,1,'2019-08-21 15:09:58',675.436000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (886,1,1,'2019-08-21 15:09:58',675.907000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (887,1,1,'2019-08-21 15:09:58',676.335000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (888,1,1,'2019-08-21 15:09:58',677.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (889,1,1,'2019-08-21 15:09:58',677.693000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (890,1,1,'2019-08-21 15:09:58',678.216000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (891,1,1,'2019-08-21 15:09:58',678.998000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (892,1,1,'2019-08-21 15:09:58',679.848000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (893,1,1,'2019-08-21 15:09:58',680.196000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (894,1,1,'2019-08-21 15:09:58',680.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (895,1,1,'2019-08-21 15:09:58',681.445000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (896,1,1,'2019-08-21 15:09:58',682.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (897,1,1,'2019-08-21 15:09:58',682.720000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (898,1,1,'2019-08-21 15:09:58',683.211000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (899,1,1,'2019-08-21 15:09:58',684.209000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (900,1,1,'2019-08-21 15:09:58',685.009000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (901,1,1,'2019-08-21 15:09:58',685.857000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (902,1,1,'2019-08-21 15:09:58',686.161000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (903,1,1,'2019-08-21 15:09:58',686.773000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (904,1,1,'2019-08-21 15:09:58',687.539000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (905,1,1,'2019-08-21 15:09:58',687.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (906,1,1,'2019-08-21 15:09:58',688.321000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (907,1,1,'2019-08-21 15:09:58',689.188000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (908,1,1,'2019-08-21 15:09:58',690.103000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (909,1,1,'2019-08-21 15:09:58',691.019000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (910,1,1,'2019-08-21 15:09:58',691.369000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (911,1,1,'2019-08-21 15:09:58',691.968000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (912,1,1,'2019-08-21 15:09:58',692.917000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (913,1,1,'2019-08-21 15:09:58',693.256000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (914,1,1,'2019-08-21 15:09:58',693.716000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (915,1,1,'2019-08-21 15:09:58',694.063000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (916,1,1,'2019-08-21 15:09:58',694.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (917,1,1,'2019-08-21 15:09:58',695.431000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (918,1,1,'2019-08-21 15:09:58',696.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (919,1,1,'2019-08-21 15:09:58',697.062000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (920,1,1,'2019-08-21 15:09:58',698.027000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (921,1,1,'2019-08-21 15:09:58',698.943000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (922,1,1,'2019-08-21 15:09:58',699.726000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (923,1,1,'2019-08-21 15:09:58',700.108000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (924,1,1,'2019-08-21 15:09:58',700.708000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (925,1,1,'2019-08-21 15:09:58',701.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (926,1,1,'2019-08-21 15:09:58',701.875000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (927,1,1,'2019-08-21 15:09:58',702.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (928,1,1,'2019-08-21 15:09:58',702.713000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (929,1,1,'2019-08-21 15:09:58',703.188000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (930,1,1,'2019-08-21 15:09:58',704.154000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (931,1,1,'2019-08-21 15:09:58',705.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (932,1,1,'2019-08-21 15:09:58',706.052000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (933,1,1,'2019-08-21 15:09:58',706.457000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (934,1,1,'2019-08-21 15:09:58',706.951000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (935,1,1,'2019-08-21 15:09:58',707.851000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (936,1,1,'2019-08-21 15:09:58',708.616000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (937,1,1,'2019-08-21 15:09:58',709.062000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (938,1,1,'2019-08-21 15:09:58',709.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (939,1,1,'2019-08-21 15:09:58',709.868000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (940,1,1,'2019-08-21 15:09:58',710.348000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (941,1,1,'2019-08-21 15:09:58',711.313000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (942,1,1,'2019-08-21 15:09:58',712.262000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (943,1,1,'2019-08-21 15:09:58',713.178000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (944,1,1,'2019-08-21 15:09:58',713.603000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (945,1,1,'2019-08-21 15:09:58',714.110000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (946,1,1,'2019-08-21 15:09:58',715.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (947,1,1,'2019-08-21 15:09:58',715.480000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (948,1,1,'2019-08-21 15:09:58',716.024000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (949,1,1,'2019-08-21 15:09:58',716.891000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (950,1,1,'2019-08-21 15:09:58',717.789000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (951,1,1,'2019-08-21 15:09:58',718.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (952,1,1,'2019-08-21 15:09:58',719.521000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (953,1,1,'2019-08-21 15:09:58',720.370000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (954,1,1,'2019-08-21 15:09:58',721.169000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (955,1,1,'2019-08-21 15:09:58',721.586000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (956,1,1,'2019-08-21 15:09:58',722.068000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (957,1,1,'2019-08-21 15:09:58',722.363000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (958,1,1,'2019-08-21 15:09:58',722.967000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (959,1,1,'2019-08-21 15:09:58',723.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (960,1,1,'2019-08-21 15:09:58',724.361000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (961,1,1,'2019-08-21 15:09:58',724.698000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (962,1,1,'2019-08-21 15:09:58',725.631000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (963,1,1,'2019-08-21 15:09:58',726.547000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (964,1,1,'2019-08-21 15:09:58',727.329000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (965,1,1,'2019-08-21 15:09:58',727.763000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (966,1,1,'2019-08-21 15:09:58',728.278000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (967,1,1,'2019-08-21 15:09:58',729.094000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (968,1,1,'2019-08-21 15:09:58',729.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (969,1,1,'2019-08-21 15:09:58',730.043000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (970,1,1,'2019-08-21 15:09:58',730.396000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (971,1,1,'2019-08-21 15:09:58',731.042000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (972,1,1,'2019-08-21 15:09:58',731.857000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (973,1,1,'2019-08-21 15:09:58',732.689000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (974,1,1,'2019-08-21 15:09:58',733.489000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (975,1,1,'2019-08-21 15:09:58',734.305000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (976,1,1,'2019-08-21 15:09:58',734.787000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (977,1,1,'2019-08-21 15:09:58',735.070000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (978,1,1,'2019-08-21 15:09:58',735.920000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (979,1,1,'2019-08-21 15:09:58',736.686000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (980,1,1,'2019-08-21 15:09:58',737.484000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (981,1,1,'2019-08-21 15:09:58',737.886000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (982,1,1,'2019-08-21 15:09:58',738.284000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (983,1,1,'2019-08-21 15:09:58',739.183000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (984,1,1,'2019-08-21 15:09:58',740.099000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (985,1,1,'2019-08-21 15:09:58',741.014000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (986,1,1,'2019-08-21 15:09:58',741.913000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (987,1,1,'2019-08-21 15:09:58',742.679000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (988,1,1,'2019-08-21 15:09:58',743.043000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (989,1,1,'2019-08-21 15:09:58',743.661000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (990,1,1,'2019-08-21 15:09:58',743.972000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (991,1,1,'2019-08-21 15:09:58',744.443000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (992,1,1,'2019-08-21 15:09:58',745.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (993,1,1,'2019-08-21 15:09:58',745.950000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (994,1,1,'2019-08-21 15:09:58',746.292000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (995,1,1,'2019-08-21 15:09:58',746.687000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (996,1,1,'2019-08-21 15:09:58',747.290000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (997,1,1,'2019-08-21 15:09:58',747.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (998,1,1,'2019-08-21 15:09:58',748.156000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (999,1,1,'2019-08-21 15:09:58',749.089000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1000,1,1,'2019-08-21 15:09:58',750.054000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1001,1,1,'2019-08-21 15:09:58',750.970000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1002,1,1,'2019-08-21 15:09:58',751.919000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1003,1,1,'2019-08-21 15:09:58',752.852000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1004,1,1,'2019-08-21 15:09:58',753.297000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1005,1,1,'2019-08-21 15:09:58',753.667000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1006,1,1,'2019-08-21 15:09:58',754.064000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1007,1,1,'2019-08-21 15:09:58',754.516000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1008,1,1,'2019-08-21 15:09:58',755.398000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1009,1,1,'2019-08-21 15:09:58',756.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1010,1,1,'2019-08-21 15:09:58',756.719000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1011,1,1,'2019-08-21 15:09:58',757.347000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1012,1,1,'2019-08-21 15:09:58',757.737000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1013,1,1,'2019-08-21 15:09:58',758.229000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1014,1,1,'2019-08-21 15:09:58',759.194000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1015,1,1,'2019-08-21 15:09:58',760.177000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1016,1,1,'2019-08-21 15:09:58',761.092000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1017,1,1,'2019-08-21 15:09:58',761.472000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1018,1,1,'2019-08-21 15:09:58',762.041000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1019,1,1,'2019-08-21 15:09:58',762.907000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1020,1,1,'2019-08-21 15:09:58',763.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1021,1,1,'2019-08-21 15:09:58',763.673000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1022,1,1,'2019-08-21 15:09:58',764.622000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1023,1,1,'2019-08-21 15:09:58',765.620000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1024,1,1,'2019-08-21 15:09:58',766.403000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1025,1,1,'2019-08-21 15:09:58',767.285000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1026,1,1,'2019-08-21 15:09:58',767.669000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1027,1,1,'2019-08-21 15:09:58',768.168000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1028,1,1,'2019-08-21 15:09:58',769.066000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1029,1,1,'2019-08-21 15:09:58',769.933000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1030,1,1,'2019-08-21 15:09:58',770.698000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1031,1,1,'2019-08-21 15:09:58',771.080000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1032,1,1,'2019-08-21 15:09:58',771.681000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1033,1,1,'2019-08-21 15:09:58',772.109000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1034,1,1,'2019-08-21 15:09:58',772.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1035,1,1,'2019-08-21 15:09:58',773.562000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1036,1,1,'2019-08-21 15:09:58',774.411000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1037,1,1,'2019-08-21 15:09:58',775.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1038,1,1,'2019-08-21 15:09:58',776.076000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1039,1,1,'2019-08-21 15:09:58',776.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1040,1,1,'2019-08-21 15:09:58',776.858000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1041,1,1,'2019-08-21 15:09:58',777.277000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1042,1,1,'2019-08-21 15:09:58',777.773000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1043,1,1,'2019-08-21 15:09:58',778.195000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1044,1,1,'2019-08-21 15:09:58',778.640000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1045,1,1,'2019-08-21 15:09:58',779.539000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1046,1,1,'2019-08-21 15:09:58',780.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1047,1,1,'2019-08-21 15:09:58',781.271000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1048,1,1,'2019-08-21 15:09:58',782.119000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1049,1,1,'2019-08-21 15:09:58',783.002000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1050,1,1,'2019-08-21 15:09:58',783.464000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1051,1,1,'2019-08-21 15:09:58',783.983000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1052,1,1,'2019-08-21 15:09:58',784.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1053,1,1,'2019-08-21 15:09:58',785.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1054,1,1,'2019-08-21 15:09:58',785.898000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1055,1,1,'2019-08-21 15:09:58',786.780000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1056,1,1,'2019-08-21 15:09:58',787.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1057,1,1,'2019-08-21 15:09:58',788.479000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1058,1,1,'2019-08-21 15:09:58',789.378000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1059,1,1,'2019-08-21 15:09:58',789.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1060,1,1,'2019-08-21 15:09:58',790.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1061,1,1,'2019-08-21 15:09:58',791.143000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1062,1,1,'2019-08-21 15:09:58',791.558000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1063,1,1,'2019-08-21 15:09:58',792.075000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1064,1,1,'2019-08-21 15:09:58',793.023000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1065,1,1,'2019-08-21 15:09:58',794.022000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1066,1,1,'2019-08-21 15:09:58',794.576000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1067,1,1,'2019-08-21 15:09:58',795.038000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1068,1,1,'2019-08-21 15:09:58',795.921000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1069,1,1,'2019-08-21 15:09:58',796.703000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1070,1,1,'2019-08-21 15:09:58',797.149000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1071,1,1,'2019-08-21 15:09:58',797.569000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1072,1,1,'2019-08-21 15:09:58',798.435000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1073,1,1,'2019-08-21 15:09:58',799.351000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1074,1,1,'2019-08-21 15:09:58',800.333000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1075,1,1,'2019-08-21 15:09:58',801.314000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1076,1,1,'2019-08-21 15:09:58',801.722000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1077,1,1,'2019-08-21 15:09:58',802.230000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1078,1,1,'2019-08-21 15:09:58',803.180000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1079,1,1,'2019-08-21 15:09:58',803.568000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1080,1,1,'2019-08-21 15:09:58',804.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1081,1,1,'2019-08-21 15:09:58',805.011000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1082,1,1,'2019-08-21 15:09:58',805.476000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1083,1,1,'2019-08-21 15:09:58',805.977000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1084,1,1,'2019-08-21 15:09:58',806.976000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1085,1,1,'2019-08-21 15:09:58',807.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1086,1,1,'2019-08-21 15:09:58',808.120000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1087,1,1,'2019-08-21 15:09:58',808.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1088,1,1,'2019-08-21 15:09:58',809.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1089,1,1,'2019-08-21 15:09:58',810.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1090,1,1,'2019-08-21 15:09:58',810.825000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1091,1,1,'2019-08-21 15:09:58',811.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1092,1,1,'2019-08-21 15:09:58',812.069000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1093,1,1,'2019-08-21 15:09:58',813.035000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1094,1,1,'2019-08-21 15:09:58',813.449000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1095,1,1,'2019-08-21 15:09:58',813.951000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1096,1,1,'2019-08-21 15:09:58',814.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1097,1,1,'2019-08-21 15:09:58',815.600000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1098,1,1,'2019-08-21 15:09:58',815.992000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1099,1,1,'2019-08-21 15:09:58',816.599000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1100,1,1,'2019-08-21 15:09:58',817.397000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1101,1,1,'2019-08-21 15:09:58',817.799000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1102,1,1,'2019-08-21 15:09:58',818.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1103,1,1,'2019-08-21 15:09:58',819.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1104,1,1,'2019-08-21 15:09:58',819.895000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1105,1,1,'2019-08-21 15:09:58',820.241000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1106,1,1,'2019-08-21 15:09:58',820.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1107,1,1,'2019-08-21 15:09:58',821.576000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1108,1,1,'2019-08-21 15:09:58',822.441000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1109,1,1,'2019-08-21 15:09:58',823.258000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1110,1,1,'2019-08-21 15:09:58',824.189000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1111,1,1,'2019-08-21 15:09:58',824.551000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1112,1,1,'2019-08-21 15:09:58',825.122000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1113,1,1,'2019-08-21 15:09:58',825.904000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1114,1,1,'2019-08-21 15:09:58',826.804000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1115,1,1,'2019-08-21 15:09:58',827.603000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1116,1,1,'2019-08-21 15:09:58',827.982000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1117,1,1,'2019-08-21 15:09:58',828.618000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1118,1,1,'2019-08-21 15:09:58',829.032000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1119,1,1,'2019-08-21 15:09:58',829.384000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1120,1,1,'2019-08-21 15:09:58',830.217000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1121,1,1,'2019-08-21 15:09:58',830.777000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1122,1,1,'2019-08-21 15:09:58',831.099000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1123,1,1,'2019-08-21 15:09:58',831.865000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1124,1,1,'2019-08-21 15:09:58',832.730000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1125,1,1,'2019-08-21 15:09:58',833.513000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1126,1,1,'2019-08-21 15:09:58',834.296000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1127,1,1,'2019-08-21 15:09:58',834.693000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1128,1,1,'2019-08-21 15:09:58',835.194000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1129,1,1,'2019-08-21 15:09:58',836.094000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1130,1,1,'2019-08-21 15:09:58',837.076000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1131,1,1,'2019-08-21 15:09:58',837.875000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1132,1,1,'2019-08-21 15:09:58',838.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1133,1,1,'2019-08-21 15:09:58',838.641000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1134,1,1,'2019-08-21 15:09:58',839.507000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1135,1,1,'2019-08-21 15:09:58',840.472000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1136,1,1,'2019-08-21 15:09:58',841.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1137,1,1,'2019-08-21 15:09:58',841.466000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1138,1,1,'2019-08-21 15:09:58',842.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1139,1,1,'2019-08-21 15:09:58',842.986000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1140,1,1,'2019-08-21 15:09:58',843.785000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1141,1,1,'2019-08-21 15:09:58',844.120000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1142,1,1,'2019-08-21 15:09:58',844.801000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1143,1,1,'2019-08-21 15:09:58',845.750000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1144,1,1,'2019-08-21 15:09:58',846.632000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1145,1,1,'2019-08-21 15:09:58',847.414000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1146,1,1,'2019-08-21 15:09:58',848.197000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1147,1,1,'2019-08-21 15:09:58',849.046000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1148,1,1,'2019-08-21 15:09:58',849.529000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1149,1,1,'2019-08-21 15:09:58',849.812000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1150,1,1,'2019-08-21 15:09:58',850.307000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1151,1,1,'2019-08-21 15:09:58',850.744000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1152,1,1,'2019-08-21 15:09:58',851.710000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1153,1,1,'2019-08-21 15:09:58',852.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1154,1,1,'2019-08-21 15:09:58',852.575000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1155,1,1,'2019-08-21 15:09:58',853.012000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1156,1,1,'2019-08-21 15:09:58',853.558000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1157,1,1,'2019-08-21 15:09:58',854.557000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1158,1,1,'2019-08-21 15:09:58',855.423000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1159,1,1,'2019-08-21 15:09:58',856.321000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1160,1,1,'2019-08-21 15:09:58',857.237000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1161,1,1,'2019-08-21 15:09:58',857.705000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1162,1,1,'2019-08-21 15:09:58',858.170000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1163,1,1,'2019-08-21 15:09:58',859.151000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1164,1,1,'2019-08-21 15:09:58',859.562000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1165,1,1,'2019-08-21 15:09:58',860.084000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1166,1,1,'2019-08-21 15:09:58',861.066000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1167,1,1,'2019-08-21 15:09:58',861.965000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1168,1,1,'2019-08-21 15:09:58',862.748000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1169,1,1,'2019-08-21 15:09:58',863.714000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1170,1,1,'2019-08-21 15:09:58',864.164000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1171,1,1,'2019-08-21 15:09:58',864.629000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1172,1,1,'2019-08-21 15:09:58',865.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1173,1,1,'2019-08-21 15:09:58',866.544000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1174,1,1,'2019-08-21 15:09:58',866.909000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1175,1,1,'2019-08-21 15:09:58',867.442000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1176,1,1,'2019-08-21 15:09:58',868.325000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1177,1,1,'2019-08-21 15:09:58',869.174000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1178,1,1,'2019-08-21 15:09:58',869.594000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1179,1,1,'2019-08-21 15:09:58',870.140000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1180,1,1,'2019-08-21 15:09:58',870.513000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1181,1,1,'2019-08-21 15:09:58',871.105000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1182,1,1,'2019-08-21 15:09:58',872.038000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1183,1,1,'2019-08-21 15:09:58',872.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1184,1,1,'2019-08-21 15:09:58',873.228000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1185,1,1,'2019-08-21 15:09:58',873.770000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1186,1,1,'2019-08-21 15:09:58',874.734000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1187,1,1,'2019-08-21 15:09:58',875.650000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1188,1,1,'2019-08-21 15:09:58',876.550000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1189,1,1,'2019-08-21 15:09:58',877.448000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1190,1,1,'2019-08-21 15:09:58',877.980000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1191,1,1,'2019-08-21 15:09:58',878.414000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1192,1,1,'2019-08-21 15:09:58',879.330000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1193,1,1,'2019-08-21 15:09:58',880.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1194,1,1,'2019-08-21 15:09:58',880.797000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1195,1,1,'2019-08-21 15:09:58',881.228000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1196,1,1,'2019-08-21 15:09:58',882.127000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1197,1,1,'2019-08-21 15:09:58',883.025000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1198,1,1,'2019-08-21 15:09:58',883.431000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1199,1,1,'2019-08-21 15:09:58',898.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1200,1,1,'2019-08-21 15:09:58',915.034000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1201,1,1,'2019-08-21 15:09:58',916.033000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1202,1,1,'2019-08-21 15:09:58',916.815000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1203,1,1,'2019-08-21 15:09:58',917.664000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1204,1,1,'2019-08-21 15:09:58',918.563000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1205,1,1,'2019-08-21 15:09:58',919.346000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1206,1,1,'2019-08-21 15:09:58',919.368000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1207,1,1,'2019-08-21 15:09:58',920.262000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1208,1,1,'2019-08-21 15:09:58',920.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1209,1,1,'2019-08-21 15:09:58',921.110000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1210,1,1,'2019-08-21 15:09:58',921.960000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1211,1,1,'2019-08-21 15:09:58',922.446000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1212,1,1,'2019-08-21 15:09:58',922.775000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1213,1,1,'2019-08-21 15:09:58',923.608000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1214,1,1,'2019-08-21 15:09:58',924.507000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1215,1,1,'2019-08-21 15:09:58',925.456000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1216,1,1,'2019-08-21 15:09:58',926.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1217,1,1,'2019-08-21 15:09:58',927.071000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1218,1,1,'2019-08-21 15:09:58',927.970000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1219,1,1,'2019-08-21 15:09:58',928.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1220,1,1,'2019-08-21 15:09:58',929.269000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1221,1,1,'2019-08-21 15:09:58',929.818000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1222,1,1,'2019-08-21 15:09:58',930.167000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1223,1,1,'2019-08-21 15:09:58',930.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1224,1,1,'2019-08-21 15:09:58',931.105000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1225,1,1,'2019-08-21 15:09:58',931.366000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1226,1,1,'2019-08-21 15:09:58',932.215000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1227,1,1,'2019-08-21 15:09:58',933.031000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1228,1,1,'2019-08-21 15:09:58',933.963000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1229,1,1,'2019-08-21 15:09:58',934.829000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1230,1,1,'2019-08-21 15:09:58',935.213000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1231,1,1,'2019-08-21 15:09:58',935.712000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1232,1,1,'2019-08-21 15:09:58',936.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1233,1,1,'2019-08-21 15:09:58',936.627000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1234,1,1,'2019-08-21 15:09:58',937.393000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1235,1,1,'2019-08-21 15:09:58',938.275000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1236,1,1,'2019-08-21 15:09:58',939.041000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1237,1,1,'2019-08-21 15:09:58',939.472000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1238,1,1,'2019-08-21 15:09:58',939.856000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1239,1,1,'2019-08-21 15:09:58',940.772000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1240,1,1,'2019-08-21 15:09:58',941.571000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1241,1,1,'2019-08-21 15:09:58',942.454000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1242,1,1,'2019-08-21 15:09:58',942.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1243,1,1,'2019-08-21 15:09:58',943.387000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1244,1,1,'2019-08-21 15:09:58',944.186000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1245,1,1,'2019-08-21 15:09:58',944.968000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1246,1,1,'2019-08-21 15:09:58',945.376000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1247,1,1,'2019-08-21 15:09:58',945.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1248,1,1,'2019-08-21 15:09:58',946.264000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1249,1,1,'2019-08-21 15:09:58',946.800000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1250,1,1,'2019-08-21 15:09:58',947.698000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1251,1,1,'2019-08-21 15:09:58',948.647000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1252,1,1,'2019-08-21 15:09:58',949.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1253,1,1,'2019-08-21 15:09:58',950.445000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1254,1,1,'2019-08-21 15:09:58',950.927000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1255,1,1,'2019-08-21 15:09:58',951.411000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1256,1,1,'2019-08-21 15:09:58',952.344000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1257,1,1,'2019-08-21 15:09:58',953.325000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1258,1,1,'2019-08-21 15:09:58',954.324000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1259,1,1,'2019-08-21 15:09:58',955.307000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1260,1,1,'2019-08-21 15:09:58',955.721000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1261,1,1,'2019-08-21 15:09:58',956.122000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1262,1,1,'2019-08-21 15:09:58',956.559000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1263,1,1,'2019-08-21 15:09:58',956.988000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1264,1,1,'2019-08-21 15:09:58',957.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1265,1,1,'2019-08-21 15:09:58',958.687000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1266,1,1,'2019-08-21 15:09:58',959.636000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1267,1,1,'2019-08-21 15:09:58',959.949000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1268,1,1,'2019-08-21 15:09:58',960.634000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1269,1,1,'2019-08-21 15:09:58',961.434000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1270,1,1,'2019-08-21 15:09:58',961.867000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1271,1,1,'2019-08-21 15:09:58',962.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1272,1,1,'2019-08-21 15:09:58',963.048000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1273,1,1,'2019-08-21 15:09:58',963.864000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1274,1,1,'2019-08-21 15:09:58',964.763000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1275,1,1,'2019-08-21 15:09:58',965.579000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1276,1,1,'2019-08-21 15:09:58',965.935000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1277,1,1,'2019-08-21 15:09:58',966.562000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1278,1,1,'2019-08-21 15:09:58',966.894000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1279,1,1,'2019-08-21 15:09:58',967.394000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1280,1,1,'2019-08-21 15:09:58',968.293000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1281,1,1,'2019-08-21 15:09:58',968.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1282,1,1,'2019-08-21 15:09:58',969.291000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1283,1,1,'2019-08-21 15:09:58',970.174000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1284,1,1,'2019-08-21 15:09:58',970.738000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1285,1,1,'2019-08-21 15:09:58',971.057000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1286,1,1,'2019-08-21 15:09:58',971.889000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1287,1,1,'2019-08-21 15:09:58',972.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1288,1,1,'2019-08-21 15:09:58',973.039000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1289,1,1,'2019-08-21 15:09:58',973.637000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1290,1,1,'2019-08-21 15:09:58',974.586000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1291,1,1,'2019-08-21 15:09:58',975.484000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1292,1,1,'2019-08-21 15:09:58',975.865000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1293,1,1,'2019-08-21 15:09:58',976.334000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1294,1,1,'2019-08-21 15:09:58',977.266000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1295,1,1,'2019-08-21 15:09:58',978.099000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1296,1,1,'2019-08-21 15:09:58',978.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1297,1,1,'2019-08-21 15:09:58',979.098000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1298,1,1,'2019-08-21 15:09:58',979.930000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1299,1,1,'2019-08-21 15:09:58',980.316000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1300,1,1,'2019-08-21 15:09:58',980.879000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1301,1,1,'2019-08-21 15:09:58',981.728000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1302,1,1,'2019-08-21 15:09:58',982.511000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1303,1,1,'2019-08-21 15:09:58',983.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1304,1,1,'2019-08-21 15:09:58',983.697000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1305,1,1,'2019-08-21 15:09:58',984.292000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1306,1,1,'2019-08-21 15:09:58',985.291000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1307,1,1,'2019-08-21 15:09:58',986.290000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1308,1,1,'2019-08-21 15:09:58',987.105000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1309,1,1,'2019-08-21 15:09:58',987.441000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1310,1,1,'2019-08-21 15:09:58',987.987000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1311,1,1,'2019-08-21 15:09:58',988.903000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1312,1,1,'2019-08-21 15:09:58',989.803000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1313,1,1,'2019-08-21 15:09:58',990.247000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1314,1,1,'2019-08-21 15:09:58',990.701000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1315,1,1,'2019-08-21 15:09:58',991.634000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1316,1,1,'2019-08-21 15:09:58',992.023000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1317,1,1,'2019-08-21 15:09:58',992.583000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1318,1,1,'2019-08-21 15:09:58',993.365000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1319,1,1,'2019-08-21 15:09:58',994.281000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1320,1,1,'2019-08-21 15:09:58',995.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1321,1,1,'2019-08-21 15:09:58',996.262000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1322,1,1,'2019-08-21 15:09:58',997.078000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1323,1,1,'2019-08-21 15:09:58',997.453000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1324,1,1,'2019-08-21 15:09:58',997.844000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1325,1,1,'2019-08-21 15:09:58',998.810000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1326,1,1,'2019-08-21 15:09:58',999.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1327,1,1,'2019-08-21 15:09:58',999.741000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1328,1,1,'2019-08-21 15:09:58',1000.707000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1329,1,1,'2019-08-21 15:09:58',1001.590000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1330,1,1,'2019-08-21 15:09:58',1002.505000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1331,1,1,'2019-08-21 15:09:58',1002.894000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1332,1,1,'2019-08-21 15:09:58',1003.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1333,1,1,'2019-08-21 15:09:58',1004.037000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1334,1,1,'2019-08-21 15:09:58',1004.458000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1335,1,1,'2019-08-21 15:09:58',1004.803000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1336,1,1,'2019-08-21 15:09:58',1005.651000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1337,1,1,'2019-08-21 15:09:58',1006.103000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1338,1,1,'2019-08-21 15:09:58',1006.667000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1339,1,1,'2019-08-21 15:09:58',1007.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1340,1,1,'2019-08-21 15:09:58',1008.415000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1341,1,1,'2019-08-21 15:09:58',1009.182000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1342,1,1,'2019-08-21 15:09:58',1009.574000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1343,1,1,'2019-08-21 15:09:58',1010.030000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1344,1,1,'2019-08-21 15:09:58',1010.996000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1345,1,1,'2019-08-21 15:09:58',1011.462000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1346,1,1,'2019-08-21 15:09:58',1011.778000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1347,1,1,'2019-08-21 15:09:58',1012.645000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1348,1,1,'2019-08-21 15:09:58',1013.443000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1349,1,1,'2019-08-21 15:09:58',1013.884000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1350,1,1,'2019-08-21 15:09:58',1014.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1351,1,1,'2019-08-21 15:09:58',1015.308000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1352,1,1,'2019-08-21 15:09:58',1016.091000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1353,1,1,'2019-08-21 15:09:58',1016.856000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1354,1,1,'2019-08-21 15:09:58',1017.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1355,1,1,'2019-08-21 15:09:58',1018.704000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1356,1,1,'2019-08-21 15:09:58',1019.041000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1357,1,1,'2019-08-21 15:09:58',1019.503000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1358,1,1,'2019-08-21 15:09:58',1020.030000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1359,1,1,'2019-08-21 15:09:58',1020.485000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1360,1,1,'2019-08-21 15:09:58',1021.352000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1361,1,1,'2019-08-21 15:09:58',1022.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1362,1,1,'2019-08-21 15:09:58',1022.836000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1363,1,1,'2019-08-21 15:09:58',1023.166000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1364,1,1,'2019-08-21 15:09:58',1023.532000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1365,1,1,'2019-08-21 15:09:58',1024.065000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1366,1,1,'2019-08-21 15:09:58',1025.030000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1367,1,1,'2019-08-21 15:09:58',1025.946000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1368,1,1,'2019-08-21 15:09:58',1026.389000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1369,1,1,'2019-08-21 15:09:58',1026.929000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1370,1,1,'2019-08-21 15:09:58',1027.794000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1371,1,1,'2019-08-21 15:09:58',1028.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1372,1,1,'2019-08-21 15:09:58',1029.559000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1373,1,1,'2019-08-21 15:09:58',1030.475000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1374,1,1,'2019-08-21 15:09:58',1030.870000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1375,1,1,'2019-08-21 15:09:58',1031.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1376,1,1,'2019-08-21 15:09:58',1032.339000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1377,1,1,'2019-08-21 15:09:58',1033.354000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1378,1,1,'2019-08-21 15:09:58',1033.837000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1379,1,1,'2019-08-21 15:09:58',1034.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1380,1,1,'2019-08-21 15:09:58',1035.103000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1381,1,1,'2019-08-21 15:09:58',1036.068000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1382,1,1,'2019-08-21 15:09:58',1036.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1383,1,1,'2019-08-21 15:09:58',1036.951000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1384,1,1,'2019-08-21 15:09:58',1037.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1385,1,1,'2019-08-21 15:09:58',1038.815000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1386,1,1,'2019-08-21 15:09:58',1039.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1387,1,1,'2019-08-21 15:09:58',1039.631000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1388,1,1,'2019-08-21 15:09:58',1040.023000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1389,1,1,'2019-08-21 15:09:58',1040.497000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1390,1,1,'2019-08-21 15:09:58',1041.479000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1391,1,1,'2019-08-21 15:09:58',1042.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1392,1,1,'2019-08-21 15:09:58',1043.294000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1393,1,1,'2019-08-21 15:09:58',1044.227000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1394,1,1,'2019-08-21 15:09:58',1044.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1395,1,1,'2019-08-21 15:09:58',1045.125000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1396,1,1,'2019-08-21 15:09:58',1045.786000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1397,1,1,'2019-08-21 15:09:58',1046.008000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1398,1,1,'2019-08-21 15:09:58',1046.807000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1399,1,1,'2019-08-21 15:09:58',1047.806000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1400,1,1,'2019-08-21 15:09:58',1048.705000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1401,1,1,'2019-08-21 15:09:58',1049.570000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1402,1,1,'2019-08-21 15:09:58',1050.520000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1403,1,1,'2019-08-21 15:09:58',1051.469000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1404,1,1,'2019-08-21 15:09:58',1051.832000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1405,1,1,'2019-08-21 15:09:58',1052.301000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1406,1,1,'2019-08-21 15:09:58',1052.771000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1407,1,1,'2019-08-21 15:09:58',1053.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1408,1,1,'2019-08-21 15:09:58',1054.198000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1409,1,1,'2019-08-21 15:09:58',1055.064000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1410,1,1,'2019-08-21 15:09:58',1055.964000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1411,1,1,'2019-08-21 15:09:58',1056.354000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1412,1,1,'2019-08-21 15:09:58',1056.746000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1413,1,1,'2019-08-21 15:09:58',1057.130000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1414,1,1,'2019-08-21 15:09:58',1057.611000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1415,1,1,'2019-08-21 15:09:58',1058.494000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1416,1,1,'2019-08-21 15:09:58',1059.343000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1417,1,1,'2019-08-21 15:09:58',1060.342000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1418,1,1,'2019-08-21 15:09:58',1060.764000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1419,1,1,'2019-08-21 15:09:58',1061.175000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1420,1,1,'2019-08-21 15:09:58',1062.007000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1421,1,1,'2019-08-21 15:09:58',1062.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1422,1,1,'2019-08-21 15:09:58',1063.227000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1423,1,1,'2019-08-21 15:09:58',1063.605000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1424,1,1,'2019-08-21 15:09:58',1064.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1425,1,1,'2019-08-21 15:09:58',1065.270000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1426,1,1,'2019-08-21 15:09:58',1066.202000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1427,1,1,'2019-08-21 15:09:58',1066.748000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1428,1,1,'2019-08-21 15:09:58',1067.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1429,1,1,'2019-08-21 15:09:58',1067.967000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1430,1,1,'2019-08-21 15:09:58',1068.312000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1431,1,1,'2019-08-21 15:09:58',1068.966000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1432,1,1,'2019-08-21 15:09:58',1069.865000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1433,1,1,'2019-08-21 15:09:58',1070.697000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1434,1,1,'2019-08-21 15:09:58',1071.108000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1435,1,1,'2019-08-21 15:09:58',1071.463000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1436,1,1,'2019-08-21 15:09:58',1072.296000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1437,1,1,'2019-08-21 15:09:58',1073.278000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1438,1,1,'2019-08-21 15:09:58',1073.642000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1439,1,1,'2019-08-21 15:09:58',1074.044000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1440,1,1,'2019-08-21 15:09:58',1074.408000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1441,1,1,'2019-08-21 15:09:58',1074.826000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1442,1,1,'2019-08-21 15:09:58',1075.792000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1443,1,1,'2019-08-21 15:09:58',1076.690000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1444,1,1,'2019-08-21 15:09:58',1077.623000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1445,1,1,'2019-08-21 15:09:58',1078.031000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1446,1,1,'2019-08-21 15:09:58',1078.422000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1447,1,1,'2019-08-21 15:09:58',1079.321000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1448,1,1,'2019-08-21 15:09:58',1080.087000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1449,1,1,'2019-08-21 15:09:58',1081.020000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1450,1,1,'2019-08-21 15:09:58',1081.918000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1451,1,1,'2019-08-21 15:09:58',1082.271000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1452,1,1,'2019-08-21 15:09:58',1082.685000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1453,1,1,'2019-08-21 15:09:58',1083.467000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1454,1,1,'2019-08-21 15:09:58',1083.865000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1455,1,1,'2019-08-21 15:09:58',1084.383000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1456,1,1,'2019-08-21 15:09:58',1085.148000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1457,1,1,'2019-08-21 15:09:58',1085.561000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1458,1,1,'2019-08-21 15:09:58',1086.014000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1459,1,1,'2019-08-21 15:09:58',1086.863000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1460,1,1,'2019-08-21 15:09:58',1087.829000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1461,1,1,'2019-08-21 15:09:58',1088.794000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1462,1,1,'2019-08-21 15:09:58',1089.144000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1463,1,1,'2019-08-21 15:09:58',1089.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1464,1,1,'2019-08-21 15:09:58',1090.393000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1465,1,1,'2019-08-21 15:09:58',1091.342000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1466,1,1,'2019-08-21 15:09:58',1092.124000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1467,1,1,'2019-08-21 15:09:58',1092.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1468,1,1,'2019-08-21 15:09:58',1092.939000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1469,1,1,'2019-08-21 15:09:58',1093.905000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1470,1,1,'2019-08-21 15:09:58',1094.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1471,1,1,'2019-08-21 15:09:58',1094.871000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1472,1,1,'2019-08-21 15:09:58',1095.887000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1473,1,1,'2019-08-21 15:09:58',1096.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1474,1,1,'2019-08-21 15:09:58',1096.769000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1475,1,1,'2019-08-21 15:09:58',1097.618000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1476,1,1,'2019-08-21 15:09:58',1098.584000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1477,1,1,'2019-08-21 15:09:58',1099.449000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1478,1,1,'2019-08-21 15:09:58',1099.831000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1479,1,1,'2019-08-21 15:09:58',1100.382000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1480,1,1,'2019-08-21 15:09:58',1101.331000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1481,1,1,'2019-08-21 15:09:58',1102.130000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1482,1,1,'2019-08-21 15:09:58',1102.995000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1483,1,1,'2019-08-21 15:09:58',1103.465000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1484,1,1,'2019-08-21 15:09:58',1103.994000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1485,1,1,'2019-08-21 15:09:58',1104.827000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1486,1,1,'2019-08-21 15:09:58',1105.281000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1487,1,1,'2019-08-21 15:09:58',1105.676000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1488,1,1,'2019-08-21 15:09:58',1106.508000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1489,1,1,'2019-08-21 15:09:58',1107.291000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1490,1,1,'2019-08-21 15:09:58',1108.239000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1491,1,1,'2019-08-21 15:09:58',1108.692000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1492,1,1,'2019-08-21 15:09:58',1109.139000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1493,1,1,'2019-08-21 15:09:58',1109.971000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1494,1,1,'2019-08-21 15:09:58',1110.459000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1495,1,1,'2019-08-21 15:09:58',1110.820000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1496,1,1,'2019-08-21 15:09:58',1111.652000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1497,1,1,'2019-08-21 15:09:58',1112.063000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1498,1,1,'2019-08-21 15:09:58',1112.535000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1499,1,1,'2019-08-21 15:09:58',1112.992000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1500,1,1,'2019-08-21 15:09:58',1113.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1501,1,1,'2019-08-21 15:09:58',1113.789000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1502,1,1,'2019-08-21 15:09:58',1114.267000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1503,1,1,'2019-08-21 15:09:58',1115.182000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1504,1,1,'2019-08-21 15:09:58',1116.197000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1505,1,1,'2019-08-21 15:09:58',1116.636000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1506,1,1,'2019-08-21 15:09:58',1117.196000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1507,1,1,'2019-08-21 15:09:58',1118.179000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1508,1,1,'2019-08-21 15:09:58',1119.111000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1509,1,1,'2019-08-21 15:09:58',1119.877000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1510,1,1,'2019-08-21 15:09:58',1120.793000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1511,1,1,'2019-08-21 15:09:58',1121.156000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1512,1,1,'2019-08-21 15:09:58',1121.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1513,1,1,'2019-08-21 15:09:58',1122.674000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1514,1,1,'2019-08-21 15:09:58',1122.701000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1515,1,1,'2019-08-21 15:09:58',1123.489000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1516,1,1,'2019-08-21 15:09:58',1124.256000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1517,1,1,'2019-08-21 15:09:58',1125.188000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1518,1,1,'2019-08-21 15:09:58',1125.577000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1519,1,1,'2019-08-21 15:09:58',1126.037000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1520,1,1,'2019-08-21 15:09:58',1126.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1521,1,1,'2019-08-21 15:09:58',1127.202000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1522,1,1,'2019-08-21 15:09:58',1127.818000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1523,1,1,'2019-08-21 15:09:58',1128.801000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1524,1,1,'2019-08-21 15:09:58',1129.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1525,1,1,'2019-08-21 15:09:58',1130.698000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1526,1,1,'2019-08-21 15:09:58',1131.088000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1527,1,1,'2019-08-21 15:09:58',1131.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1528,1,1,'2019-08-21 15:09:58',1132.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1529,1,1,'2019-08-21 15:09:58',1132.834000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1530,1,1,'2019-08-21 15:09:58',1133.246000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1531,1,1,'2019-08-21 15:09:58',1134.012000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1532,1,1,'2019-08-21 15:09:58',1134.927000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1533,1,1,'2019-08-21 15:09:58',1135.266000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1534,1,1,'2019-08-21 15:09:58',1135.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1535,1,1,'2019-08-21 15:09:58',1136.692000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1536,1,1,'2019-08-21 15:09:58',1137.491000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1537,1,1,'2019-08-21 15:09:58',1138.457000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1538,1,1,'2019-08-21 15:09:58',1139.355000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1539,1,1,'2019-08-21 15:09:58',1140.321000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1540,1,1,'2019-08-21 15:09:58',1140.746000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1541,1,1,'2019-08-21 15:09:58',1141.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1542,1,1,'2019-08-21 15:09:58',1141.970000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1543,1,1,'2019-08-21 15:09:58',1142.411000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1544,1,1,'2019-08-21 15:09:58',1142.852000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1545,1,1,'2019-08-21 15:09:58',1143.718000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1546,1,1,'2019-08-21 15:09:58',1144.500000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1547,1,1,'2019-08-21 15:09:58',1145.333000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1548,1,1,'2019-08-21 15:09:58',1145.682000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1549,1,1,'2019-08-21 15:09:58',1146.265000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1550,1,1,'2019-08-21 15:09:58',1146.671000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1551,1,1,'2019-08-21 15:09:58',1147.081000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1552,1,1,'2019-08-21 15:09:58',1147.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1553,1,1,'2019-08-21 15:09:58',1148.862000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1554,1,1,'2019-08-21 15:09:58',1149.878000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1555,1,1,'2019-08-21 15:09:58',1150.877000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1556,1,1,'2019-08-21 15:09:58',1151.842000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1557,1,1,'2019-08-21 15:09:58',1152.514000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1558,1,1,'2019-08-21 15:09:58',1152.691000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1559,1,1,'2019-08-21 15:09:58',1153.039000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1560,1,1,'2019-08-21 15:09:58',1153.573000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1561,1,1,'2019-08-21 15:09:58',1154.340000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1562,1,1,'2019-08-21 15:09:58',1154.734000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1563,1,1,'2019-08-21 15:09:58',1155.222000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1564,1,1,'2019-08-21 15:09:58',1155.987000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1565,1,1,'2019-08-21 15:09:58',1156.986000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1566,1,1,'2019-08-21 15:09:58',1157.389000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1567,1,1,'2019-08-21 15:09:58',1157.886000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1568,1,1,'2019-08-21 15:09:58',1158.685000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1569,1,1,'2019-08-21 15:09:58',1159.114000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1570,1,1,'2019-08-21 15:09:58',1159.567000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1571,1,1,'2019-08-21 15:09:58',1160.499000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1572,1,1,'2019-08-21 15:09:58',1161.332000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1573,1,1,'2019-08-21 15:09:58',1162.314000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1574,1,1,'2019-08-21 15:09:58',1163.312000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1575,1,1,'2019-08-21 15:09:58',1163.746000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1576,1,1,'2019-08-21 15:09:58',1164.179000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1577,1,1,'2019-08-21 15:09:58',1164.625000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1578,1,1,'2019-08-21 15:09:58',1165.145000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1579,1,1,'2019-08-21 15:09:58',1165.492000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1580,1,1,'2019-08-21 15:09:58',1166.093000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1581,1,1,'2019-08-21 15:09:58',1166.942000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1582,1,1,'2019-08-21 15:09:58',1167.824000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1583,1,1,'2019-08-21 15:09:58',1168.823000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1584,1,1,'2019-08-21 15:09:58',1169.689000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1585,1,1,'2019-08-21 15:09:58',1170.114000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1586,1,1,'2019-08-21 15:09:58',1170.455000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1587,1,1,'2019-08-21 15:09:58',1171.388000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1588,1,1,'2019-08-21 15:09:58',1171.760000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1589,1,1,'2019-08-21 15:09:58',1172.303000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1590,1,1,'2019-08-21 15:09:58',1173.086000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1591,1,1,'2019-08-21 15:09:58',1173.852000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1592,1,1,'2019-08-21 15:09:58',1174.650000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1593,1,1,'2019-08-21 15:09:58',1175.060000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1594,1,1,'2019-08-21 15:09:58',1175.533000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1595,1,1,'2019-08-21 15:09:58',1176.382000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1596,1,1,'2019-08-21 15:09:58',1177.314000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1597,1,1,'2019-08-21 15:09:58',1178.196000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1598,1,1,'2019-08-21 15:09:58',1178.622000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1599,1,1,'2019-08-21 15:09:58',1179.062000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1600,2,2,'2019-08-21 15:10:07',0.895000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1601,2,2,'2019-08-21 15:10:07',31.054000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1602,2,2,'2019-08-21 15:10:07',31.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1603,2,2,'2019-08-21 15:10:07',32.289000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1604,2,2,'2019-08-21 15:10:07',33.138000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1605,2,2,'2019-08-21 15:10:07',33.971000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1606,2,2,'2019-08-21 15:10:07',34.274000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1607,2,2,'2019-08-21 15:10:07',34.853000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1608,2,2,'2019-08-21 15:10:07',35.702000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1609,2,2,'2019-08-21 15:10:07',36.052000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1610,2,2,'2019-08-21 15:10:07',36.701000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1611,2,2,'2019-08-21 15:10:07',37.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1612,2,2,'2019-08-21 15:10:07',37.583000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1613,2,2,'2019-08-21 15:10:07',38.466000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1614,2,2,'2019-08-21 15:10:07',39.481000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1615,2,2,'2019-08-21 15:10:07',40.480000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1616,2,2,'2019-08-21 15:10:07',41.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1617,2,2,'2019-08-21 15:10:07',41.787000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1618,2,2,'2019-08-21 15:10:07',42.411000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1619,2,2,'2019-08-21 15:10:07',43.427000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1620,2,2,'2019-08-21 15:10:07',44.259000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1621,2,2,'2019-08-21 15:10:07',45.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1622,2,2,'2019-08-21 15:10:07',45.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1623,2,2,'2019-08-21 15:10:07',46.091000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1624,2,2,'2019-08-21 15:10:07',46.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1625,2,2,'2019-08-21 15:10:07',47.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1626,2,2,'2019-08-21 15:10:07',47.756000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1627,2,2,'2019-08-21 15:10:07',48.158000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1628,2,2,'2019-08-21 15:10:07',48.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1629,2,2,'2019-08-21 15:10:07',49.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1630,2,2,'2019-08-21 15:10:07',50.485000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1631,2,2,'2019-08-21 15:10:07',51.335000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1632,2,2,'2019-08-21 15:10:07',52.167000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1633,2,2,'2019-08-21 15:10:07',53.116000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1634,2,2,'2019-08-21 15:10:07',53.520000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1635,2,2,'2019-08-21 15:10:07',53.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1636,2,2,'2019-08-21 15:10:07',54.206000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1637,2,2,'2019-08-21 15:10:07',54.781000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1638,2,2,'2019-08-21 15:10:07',55.764000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1639,2,2,'2019-08-21 15:10:07',56.829000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1640,2,2,'2019-08-21 15:10:07',57.661000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1641,2,2,'2019-08-21 15:10:07',58.460000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1642,2,2,'2019-08-21 15:10:07',59.442000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1643,2,2,'2019-08-21 15:10:07',59.800000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1644,2,2,'2019-08-21 15:10:07',60.259000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1645,2,2,'2019-08-21 15:10:07',60.658000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1646,2,2,'2019-08-21 15:10:07',61.190000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1647,2,2,'2019-08-21 15:10:07',62.090000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1648,2,2,'2019-08-21 15:10:07',62.855000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1649,2,2,'2019-08-21 15:10:07',63.253000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1650,2,2,'2019-08-21 15:10:07',63.722000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1651,2,2,'2019-08-21 15:10:07',63.990000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1652,2,2,'2019-08-21 15:10:07',64.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1653,2,2,'2019-08-21 15:10:07',65.553000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1654,2,2,'2019-08-21 15:10:07',66.485000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1655,2,2,'2019-08-21 15:10:07',67.317000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1656,2,2,'2019-08-21 15:10:07',68.267000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1657,2,2,'2019-08-21 15:10:07',69.065000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1658,2,2,'2019-08-21 15:10:07',69.412000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1659,2,2,'2019-08-21 15:10:07',69.981000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1660,2,2,'2019-08-21 15:10:07',70.250000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1661,2,2,'2019-08-21 15:10:07',70.964000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1662,2,2,'2019-08-21 15:10:07',71.912000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1663,2,2,'2019-08-21 15:10:07',72.944000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1664,2,2,'2019-08-21 15:10:07',73.811000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1665,2,2,'2019-08-21 15:10:07',74.709000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1666,2,2,'2019-08-21 15:10:07',75.675000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1667,2,2,'2019-08-21 15:10:07',76.508000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1668,2,2,'2019-08-21 15:10:07',77.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1669,2,2,'2019-08-21 15:10:07',77.833000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1670,2,2,'2019-08-21 15:10:07',78.472000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1671,2,2,'2019-08-21 15:10:07',78.731000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1672,2,2,'2019-08-21 15:10:07',79.305000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1673,2,2,'2019-08-21 15:10:07',79.751000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1674,2,2,'2019-08-21 15:10:07',80.253000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1675,2,2,'2019-08-21 15:10:07',81.186000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1676,2,2,'2019-08-21 15:10:07',82.102000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1677,2,2,'2019-08-21 15:10:07',83.017000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1678,2,2,'2019-08-21 15:10:07',83.446000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1679,2,2,'2019-08-21 15:10:07',83.883000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1680,2,2,'2019-08-21 15:10:07',84.072000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1681,2,2,'2019-08-21 15:10:07',84.798000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1682,2,2,'2019-08-21 15:10:07',85.780000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1683,2,2,'2019-08-21 15:10:07',86.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1684,2,2,'2019-08-21 15:10:07',86.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1685,2,2,'2019-08-21 15:10:07',87.662000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1686,2,2,'2019-08-21 15:10:07',88.594000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1687,2,2,'2019-08-21 15:10:07',88.909000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1688,2,2,'2019-08-21 15:10:07',89.593000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1689,2,2,'2019-08-21 15:10:07',90.376000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1690,2,2,'2019-08-21 15:10:07',91.324000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1691,2,2,'2019-08-21 15:10:07',92.307000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1692,2,2,'2019-08-21 15:10:07',92.706000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1693,2,2,'2019-08-21 15:10:07',93.289000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1694,2,2,'2019-08-21 15:10:07',93.685000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1695,2,2,'2019-08-21 15:10:07',94.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1696,2,2,'2019-08-21 15:10:07',95.087000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1697,2,2,'2019-08-21 15:10:07',95.937000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1698,2,2,'2019-08-21 15:10:07',96.719000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1699,2,2,'2019-08-21 15:10:07',97.169000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1700,2,2,'2019-08-21 15:10:07',97.601000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1701,2,2,'2019-08-21 15:10:07',98.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1702,2,2,'2019-08-21 15:10:07',99.366000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1703,2,2,'2019-08-21 15:10:07',99.783000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1704,2,2,'2019-08-21 15:10:07',100.132000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1705,2,2,'2019-08-21 15:10:07',101.114000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1706,2,2,'2019-08-21 15:10:07',101.963000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1707,2,2,'2019-08-21 15:10:07',102.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1708,2,2,'2019-08-21 15:10:07',102.745000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1709,2,2,'2019-08-21 15:10:07',103.694000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1710,2,2,'2019-08-21 15:10:07',104.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1711,2,2,'2019-08-21 15:10:07',104.610000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1712,2,2,'2019-08-21 15:10:07',105.459000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1713,2,2,'2019-08-21 15:10:07',106.458000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1714,2,2,'2019-08-21 15:10:07',107.224000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1715,2,2,'2019-08-21 15:10:07',108.223000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1716,2,2,'2019-08-21 15:10:07',108.538000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1717,2,2,'2019-08-21 15:10:07',109.188000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1718,2,2,'2019-08-21 15:10:07',110.204000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1719,2,2,'2019-08-21 15:10:07',110.658000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1720,2,2,'2019-08-21 15:10:07',111.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1721,2,2,'2019-08-21 15:10:07',112.118000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1722,2,2,'2019-08-21 15:10:07',113.101000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1723,2,2,'2019-08-21 15:10:07',113.934000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1724,2,2,'2019-08-21 15:10:07',114.323000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1725,2,2,'2019-08-21 15:10:07',114.766000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1726,2,2,'2019-08-21 15:10:07',115.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1727,2,2,'2019-08-21 15:10:07',115.598000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1728,2,2,'2019-08-21 15:10:07',116.547000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1729,2,2,'2019-08-21 15:10:07',117.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1730,2,2,'2019-08-21 15:10:07',117.797000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1731,2,2,'2019-08-21 15:10:07',118.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1732,2,2,'2019-08-21 15:10:07',119.311000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1733,2,2,'2019-08-21 15:10:07',120.227000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1734,2,2,'2019-08-21 15:10:07',121.175000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1735,2,2,'2019-08-21 15:10:07',122.058000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1736,2,2,'2019-08-21 15:10:07',122.522000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1737,2,2,'2019-08-21 15:10:07',122.873000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1738,2,2,'2019-08-21 15:10:07',123.640000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1739,2,2,'2019-08-21 15:10:07',124.107000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1740,2,2,'2019-08-21 15:10:07',124.571000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1741,2,2,'2019-08-21 15:10:07',125.587000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1742,2,2,'2019-08-21 15:10:07',126.503000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1743,2,2,'2019-08-21 15:10:07',127.385000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1744,2,2,'2019-08-21 15:10:07',127.752000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1745,2,2,'2019-08-21 15:10:07',128.284000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1746,2,2,'2019-08-21 15:10:07',129.083000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1747,2,2,'2019-08-21 15:10:07',129.540000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1748,2,2,'2019-08-21 15:10:07',129.982000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1749,2,2,'2019-08-21 15:10:07',130.781000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1750,2,2,'2019-08-21 15:10:07',131.730000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1751,2,2,'2019-08-21 15:10:07',132.646000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1752,2,2,'2019-08-21 15:10:07',132.963000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1753,2,2,'2019-08-21 15:10:07',133.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1754,2,2,'2019-08-21 15:10:07',134.344000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1755,2,2,'2019-08-21 15:10:07',134.780000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1756,2,2,'2019-08-21 15:10:07',135.177000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1757,2,2,'2019-08-21 15:10:07',136.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1758,2,2,'2019-08-21 15:10:07',136.466000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1759,2,2,'2019-08-21 15:10:07',136.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1760,2,2,'2019-08-21 15:10:07',137.740000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1761,2,2,'2019-08-21 15:10:07',138.673000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1762,2,2,'2019-08-21 15:10:07',139.111000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1763,2,2,'2019-08-21 15:10:07',139.639000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1764,2,2,'2019-08-21 15:10:07',140.487000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1765,2,2,'2019-08-21 15:10:07',141.387000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1766,2,2,'2019-08-21 15:10:07',142.202000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1767,2,2,'2019-08-21 15:10:07',142.555000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1768,2,2,'2019-08-21 15:10:07',143.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1769,2,2,'2019-08-21 15:10:07',143.917000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1770,2,2,'2019-08-21 15:10:07',144.850000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1771,2,2,'2019-08-21 15:10:07',145.220000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1772,2,2,'2019-08-21 15:10:07',145.682000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1773,2,2,'2019-08-21 15:10:07',146.129000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1774,2,2,'2019-08-21 15:10:07',146.564000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1775,2,2,'2019-08-21 15:10:07',147.347000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1776,2,2,'2019-08-21 15:10:07',148.346000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1777,2,2,'2019-08-21 15:10:07',149.211000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1778,2,2,'2019-08-21 15:10:07',149.582000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1779,2,2,'2019-08-21 15:10:07',149.994000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1780,2,2,'2019-08-21 15:10:07',150.909000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1781,2,2,'2019-08-21 15:10:07',151.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1782,2,2,'2019-08-21 15:10:07',152.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1783,2,2,'2019-08-21 15:10:07',153.323000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1784,2,2,'2019-08-21 15:10:07',153.742000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1785,2,2,'2019-08-21 15:10:07',154.206000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1786,2,2,'2019-08-21 15:10:07',154.570000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1787,2,2,'2019-08-21 15:10:07',154.972000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1788,2,2,'2019-08-21 15:10:07',155.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1789,2,2,'2019-08-21 15:10:07',155.987000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1790,2,2,'2019-08-21 15:10:07',156.853000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1791,2,2,'2019-08-21 15:10:07',157.636000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1792,2,2,'2019-08-21 15:10:07',158.468000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1793,2,2,'2019-08-21 15:10:07',159.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1794,2,2,'2019-08-21 15:10:07',160.482000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1795,2,2,'2019-08-21 15:10:07',160.851000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1796,2,2,'2019-08-21 15:10:07',161.348000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1797,2,2,'2019-08-21 15:10:07',162.164000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1798,2,2,'2019-08-21 15:10:07',162.627000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1799,2,2,'2019-08-21 15:10:07',163.062000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1800,2,2,'2019-08-21 15:10:07',164.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1801,2,2,'2019-08-21 15:10:07',165.027000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1802,2,2,'2019-08-21 15:10:07',165.414000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1803,2,2,'2019-08-21 15:10:07',165.910000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1804,2,2,'2019-08-21 15:10:07',166.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1805,2,2,'2019-08-21 15:10:07',167.725000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1806,2,2,'2019-08-21 15:10:07',168.590000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1807,2,2,'2019-08-21 15:10:07',169.356000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1808,2,2,'2019-08-21 15:10:07',169.766000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1809,2,2,'2019-08-21 15:10:07',170.288000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1810,2,2,'2019-08-21 15:10:07',171.188000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1811,2,2,'2019-08-21 15:10:07',171.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1812,2,2,'2019-08-21 15:10:07',172.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1813,2,2,'2019-08-21 15:10:07',172.919000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1814,2,2,'2019-08-21 15:10:07',173.391000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1815,2,2,'2019-08-21 15:10:07',173.685000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1816,2,2,'2019-08-21 15:10:07',174.684000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1817,2,2,'2019-08-21 15:10:07',175.633000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1818,2,2,'2019-08-21 15:10:07',176.448000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1819,2,2,'2019-08-21 15:10:07',177.331000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1820,2,2,'2019-08-21 15:10:07',178.263000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1821,2,2,'2019-08-21 15:10:07',178.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1822,2,2,'2019-08-21 15:10:07',179.212000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1823,2,2,'2019-08-21 15:10:07',180.178000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1824,2,2,'2019-08-21 15:10:07',180.549000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1825,2,2,'2019-08-21 15:10:07',180.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1826,2,2,'2019-08-21 15:10:07',181.742000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1827,2,2,'2019-08-21 15:10:07',182.691000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1828,2,2,'2019-08-21 15:10:07',183.641000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1829,2,2,'2019-08-21 15:10:07',184.406000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1830,2,2,'2019-08-21 15:10:07',184.790000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1831,2,2,'2019-08-21 15:10:07',185.289000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1832,2,2,'2019-08-21 15:10:07',186.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1833,2,2,'2019-08-21 15:10:07',187.187000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1834,2,2,'2019-08-21 15:10:07',188.152000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1835,2,2,'2019-08-21 15:10:07',188.968000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1836,2,2,'2019-08-21 15:10:07',189.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1837,2,2,'2019-08-21 15:10:07',190.343000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1838,2,2,'2019-08-21 15:10:07',190.799000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1839,2,2,'2019-08-21 15:10:07',191.171000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1840,2,2,'2019-08-21 15:10:07',191.748000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1841,2,2,'2019-08-21 15:10:07',192.141000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1842,2,2,'2019-08-21 15:10:07',192.730000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1843,2,2,'2019-08-21 15:10:07',193.140000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1844,2,2,'2019-08-21 15:10:07',193.630000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1845,2,2,'2019-08-21 15:10:07',194.611000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1846,2,2,'2019-08-21 15:10:07',195.577000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1847,2,2,'2019-08-21 15:10:07',196.526000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1848,2,2,'2019-08-21 15:10:07',197.459000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1849,2,2,'2019-08-21 15:10:07',198.357000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1850,2,2,'2019-08-21 15:10:07',199.174000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1851,2,2,'2019-08-21 15:10:07',200.122000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1852,2,2,'2019-08-21 15:10:07',201.021000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1853,2,2,'2019-08-21 15:10:07',201.349000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1854,2,2,'2019-08-21 15:10:07',201.837000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1855,2,2,'2019-08-21 15:10:07',202.247000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1856,2,2,'2019-08-21 15:10:07',202.819000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1857,2,2,'2019-08-21 15:10:07',203.635000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1858,2,2,'2019-08-21 15:10:07',204.451000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1859,2,2,'2019-08-21 15:10:07',204.862000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1860,2,2,'2019-08-21 15:10:07',205.434000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1861,2,2,'2019-08-21 15:10:07',206.433000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1862,2,2,'2019-08-21 15:10:07',206.902000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1863,2,2,'2019-08-21 15:10:07',207.381000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1864,2,2,'2019-08-21 15:10:07',208.330000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1865,2,2,'2019-08-21 15:10:07',209.112000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1866,2,2,'2019-08-21 15:10:07',210.078000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1867,2,2,'2019-08-21 15:10:07',210.426000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1868,2,2,'2019-08-21 15:10:07',210.928000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1869,2,2,'2019-08-21 15:10:07',211.203000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1870,2,2,'2019-08-21 15:10:07',211.926000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1871,2,2,'2019-08-21 15:10:07',212.842000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1872,2,2,'2019-08-21 15:10:07',213.824000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1873,2,2,'2019-08-21 15:10:07',214.807000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1874,2,2,'2019-08-21 15:10:07',215.589000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1875,2,2,'2019-08-21 15:10:07',216.505000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1876,2,2,'2019-08-21 15:10:07',216.878000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1877,2,2,'2019-08-21 15:10:07',217.403000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1878,2,2,'2019-08-21 15:10:07',217.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1879,2,2,'2019-08-21 15:10:07',218.319000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1880,2,2,'2019-08-21 15:10:07',219.269000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1881,2,2,'2019-08-21 15:10:07',220.051000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1882,2,2,'2019-08-21 15:10:07',220.613000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1883,2,2,'2019-08-21 15:10:07',220.916000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1884,2,2,'2019-08-21 15:10:07',221.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1885,2,2,'2019-08-21 15:10:07',221.882000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1886,2,2,'2019-08-21 15:10:07',222.748000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1887,2,2,'2019-08-21 15:10:07',223.696000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1888,2,2,'2019-08-21 15:10:07',224.546000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1889,2,2,'2019-08-21 15:10:07',224.925000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1890,2,2,'2019-08-21 15:10:07',225.545000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1891,2,2,'2019-08-21 15:10:07',226.327000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1892,2,2,'2019-08-21 15:10:07',227.260000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1893,2,2,'2019-08-21 15:10:07',228.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1894,2,2,'2019-08-21 15:10:07',228.520000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1895,2,2,'2019-08-21 15:10:07',228.824000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1896,2,2,'2019-08-21 15:10:07',229.606000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1897,2,2,'2019-08-21 15:10:07',230.055000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1898,2,2,'2019-08-21 15:10:07',230.506000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1899,2,2,'2019-08-21 15:10:07',230.832000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1900,2,2,'2019-08-21 15:10:07',231.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1901,2,2,'2019-08-21 15:10:07',232.237000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1902,2,2,'2019-08-21 15:10:07',233.069000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1903,2,2,'2019-08-21 15:10:07',233.886000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1904,2,2,'2019-08-21 15:10:07',234.801000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1905,2,2,'2019-08-21 15:10:07',235.567000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1906,2,2,'2019-08-21 15:10:07',236.583000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1907,2,2,'2019-08-21 15:10:07',237.052000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1908,2,2,'2019-08-21 15:10:07',237.349000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1909,2,2,'2019-08-21 15:10:07',238.247000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1910,2,2,'2019-08-21 15:10:07',239.080000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1911,2,2,'2019-08-21 15:10:07',239.495000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1912,2,2,'2019-08-21 15:10:07',239.995000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1913,2,2,'2019-08-21 15:10:07',240.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1914,2,2,'2019-08-21 15:10:07',241.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1915,2,2,'2019-08-21 15:10:07',242.322000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1916,2,2,'2019-08-21 15:10:07',242.742000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1917,2,2,'2019-08-21 15:10:07',243.200000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1918,2,2,'2019-08-21 15:10:07',243.542000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1919,2,2,'2019-08-21 15:10:07',244.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1920,2,2,'2019-08-21 15:10:07',245.240000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1921,2,2,'2019-08-21 15:10:07',245.694000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1922,2,2,'2019-08-21 15:10:07',246.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1923,2,2,'2019-08-21 15:10:07',247.088000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1924,2,2,'2019-08-21 15:10:07',248.087000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1925,2,2,'2019-08-21 15:10:07',249.086000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1926,2,2,'2019-08-21 15:10:07',249.420000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1927,2,2,'2019-08-21 15:10:07',249.935000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1928,2,2,'2019-08-21 15:10:07',250.817000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1929,2,2,'2019-08-21 15:10:07',251.298000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1930,2,2,'2019-08-21 15:10:07',251.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1931,2,2,'2019-08-21 15:10:07',252.516000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1932,2,2,'2019-08-21 15:10:07',253.381000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1933,2,2,'2019-08-21 15:10:07',253.832000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1934,2,2,'2019-08-21 15:10:07',254.230000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1935,2,2,'2019-08-21 15:10:07',255.013000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1936,2,2,'2019-08-21 15:10:07',256.012000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1937,2,2,'2019-08-21 15:10:07',256.943000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1938,2,2,'2019-08-21 15:10:07',257.225000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1939,2,2,'2019-08-21 15:10:07',257.926000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1940,2,2,'2019-08-21 15:10:07',258.306000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1941,2,2,'2019-08-21 15:10:07',258.792000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1942,2,2,'2019-08-21 15:10:07',259.740000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1943,2,2,'2019-08-21 15:10:07',260.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1944,2,2,'2019-08-21 15:10:07',261.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1945,2,2,'2019-08-21 15:10:07',262.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1946,2,2,'2019-08-21 15:10:07',262.869000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1947,2,2,'2019-08-21 15:10:07',263.320000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1948,2,2,'2019-08-21 15:10:07',264.103000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1949,2,2,'2019-08-21 15:10:07',264.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1950,2,2,'2019-08-21 15:10:07',265.019000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1951,2,2,'2019-08-21 15:10:07',265.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1952,2,2,'2019-08-21 15:10:07',266.683000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1953,2,2,'2019-08-21 15:10:07',267.466000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1954,2,2,'2019-08-21 15:10:07',267.857000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1955,2,2,'2019-08-21 15:10:07',268.248000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1956,2,2,'2019-08-21 15:10:07',269.080000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1957,2,2,'2019-08-21 15:10:07',270.062000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1958,2,2,'2019-08-21 15:10:07',271.078000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1959,2,2,'2019-08-21 15:10:07',271.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1960,2,2,'2019-08-21 15:10:07',272.027000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1961,2,2,'2019-08-21 15:10:07',272.826000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1962,2,2,'2019-08-21 15:10:07',273.229000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1963,2,2,'2019-08-21 15:10:07',273.625000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1964,2,2,'2019-08-21 15:10:07',274.491000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1965,2,2,'2019-08-21 15:10:07',274.915000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1966,2,2,'2019-08-21 15:10:07',275.356000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1967,2,2,'2019-08-21 15:10:07',276.140000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1968,2,2,'2019-08-21 15:10:07',277.021000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1969,2,2,'2019-08-21 15:10:07',277.805000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1970,2,2,'2019-08-21 15:10:07',278.720000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1971,2,2,'2019-08-21 15:10:07',279.636000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1972,2,2,'2019-08-21 15:10:07',280.501000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1973,2,2,'2019-08-21 15:10:07',280.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1974,2,2,'2019-08-21 15:10:07',281.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1975,2,2,'2019-08-21 15:10:07',281.608000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1976,2,2,'2019-08-21 15:10:07',282.100000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1977,2,2,'2019-08-21 15:10:07',283.032000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1978,2,2,'2019-08-21 15:10:07',283.897000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1979,2,2,'2019-08-21 15:10:07',284.335000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1980,2,2,'2019-08-21 15:10:07',284.880000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1981,2,2,'2019-08-21 15:10:07',285.193000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1982,2,2,'2019-08-21 15:10:07',285.846000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1983,2,2,'2019-08-21 15:10:07',286.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1984,2,2,'2019-08-21 15:10:07',287.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1985,2,2,'2019-08-21 15:10:07',288.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1986,2,2,'2019-08-21 15:10:07',289.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1987,2,2,'2019-08-21 15:10:07',290.357000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1988,2,2,'2019-08-21 15:10:07',290.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1989,2,2,'2019-08-21 15:10:07',291.223000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1990,2,2,'2019-08-21 15:10:07',292.188000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1991,2,2,'2019-08-21 15:10:07',292.523000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1992,2,2,'2019-08-21 15:10:07',293.038000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1993,2,2,'2019-08-21 15:10:07',293.986000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1994,2,2,'2019-08-21 15:10:07',294.320000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1995,2,2,'2019-08-21 15:10:07',294.919000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1996,2,2,'2019-08-21 15:10:07',295.802000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1997,2,2,'2019-08-21 15:10:07',296.700000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1998,2,2,'2019-08-21 15:10:07',297.128000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (1999,2,2,'2019-08-21 15:10:07',297.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2000,2,2,'2019-08-21 15:10:07',312.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2001,2,2,'2019-08-21 15:10:07',363.214000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2002,2,2,'2019-08-21 15:10:07',363.692000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2003,2,2,'2019-08-21 15:10:07',364.012000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2004,2,2,'2019-08-21 15:10:07',364.928000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2005,2,2,'2019-08-21 15:10:07',365.859000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2006,2,2,'2019-08-21 15:10:07',366.792000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2007,2,2,'2019-08-21 15:10:07',367.625000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2008,2,2,'2019-08-21 15:10:07',368.014000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2009,2,2,'2019-08-21 15:10:07',368.557000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2010,2,2,'2019-08-21 15:10:07',369.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2011,2,2,'2019-08-21 15:10:07',370.455000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2012,2,2,'2019-08-21 15:10:07',371.254000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2013,2,2,'2019-08-21 15:10:07',371.668000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2014,2,2,'2019-08-21 15:10:07',372.036000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2015,2,2,'2019-08-21 15:10:07',372.802000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2016,2,2,'2019-08-21 15:10:07',373.213000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2017,2,2,'2019-08-21 15:10:07',373.602000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2018,2,2,'2019-08-21 15:10:07',374.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2019,2,2,'2019-08-21 15:10:07',375.149000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2020,2,2,'2019-08-21 15:10:07',375.515000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2021,2,2,'2019-08-21 15:10:07',376.032000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2022,2,2,'2019-08-21 15:10:07',376.323000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2023,2,2,'2019-08-21 15:10:07',376.981000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2024,2,2,'2019-08-21 15:10:07',377.946000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2025,2,2,'2019-08-21 15:10:07',378.796000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2026,2,2,'2019-08-21 15:10:07',379.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2027,2,2,'2019-08-21 15:10:07',379.778000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2028,2,2,'2019-08-21 15:10:07',380.693000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2029,2,2,'2019-08-21 15:10:07',381.493000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2030,2,2,'2019-08-21 15:10:07',382.475000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2031,2,2,'2019-08-21 15:10:07',383.407000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2032,2,2,'2019-08-21 15:10:07',383.683000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2033,2,2,'2019-08-21 15:10:07',384.307000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2034,2,2,'2019-08-21 15:10:07',384.662000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2035,2,2,'2019-08-21 15:10:07',385.238000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2036,2,2,'2019-08-21 15:10:07',385.591000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2037,2,2,'2019-08-21 15:10:07',386.038000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2038,2,2,'2019-08-21 15:10:07',387.037000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2039,2,2,'2019-08-21 15:10:07',387.985000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2040,2,2,'2019-08-21 15:10:07',388.918000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2041,2,2,'2019-08-21 15:10:07',389.684000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2042,2,2,'2019-08-21 15:10:07',390.114000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2043,2,2,'2019-08-21 15:10:07',390.566000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2044,2,2,'2019-08-21 15:10:07',390.912000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2045,2,2,'2019-08-21 15:10:07',391.349000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2046,2,2,'2019-08-21 15:10:07',392.265000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2047,2,2,'2019-08-21 15:10:07',393.113000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2048,2,2,'2019-08-21 15:10:07',393.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2049,2,2,'2019-08-21 15:10:07',394.762000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2050,2,2,'2019-08-21 15:10:07',395.223000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2051,2,2,'2019-08-21 15:10:07',395.610000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2052,2,2,'2019-08-21 15:10:07',396.526000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2053,2,2,'2019-08-21 15:10:07',396.970000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2054,2,2,'2019-08-21 15:10:07',397.509000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2055,2,2,'2019-08-21 15:10:07',398.324000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2056,2,2,'2019-08-21 15:10:07',399.207000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2057,2,2,'2019-08-21 15:10:07',400.206000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2058,2,2,'2019-08-21 15:10:07',401.088000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2059,2,2,'2019-08-21 15:10:07',402.070000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2060,2,2,'2019-08-21 15:10:07',402.986000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2061,2,2,'2019-08-21 15:10:07',403.400000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2062,2,2,'2019-08-21 15:10:07',403.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2063,2,2,'2019-08-21 15:10:07',404.329000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2064,2,2,'2019-08-21 15:10:07',404.950000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2065,2,2,'2019-08-21 15:10:07',405.767000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2066,2,2,'2019-08-21 15:10:07',406.532000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2067,2,2,'2019-08-21 15:10:07',407.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2068,2,2,'2019-08-21 15:10:07',407.873000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2069,2,2,'2019-08-21 15:10:07',408.113000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2070,2,2,'2019-08-21 15:10:07',408.408000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2071,2,2,'2019-08-21 15:10:07',408.930000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2072,2,2,'2019-08-21 15:10:07',409.795000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2073,2,2,'2019-08-21 15:10:07',410.761000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2074,2,2,'2019-08-21 15:10:07',411.235000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2075,2,2,'2019-08-21 15:10:07',411.627000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2076,2,2,'2019-08-21 15:10:07',411.892000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2077,2,2,'2019-08-21 15:10:07',412.608000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2078,2,2,'2019-08-21 15:10:07',413.541000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2079,2,2,'2019-08-21 15:10:07',414.424000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2080,2,2,'2019-08-21 15:10:07',415.256000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2081,2,2,'2019-08-21 15:10:07',416.222000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2082,2,2,'2019-08-21 15:10:07',417.021000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2083,2,2,'2019-08-21 15:10:07',417.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2084,2,2,'2019-08-21 15:10:07',417.836000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2085,2,2,'2019-08-21 15:10:07',418.110000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2086,2,2,'2019-08-21 15:10:07',418.752000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2087,2,2,'2019-08-21 15:10:07',419.751000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2088,2,2,'2019-08-21 15:10:07',420.566000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2089,2,2,'2019-08-21 15:10:07',421.565000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2090,2,2,'2019-08-21 15:10:07',421.917000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2091,2,2,'2019-08-21 15:10:07',422.415000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2092,2,2,'2019-08-21 15:10:07',423.197000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2093,2,2,'2019-08-21 15:10:07',423.673000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2094,2,2,'2019-08-21 15:10:07',424.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2095,2,2,'2019-08-21 15:10:07',424.995000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2096,2,2,'2019-08-21 15:10:07',425.911000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2097,2,2,'2019-08-21 15:10:07',426.910000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2098,2,2,'2019-08-21 15:10:07',427.842000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2099,2,2,'2019-08-21 15:10:07',428.196000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2100,2,2,'2019-08-21 15:10:07',428.824000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2101,2,2,'2019-08-21 15:10:07',429.773000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2102,2,2,'2019-08-21 15:10:07',430.539000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2103,2,2,'2019-08-21 15:10:07',431.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2104,2,2,'2019-08-21 15:10:07',431.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2105,2,2,'2019-08-21 15:10:07',432.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2106,2,2,'2019-08-21 15:10:07',432.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2107,2,2,'2019-08-21 15:10:07',433.153000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2108,2,2,'2019-08-21 15:10:07',433.437000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2109,2,2,'2019-08-21 15:10:07',434.152000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2110,2,2,'2019-08-21 15:10:07',435.018000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2111,2,2,'2019-08-21 15:10:07',435.833000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2112,2,2,'2019-08-21 15:10:07',436.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2113,2,2,'2019-08-21 15:10:07',437.432000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2114,2,2,'2019-08-21 15:10:07',437.817000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2115,2,2,'2019-08-21 15:10:07',438.431000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2116,2,2,'2019-08-21 15:10:07',439.396000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2117,2,2,'2019-08-21 15:10:07',440.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2118,2,2,'2019-08-21 15:10:07',440.745000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2119,2,2,'2019-08-21 15:10:07',441.145000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2120,2,2,'2019-08-21 15:10:07',442.026000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2121,2,2,'2019-08-21 15:10:07',442.893000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2122,2,2,'2019-08-21 15:10:07',443.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2123,2,2,'2019-08-21 15:10:07',444.168000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2124,2,2,'2019-08-21 15:10:07',444.574000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2125,2,2,'2019-08-21 15:10:07',444.828000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2126,2,2,'2019-08-21 15:10:07',445.439000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2127,2,2,'2019-08-21 15:10:07',446.222000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2128,2,2,'2019-08-21 15:10:07',447.088000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2129,2,2,'2019-08-21 15:10:07',448.054000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2130,2,2,'2019-08-21 15:10:07',448.408000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2131,2,2,'2019-08-21 15:10:07',448.919000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2132,2,2,'2019-08-21 15:10:07',449.115000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2133,2,2,'2019-08-21 15:10:07',449.802000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2134,2,2,'2019-08-21 15:10:07',450.667000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2135,2,2,'2019-08-21 15:10:07',451.500000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2136,2,2,'2019-08-21 15:10:07',451.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2137,2,2,'2019-08-21 15:10:07',452.398000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2138,2,2,'2019-08-21 15:10:07',453.164000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2139,2,2,'2019-08-21 15:10:07',453.964000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2140,2,2,'2019-08-21 15:10:07',454.912000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2141,2,2,'2019-08-21 15:10:07',455.294000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2142,2,2,'2019-08-21 15:10:07',455.679000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2143,2,2,'2019-08-21 15:10:07',456.011000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2144,2,2,'2019-08-21 15:10:07',456.627000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2145,2,2,'2019-08-21 15:10:07',457.510000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2146,2,2,'2019-08-21 15:10:07',458.325000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2147,2,2,'2019-08-21 15:10:07',458.757000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2148,2,2,'2019-08-21 15:10:07',459.208000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2149,2,2,'2019-08-21 15:10:07',460.190000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2150,2,2,'2019-08-21 15:10:07',461.122000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2151,2,2,'2019-08-21 15:10:07',462.121000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2152,2,2,'2019-08-21 15:10:07',463.054000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2153,2,2,'2019-08-21 15:10:07',463.411000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2154,2,2,'2019-08-21 15:10:07',463.819000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2155,2,2,'2019-08-21 15:10:07',464.769000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2156,2,2,'2019-08-21 15:10:07',465.634000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2157,2,2,'2019-08-21 15:10:07',466.550000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2158,2,2,'2019-08-21 15:10:07',467.005000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2159,2,2,'2019-08-21 15:10:07',467.349000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2160,2,2,'2019-08-21 15:10:07',467.701000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2161,2,2,'2019-08-21 15:10:07',468.231000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2162,2,2,'2019-08-21 15:10:07',469.113000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2163,2,2,'2019-08-21 15:10:07',469.609000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2164,2,2,'2019-08-21 15:10:07',470.096000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2165,2,2,'2019-08-21 15:10:07',470.929000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2166,2,2,'2019-08-21 15:10:07',471.794000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2167,2,2,'2019-08-21 15:10:07',472.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2168,2,2,'2019-08-21 15:10:07',472.727000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2169,2,2,'2019-08-21 15:10:07',473.726000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2170,2,2,'2019-08-21 15:10:07',474.708000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2171,2,2,'2019-08-21 15:10:07',475.082000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2172,2,2,'2019-08-21 15:10:07',475.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2173,2,2,'2019-08-21 15:10:07',476.473000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2174,2,2,'2019-08-21 15:10:07',477.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2175,2,2,'2019-08-21 15:10:07',478.387000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2176,2,2,'2019-08-21 15:10:07',478.777000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2177,2,2,'2019-08-21 15:10:07',479.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2178,2,2,'2019-08-21 15:10:07',480.168000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2179,2,2,'2019-08-21 15:10:07',480.685000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2180,2,2,'2019-08-21 15:10:07',480.951000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2181,2,2,'2019-08-21 15:10:07',481.866000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2182,2,2,'2019-08-21 15:10:07',482.482000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2183,2,2,'2019-08-21 15:10:07',482.799000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2184,2,2,'2019-08-21 15:10:07',483.581000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2185,2,2,'2019-08-21 15:10:07',484.414000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2186,2,2,'2019-08-21 15:10:07',485.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2187,2,2,'2019-08-21 15:10:07',485.673000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2188,2,2,'2019-08-21 15:10:07',486.012000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2189,2,2,'2019-08-21 15:10:07',486.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2190,2,2,'2019-08-21 15:10:07',487.760000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2191,2,2,'2019-08-21 15:10:07',488.136000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2192,2,2,'2019-08-21 15:10:07',488.742000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2193,2,2,'2019-08-21 15:10:07',489.558000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2194,2,2,'2019-08-21 15:10:07',490.374000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2195,2,2,'2019-08-21 15:10:07',491.173000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2196,2,2,'2019-08-21 15:10:07',492.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2197,2,2,'2019-08-21 15:10:07',492.507000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2198,2,2,'2019-08-21 15:10:07',492.871000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2199,2,2,'2019-08-21 15:10:07',493.687000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2200,2,2,'2019-08-21 15:10:07',494.163000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2201,2,2,'2019-08-21 15:10:07',494.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2202,2,2,'2019-08-21 15:10:07',495.302000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2203,2,2,'2019-08-21 15:10:07',496.084000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2204,2,2,'2019-08-21 15:10:07',496.983000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2205,2,2,'2019-08-21 15:10:07',497.312000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2206,2,2,'2019-08-21 15:10:07',497.982000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2207,2,2,'2019-08-21 15:10:07',498.848000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2208,2,2,'2019-08-21 15:10:07',499.160000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2209,2,2,'2019-08-21 15:10:07',499.730000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2210,2,2,'2019-08-21 15:10:07',500.579000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2211,2,2,'2019-08-21 15:10:07',501.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2212,2,2,'2019-08-21 15:10:07',501.886000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2213,2,2,'2019-08-21 15:10:07',502.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2214,2,2,'2019-08-21 15:10:07',503.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2215,2,2,'2019-08-21 15:10:07',504.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2216,2,2,'2019-08-21 15:10:07',504.410000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2217,2,2,'2019-08-21 15:10:07',505.024000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2218,2,2,'2019-08-21 15:10:07',506.023000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2219,2,2,'2019-08-21 15:10:07',506.923000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2220,2,2,'2019-08-21 15:10:07',507.257000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2221,2,2,'2019-08-21 15:10:07',507.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2222,2,2,'2019-08-21 15:10:07',508.937000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2223,2,2,'2019-08-21 15:10:07',509.753000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2224,2,2,'2019-08-21 15:10:07',510.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2225,2,2,'2019-08-21 15:10:07',510.982000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2226,2,2,'2019-08-21 15:10:07',511.484000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2227,2,2,'2019-08-21 15:10:07',512.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2228,2,2,'2019-08-21 15:10:07',512.881000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2229,2,2,'2019-08-21 15:10:07',513.398000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2230,2,2,'2019-08-21 15:10:07',513.810000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2231,2,2,'2019-08-21 15:10:07',514.381000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2232,2,2,'2019-08-21 15:10:07',515.380000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2233,2,2,'2019-08-21 15:10:07',516.179000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2234,2,2,'2019-08-21 15:10:07',517.062000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2235,2,2,'2019-08-21 15:10:07',517.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2236,2,2,'2019-08-21 15:10:07',518.027000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2237,2,2,'2019-08-21 15:10:07',518.859000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2238,2,2,'2019-08-21 15:10:07',519.842000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2239,2,2,'2019-08-21 15:10:07',520.220000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2240,2,2,'2019-08-21 15:10:07',520.607000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2241,2,2,'2019-08-21 15:10:07',521.423000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2242,2,2,'2019-08-21 15:10:07',522.405000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2243,2,2,'2019-08-21 15:10:07',522.765000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2244,2,2,'2019-08-21 15:10:07',523.321000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2245,2,2,'2019-08-21 15:10:07',524.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2246,2,2,'2019-08-21 15:10:07',525.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2247,2,2,'2019-08-21 15:10:07',525.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2248,2,2,'2019-08-21 15:10:07',526.187000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2249,2,2,'2019-08-21 15:10:07',526.817000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2250,2,2,'2019-08-21 15:10:07',527.800000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2251,2,2,'2019-08-21 15:10:07',528.665000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2252,2,2,'2019-08-21 15:10:07',529.465000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2253,2,2,'2019-08-21 15:10:07',529.892000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2254,2,2,'2019-08-21 15:10:07',530.380000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2255,2,2,'2019-08-21 15:10:07',531.246000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2256,2,2,'2019-08-21 15:10:07',531.689000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2257,2,2,'2019-08-21 15:10:07',532.195000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2258,2,2,'2019-08-21 15:10:07',533.094000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2259,2,2,'2019-08-21 15:10:07',534.060000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2260,2,2,'2019-08-21 15:10:07',534.526000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2261,2,2,'2019-08-21 15:10:07',534.908000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2262,2,2,'2019-08-21 15:10:07',535.857000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2263,2,2,'2019-08-21 15:10:07',536.191000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2264,2,2,'2019-08-21 15:10:07',536.807000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2265,2,2,'2019-08-21 15:10:07',537.739000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2266,2,2,'2019-08-21 15:10:07',538.571000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2267,2,2,'2019-08-21 15:10:07',539.504000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2268,2,2,'2019-08-21 15:10:07',540.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2269,2,2,'2019-08-21 15:10:07',541.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2270,2,2,'2019-08-21 15:10:07',541.946000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2271,2,2,'2019-08-21 15:10:07',542.334000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2272,2,2,'2019-08-21 15:10:07',543.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2273,2,2,'2019-08-21 15:10:07',543.582000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2274,2,2,'2019-08-21 15:10:07',543.882000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2275,2,2,'2019-08-21 15:10:07',544.731000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2276,2,2,'2019-08-21 15:10:07',545.714000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2277,2,2,'2019-08-21 15:10:07',546.662000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2278,2,2,'2019-08-21 15:10:07',547.578000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2279,2,2,'2019-08-21 15:10:07',547.984000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2280,2,2,'2019-08-21 15:10:07',548.494000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2281,2,2,'2019-08-21 15:10:07',548.893000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2282,2,2,'2019-08-21 15:10:07',549.442000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2283,2,2,'2019-08-21 15:10:07',550.259000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2284,2,2,'2019-08-21 15:10:07',551.190000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2285,2,2,'2019-08-21 15:10:07',552.156000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2286,2,2,'2019-08-21 15:10:07',552.922000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2287,2,2,'2019-08-21 15:10:07',553.365000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2288,2,2,'2019-08-21 15:10:07',553.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2289,2,2,'2019-08-21 15:10:07',554.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2290,2,2,'2019-08-21 15:10:07',554.570000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2291,2,2,'2019-08-21 15:10:07',555.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2292,2,2,'2019-08-21 15:10:07',556.352000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2293,2,2,'2019-08-21 15:10:07',557.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2294,2,2,'2019-08-21 15:10:07',557.848000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2295,2,2,'2019-08-21 15:10:07',558.184000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2296,2,2,'2019-08-21 15:10:07',558.555000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2297,2,2,'2019-08-21 15:10:07',559.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2298,2,2,'2019-08-21 15:10:07',560.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2299,2,2,'2019-08-21 15:10:07',561.130000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2300,2,2,'2019-08-21 15:10:07',561.929000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2301,2,2,'2019-08-21 15:10:07',562.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2302,2,2,'2019-08-21 15:10:07',562.712000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2303,2,2,'2019-08-21 15:10:07',562.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2304,2,2,'2019-08-21 15:10:07',563.693000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2305,2,2,'2019-08-21 15:10:07',564.692000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2306,2,2,'2019-08-21 15:10:07',565.459000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2307,2,2,'2019-08-21 15:10:07',565.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2308,2,2,'2019-08-21 15:10:07',566.440000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2309,2,2,'2019-08-21 15:10:07',566.731000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2310,2,2,'2019-08-21 15:10:07',567.406000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2311,2,2,'2019-08-21 15:10:07',568.239000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2312,2,2,'2019-08-21 15:10:07',569.204000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2313,2,2,'2019-08-21 15:10:07',570.004000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2314,2,2,'2019-08-21 15:10:07',570.770000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2315,2,2,'2019-08-21 15:10:07',571.552000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2316,2,2,'2019-08-21 15:10:07',572.401000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2317,2,2,'2019-08-21 15:10:07',573.283000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2318,2,2,'2019-08-21 15:10:07',573.759000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2319,2,2,'2019-08-21 15:10:07',574.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2320,2,2,'2019-08-21 15:10:07',574.516000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2321,2,2,'2019-08-21 15:10:07',575.182000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2322,2,2,'2019-08-21 15:10:07',576.030000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2323,2,2,'2019-08-21 15:10:07',576.996000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2324,2,2,'2019-08-21 15:10:07',577.929000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2325,2,2,'2019-08-21 15:10:07',578.321000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2326,2,2,'2019-08-21 15:10:07',578.711000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2327,2,2,'2019-08-21 15:10:07',579.008000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2328,2,2,'2019-08-21 15:10:07',579.477000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2329,2,2,'2019-08-21 15:10:07',580.309000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2330,2,2,'2019-08-21 15:10:07',581.274000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2331,2,2,'2019-08-21 15:10:07',581.613000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2332,2,2,'2019-08-21 15:10:07',582.124000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2333,2,2,'2019-08-21 15:10:07',583.123000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2334,2,2,'2019-08-21 15:10:07',584.071000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2335,2,2,'2019-08-21 15:10:07',585.070000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2336,2,2,'2019-08-21 15:10:07',585.601000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2337,2,2,'2019-08-21 15:10:07',585.920000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2338,2,2,'2019-08-21 15:10:07',586.735000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2339,2,2,'2019-08-21 15:10:07',587.501000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2340,2,2,'2019-08-21 15:10:07',588.317000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2341,2,2,'2019-08-21 15:10:07',588.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2342,2,2,'2019-08-21 15:10:07',589.199000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2343,2,2,'2019-08-21 15:10:07',590.031000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2344,2,2,'2019-08-21 15:10:07',590.914000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2345,2,2,'2019-08-21 15:10:07',591.274000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2346,2,2,'2019-08-21 15:10:07',591.680000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2347,2,2,'2019-08-21 15:10:07',592.462000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2348,2,2,'2019-08-21 15:10:07',593.361000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2349,2,2,'2019-08-21 15:10:07',594.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2350,2,2,'2019-08-21 15:10:07',594.949000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2351,2,2,'2019-08-21 15:10:07',595.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2352,2,2,'2019-08-21 15:10:07',595.585000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2353,2,2,'2019-08-21 15:10:07',596.108000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2354,2,2,'2019-08-21 15:10:07',596.874000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2355,2,2,'2019-08-21 15:10:07',597.372000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2356,2,2,'2019-08-21 15:10:07',597.890000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2357,2,2,'2019-08-21 15:10:07',598.889000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2358,2,2,'2019-08-21 15:10:07',599.771000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2359,2,2,'2019-08-21 15:10:07',600.653000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2360,2,2,'2019-08-21 15:10:07',601.310000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2361,2,2,'2019-08-21 15:10:07',601.452000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2362,2,2,'2019-08-21 15:10:07',602.368000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2363,2,2,'2019-08-21 15:10:07',603.234000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2364,2,2,'2019-08-21 15:10:07',604.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2365,2,2,'2019-08-21 15:10:07',605.182000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2366,2,2,'2019-08-21 15:10:07',605.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2367,2,2,'2019-08-21 15:10:07',606.448000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2368,2,2,'2019-08-21 15:10:07',606.813000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2369,2,2,'2019-08-21 15:10:07',607.175000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2370,2,2,'2019-08-21 15:10:07',607.796000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2371,2,2,'2019-08-21 15:10:07',608.611000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2372,2,2,'2019-08-21 15:10:07',609.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2373,2,2,'2019-08-21 15:10:07',609.527000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2374,2,2,'2019-08-21 15:10:07',610.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2375,2,2,'2019-08-21 15:10:07',610.739000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2376,2,2,'2019-08-21 15:10:07',611.209000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2377,2,2,'2019-08-21 15:10:07',612.041000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2378,2,2,'2019-08-21 15:10:07',612.906000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2379,2,2,'2019-08-21 15:10:07',613.689000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2380,2,2,'2019-08-21 15:10:07',614.638000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2381,2,2,'2019-08-21 15:10:07',615.620000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2382,2,2,'2019-08-21 15:10:07',616.049000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2383,2,2,'2019-08-21 15:10:07',616.619000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2384,2,2,'2019-08-21 15:10:07',617.079000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2385,2,2,'2019-08-21 15:10:07',617.635000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2386,2,2,'2019-08-21 15:10:07',618.617000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2387,2,2,'2019-08-21 15:10:07',619.007000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2388,2,2,'2019-08-21 15:10:07',619.566000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2389,2,2,'2019-08-21 15:10:07',620.382000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2390,2,2,'2019-08-21 15:10:07',620.845000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2391,2,2,'2019-08-21 15:10:07',621.181000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2392,2,2,'2019-08-21 15:10:07',622.063000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2393,2,2,'2019-08-21 15:10:07',622.829000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2394,2,2,'2019-08-21 15:10:07',623.679000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2395,2,2,'2019-08-21 15:10:07',624.627000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2396,2,2,'2019-08-21 15:10:07',625.055000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2397,2,2,'2019-08-21 15:10:07',625.427000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2398,2,2,'2019-08-21 15:10:07',626.325000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2399,2,2,'2019-08-21 15:10:07',627.258000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2400,2,2,'2019-08-21 15:10:07',627.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2401,2,2,'2019-08-21 15:10:07',628.240000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2402,2,2,'2019-08-21 15:10:07',641.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2403,2,2,'2019-08-21 15:10:07',664.416000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2404,2,2,'2019-08-21 15:10:07',664.910000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2405,2,2,'2019-08-21 15:10:07',665.182000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2406,2,2,'2019-08-21 15:10:07',666.063000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2407,2,2,'2019-08-21 15:10:07',667.013000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2408,2,2,'2019-08-21 15:10:07',667.846000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2409,2,2,'2019-08-21 15:10:07',668.182000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2410,2,2,'2019-08-21 15:10:07',668.711000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2411,2,2,'2019-08-21 15:10:07',669.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2412,2,2,'2019-08-21 15:10:07',670.742000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2413,2,2,'2019-08-21 15:10:07',671.675000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2414,2,2,'2019-08-21 15:10:07',672.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2415,2,2,'2019-08-21 15:10:07',673.539000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2416,2,2,'2019-08-21 15:10:07',673.825000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2417,2,2,'2019-08-21 15:10:07',674.455000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2418,2,2,'2019-08-21 15:10:07',674.784000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2419,2,2,'2019-08-21 15:10:07',675.320000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2420,2,2,'2019-08-21 15:10:07',676.220000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2421,2,2,'2019-08-21 15:10:07',677.035000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2422,2,2,'2019-08-21 15:10:07',678.034000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2423,2,2,'2019-08-21 15:10:07',678.397000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2424,2,2,'2019-08-21 15:10:07',679.017000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2425,2,2,'2019-08-21 15:10:07',679.307000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2426,2,2,'2019-08-21 15:10:07',679.915000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2427,2,2,'2019-08-21 15:10:07',680.848000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2428,2,2,'2019-08-21 15:10:07',681.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2429,2,2,'2019-08-21 15:10:07',681.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2430,2,2,'2019-08-21 15:10:07',682.812000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2431,2,2,'2019-08-21 15:10:07',683.628000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2432,2,2,'2019-08-21 15:10:07',684.410000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2433,2,2,'2019-08-21 15:10:07',684.778000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2434,2,2,'2019-08-21 15:10:07',685.210000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2435,2,2,'2019-08-21 15:10:07',686.108000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2436,2,2,'2019-08-21 15:10:07',687.008000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2437,2,2,'2019-08-21 15:10:07',687.790000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2438,2,2,'2019-08-21 15:10:07',688.150000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2439,2,2,'2019-08-21 15:10:07',688.689000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2440,2,2,'2019-08-21 15:10:07',689.019000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2441,2,2,'2019-08-21 15:10:07',689.505000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2442,2,2,'2019-08-21 15:10:07',690.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2443,2,2,'2019-08-21 15:10:07',691.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2444,2,2,'2019-08-21 15:10:07',691.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2445,2,2,'2019-08-21 15:10:07',692.086000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2446,2,2,'2019-08-21 15:10:07',692.984000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2447,2,2,'2019-08-21 15:10:07',693.867000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2448,2,2,'2019-08-21 15:10:07',694.850000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2449,2,2,'2019-08-21 15:10:07',695.632000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2450,2,2,'2019-08-21 15:10:07',696.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2451,2,2,'2019-08-21 15:10:07',696.480000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2452,2,2,'2019-08-21 15:10:07',697.396000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2453,2,2,'2019-08-21 15:10:07',698.362000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2454,2,2,'2019-08-21 15:10:07',698.710000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2455,2,2,'2019-08-21 15:10:07',699.211000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2456,2,2,'2019-08-21 15:10:07',700.210000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2457,2,2,'2019-08-21 15:10:07',700.557000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2458,2,2,'2019-08-21 15:10:07',701.076000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2459,2,2,'2019-08-21 15:10:07',701.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2460,2,2,'2019-08-21 15:10:07',702.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2461,2,2,'2019-08-21 15:10:07',703.706000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2462,2,2,'2019-08-21 15:10:07',704.080000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2463,2,2,'2019-08-21 15:10:07',704.622000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2464,2,2,'2019-08-21 15:10:07',705.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2465,2,2,'2019-08-21 15:10:07',706.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2466,2,2,'2019-08-21 15:10:07',706.520000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2467,2,2,'2019-08-21 15:10:07',707.502000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2468,2,2,'2019-08-21 15:10:07',708.269000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2469,2,2,'2019-08-21 15:10:07',709.167000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2470,2,2,'2019-08-21 15:10:07',709.471000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2471,2,2,'2019-08-21 15:10:07',709.949000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2472,2,2,'2019-08-21 15:10:07',710.815000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2473,2,2,'2019-08-21 15:10:07',711.581000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2474,2,2,'2019-08-21 15:10:07',711.884000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2475,2,2,'2019-08-21 15:10:07',712.514000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2476,2,2,'2019-08-21 15:10:07',712.944000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2477,2,2,'2019-08-21 15:10:07',713.412000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2478,2,2,'2019-08-21 15:10:07',713.722000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2479,2,2,'2019-08-21 15:10:07',714.278000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2480,2,2,'2019-08-21 15:10:07',715.144000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2481,2,2,'2019-08-21 15:10:07',715.909000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2482,2,2,'2019-08-21 15:10:07',716.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2483,2,2,'2019-08-21 15:10:07',717.558000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2484,2,2,'2019-08-21 15:10:07',717.991000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2485,2,2,'2019-08-21 15:10:07',718.340000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2486,2,2,'2019-08-21 15:10:07',719.140000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2487,2,2,'2019-08-21 15:10:07',719.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2488,2,2,'2019-08-21 15:10:07',720.737000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2489,2,2,'2019-08-21 15:10:07',721.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2490,2,2,'2019-08-21 15:10:07',721.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2491,2,2,'2019-08-21 15:10:07',722.519000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2492,2,2,'2019-08-21 15:10:07',722.868000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2493,2,2,'2019-08-21 15:10:07',723.418000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2494,2,2,'2019-08-21 15:10:07',724.250000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2495,2,2,'2019-08-21 15:10:07',724.624000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2496,2,2,'2019-08-21 15:10:07',725.033000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2497,2,2,'2019-08-21 15:10:07',726.032000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2498,2,2,'2019-08-21 15:10:07',726.997000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2499,2,2,'2019-08-21 15:10:07',727.896000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2500,2,2,'2019-08-21 15:10:07',728.289000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2501,2,2,'2019-08-21 15:10:07',728.796000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2502,2,2,'2019-08-21 15:10:07',729.661000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2503,2,2,'2019-08-21 15:10:07',730.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2504,2,2,'2019-08-21 15:10:07',731.326000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2505,2,2,'2019-08-21 15:10:07',732.275000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2506,2,2,'2019-08-21 15:10:07',732.579000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2507,2,2,'2019-08-21 15:10:07',733.058000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2508,2,2,'2019-08-21 15:10:07',733.923000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2509,2,2,'2019-08-21 15:10:07',734.889000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2510,2,2,'2019-08-21 15:10:07',735.295000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2511,2,2,'2019-08-21 15:10:07',735.788000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2512,2,2,'2019-08-21 15:10:07',736.204000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2513,2,2,'2019-08-21 15:10:07',736.787000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2514,2,2,'2019-08-21 15:10:07',737.586000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2515,2,2,'2019-08-21 15:10:07',738.385000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2516,2,2,'2019-08-21 15:10:07',739.284000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2517,2,2,'2019-08-21 15:10:07',740.133000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2518,2,2,'2019-08-21 15:10:07',740.898000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2519,2,2,'2019-08-21 15:10:07',741.281000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2520,2,2,'2019-08-21 15:10:07',741.715000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2521,2,2,'2019-08-21 15:10:07',742.714000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2522,2,2,'2019-08-21 15:10:07',743.361000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2523,2,2,'2019-08-21 15:10:07',743.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2524,2,2,'2019-08-21 15:10:07',743.836000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2525,2,2,'2019-08-21 15:10:07',744.328000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2526,2,2,'2019-08-21 15:10:07',745.111000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2527,2,2,'2019-08-21 15:10:07',745.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2528,2,2,'2019-08-21 15:10:07',745.993000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2529,2,2,'2019-08-21 15:10:07',746.909000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2530,2,2,'2019-08-21 15:10:07',747.808000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2531,2,2,'2019-08-21 15:10:07',748.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2532,2,2,'2019-08-21 15:10:07',749.156000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2533,2,2,'2019-08-21 15:10:07',749.673000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2534,2,2,'2019-08-21 15:10:07',750.521000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2535,2,2,'2019-08-21 15:10:07',751.521000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2536,2,2,'2019-08-21 15:10:07',752.486000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2537,2,2,'2019-08-21 15:10:07',752.841000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2538,2,2,'2019-08-21 15:10:07',753.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2539,2,2,'2019-08-21 15:10:07',754.351000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2540,2,2,'2019-08-21 15:10:07',754.880000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2541,2,2,'2019-08-21 15:10:07',755.184000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2542,2,2,'2019-08-21 15:10:07',756.132000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2543,2,2,'2019-08-21 15:10:07',757.131000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2544,2,2,'2019-08-21 15:10:07',757.535000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2545,2,2,'2019-08-21 15:10:07',757.947000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2546,2,2,'2019-08-21 15:10:07',758.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2547,2,2,'2019-08-21 15:10:07',759.662000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2548,2,2,'2019-08-21 15:10:07',760.461000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2549,2,2,'2019-08-21 15:10:07',760.806000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2550,2,2,'2019-08-21 15:10:07',761.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2551,2,2,'2019-08-21 15:10:07',762.009000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2552,2,2,'2019-08-21 15:10:07',763.008000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2553,2,2,'2019-08-21 15:10:07',763.990000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2554,2,2,'2019-08-21 15:10:07',764.410000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2555,2,2,'2019-08-21 15:10:07',764.989000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2556,2,2,'2019-08-21 15:10:07',765.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2557,2,2,'2019-08-21 15:10:07',766.721000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2558,2,2,'2019-08-21 15:10:07',767.653000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2559,2,2,'2019-08-21 15:10:07',768.552000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2560,2,2,'2019-08-21 15:10:07',768.893000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2561,2,2,'2019-08-21 15:10:07',769.352000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2562,2,2,'2019-08-21 15:10:07',769.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2563,2,2,'2019-08-21 15:10:07',770.316000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2564,2,2,'2019-08-21 15:10:07',770.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2565,2,2,'2019-08-21 15:10:07',771.299000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2566,2,2,'2019-08-21 15:10:07',772.265000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2567,2,2,'2019-08-21 15:10:07',773.063000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2568,2,2,'2019-08-21 15:10:07',774.062000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2569,2,2,'2019-08-21 15:10:07',774.414000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2570,2,2,'2019-08-21 15:10:07',774.979000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2571,2,2,'2019-08-21 15:10:07',775.894000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2572,2,2,'2019-08-21 15:10:07',776.876000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2573,2,2,'2019-08-21 15:10:07',777.271000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2574,2,2,'2019-08-21 15:10:07',777.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2575,2,2,'2019-08-21 15:10:07',778.491000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2576,2,2,'2019-08-21 15:10:07',778.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2577,2,2,'2019-08-21 15:10:07',779.424000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2578,2,2,'2019-08-21 15:10:07',780.289000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2579,2,2,'2019-08-21 15:10:07',781.122000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2580,2,2,'2019-08-21 15:10:07',781.461000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2581,2,2,'2019-08-21 15:10:07',782.070000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2582,2,2,'2019-08-21 15:10:07',782.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2583,2,2,'2019-08-21 15:10:07',783.868000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2584,2,2,'2019-08-21 15:10:07',784.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2585,2,2,'2019-08-21 15:10:07',785.338000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2586,2,2,'2019-08-21 15:10:07',785.684000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2587,2,2,'2019-08-21 15:10:07',786.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2588,2,2,'2019-08-21 15:10:07',787.398000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2589,2,2,'2019-08-21 15:10:07',788.280000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2590,2,2,'2019-08-21 15:10:07',788.750000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2591,2,2,'2019-08-21 15:10:07',789.097000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2592,2,2,'2019-08-21 15:10:07',790.028000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2593,2,2,'2019-08-21 15:10:07',790.466000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2594,2,2,'2019-08-21 15:10:07',790.878000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2595,2,2,'2019-08-21 15:10:07',791.743000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2596,2,2,'2019-08-21 15:10:07',792.726000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2597,2,2,'2019-08-21 15:10:07',793.232000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2598,2,2,'2019-08-21 15:10:07',793.525000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2599,2,2,'2019-08-21 15:10:07',794.475000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2600,2,2,'2019-08-21 15:10:07',795.256000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2601,2,2,'2019-08-21 15:10:07',795.686000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2602,2,2,'2019-08-21 15:10:07',796.255000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2603,2,2,'2019-08-21 15:10:07',797.138000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2604,2,2,'2019-08-21 15:10:07',797.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2605,2,2,'2019-08-21 15:10:07',797.953000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2606,2,2,'2019-08-21 15:10:07',798.952000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2607,2,2,'2019-08-21 15:10:07',799.918000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2608,2,2,'2019-08-21 15:10:07',800.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2609,2,2,'2019-08-21 15:10:07',800.850000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2610,2,2,'2019-08-21 15:10:07',801.832000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2611,2,2,'2019-08-21 15:10:07',802.781000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2612,2,2,'2019-08-21 15:10:07',803.730000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2613,2,2,'2019-08-21 15:10:07',804.286000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2614,2,2,'2019-08-21 15:10:07',804.579000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2615,2,2,'2019-08-21 15:10:07',805.445000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2616,2,2,'2019-08-21 15:10:07',806.411000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2617,2,2,'2019-08-21 15:10:07',807.376000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2618,2,2,'2019-08-21 15:10:07',807.631000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2619,2,2,'2019-08-21 15:10:07',808.309000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2620,2,2,'2019-08-21 15:10:07',808.617000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2621,2,2,'2019-08-21 15:10:07',809.225000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2622,2,2,'2019-08-21 15:10:07',809.506000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2623,2,2,'2019-08-21 15:10:07',810.090000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2624,2,2,'2019-08-21 15:10:07',810.889000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2625,2,2,'2019-08-21 15:10:07',811.854000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2626,2,2,'2019-08-21 15:10:07',812.688000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2627,2,2,'2019-08-21 15:10:07',813.636000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2628,2,2,'2019-08-21 15:10:07',814.028000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2629,2,2,'2019-08-21 15:10:07',814.469000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2630,2,2,'2019-08-21 15:10:07',814.756000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2631,2,2,'2019-08-21 15:10:07',815.334000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2632,2,2,'2019-08-21 15:10:07',816.233000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2633,2,2,'2019-08-21 15:10:07',817.183000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2634,2,2,'2019-08-21 15:10:07',818.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2635,2,2,'2019-08-21 15:10:07',819.113000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2636,2,2,'2019-08-21 15:10:07',819.896000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2637,2,2,'2019-08-21 15:10:07',820.745000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2638,2,2,'2019-08-21 15:10:07',821.105000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2639,2,2,'2019-08-21 15:10:07',821.577000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2640,2,2,'2019-08-21 15:10:07',822.560000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2641,2,2,'2019-08-21 15:10:07',823.476000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2642,2,2,'2019-08-21 15:10:07',823.831000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2643,2,2,'2019-08-21 15:10:07',824.258000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2644,2,2,'2019-08-21 15:10:07',825.157000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2645,2,2,'2019-08-21 15:10:07',826.122000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2646,2,2,'2019-08-21 15:10:07',826.988000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2647,2,2,'2019-08-21 15:10:07',827.954000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2648,2,2,'2019-08-21 15:10:07',828.283000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2649,2,2,'2019-08-21 15:10:07',828.902000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2650,2,2,'2019-08-21 15:10:07',829.263000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2651,2,2,'2019-08-21 15:10:07',829.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2652,2,2,'2019-08-21 15:10:07',830.584000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2653,2,2,'2019-08-21 15:10:07',831.367000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2654,2,2,'2019-08-21 15:10:07',831.847000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2655,2,2,'2019-08-21 15:10:07',832.315000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2656,2,2,'2019-08-21 15:10:07',833.082000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2657,2,2,'2019-08-21 15:10:07',834.030000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2658,2,2,'2019-08-21 15:10:07',834.351000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2659,2,2,'2019-08-21 15:10:07',834.946000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2660,2,2,'2019-08-21 15:10:07',835.862000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2661,2,2,'2019-08-21 15:10:07',836.827000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2662,2,2,'2019-08-21 15:10:07',837.278000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2663,2,2,'2019-08-21 15:10:07',837.644000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2664,2,2,'2019-08-21 15:10:07',837.965000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2665,2,2,'2019-08-21 15:10:07',838.459000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2666,2,2,'2019-08-21 15:10:07',839.342000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2667,2,2,'2019-08-21 15:10:07',840.141000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2668,2,2,'2019-08-21 15:10:07',841.039000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2669,2,2,'2019-08-21 15:10:07',841.387000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2670,2,2,'2019-08-21 15:10:07',841.938000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2671,2,2,'2019-08-21 15:10:07',842.754000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2672,2,2,'2019-08-21 15:10:07',843.144000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2673,2,2,'2019-08-21 15:10:07',843.620000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2674,2,2,'2019-08-21 15:10:07',844.436000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2675,2,2,'2019-08-21 15:10:07',845.385000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2676,2,2,'2019-08-21 15:10:07',845.708000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2677,2,2,'2019-08-21 15:10:07',846.251000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2678,2,2,'2019-08-21 15:10:07',847.017000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2679,2,2,'2019-08-21 15:10:07',847.915000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2680,2,2,'2019-08-21 15:10:07',848.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2681,2,2,'2019-08-21 15:10:07',849.221000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2682,2,2,'2019-08-21 15:10:07',849.780000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2683,2,2,'2019-08-21 15:10:07',850.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2684,2,2,'2019-08-21 15:10:07',851.545000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2685,2,2,'2019-08-21 15:10:07',852.460000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2686,2,2,'2019-08-21 15:10:07',852.875000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2687,2,2,'2019-08-21 15:10:07',853.476000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2688,2,2,'2019-08-21 15:10:07',854.392000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2689,2,2,'2019-08-21 15:10:07',854.824000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2690,2,2,'2019-08-21 15:10:07',855.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2691,2,2,'2019-08-21 15:10:07',856.090000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2692,2,2,'2019-08-21 15:10:07',856.989000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2693,2,2,'2019-08-21 15:10:07',857.479000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2694,2,2,'2019-08-21 15:10:07',857.838000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2695,2,2,'2019-08-21 15:10:07',858.837000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2696,2,2,'2019-08-21 15:10:07',859.836000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2697,2,2,'2019-08-21 15:10:07',860.818000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2698,2,2,'2019-08-21 15:10:07',861.174000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2699,2,2,'2019-08-21 15:10:07',861.816000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2700,2,2,'2019-08-21 15:10:07',862.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2701,2,2,'2019-08-21 15:10:07',862.683000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2702,2,2,'2019-08-21 15:10:07',863.615000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2703,2,2,'2019-08-21 15:10:07',864.530000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2704,2,2,'2019-08-21 15:10:07',865.380000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2705,2,2,'2019-08-21 15:10:07',865.687000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2706,2,2,'2019-08-21 15:10:07',866.312000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2707,2,2,'2019-08-21 15:10:07',867.161000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2708,2,2,'2019-08-21 15:10:07',867.584000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2709,2,2,'2019-08-21 15:10:07',868.010000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2710,2,2,'2019-08-21 15:10:07',868.843000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2711,2,2,'2019-08-21 15:10:07',869.250000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2712,2,2,'2019-08-21 15:10:07',869.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2713,2,2,'2019-08-21 15:10:07',870.591000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2714,2,2,'2019-08-21 15:10:07',871.557000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2715,2,2,'2019-08-21 15:10:07',872.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2716,2,2,'2019-08-21 15:10:07',872.995000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2717,2,2,'2019-08-21 15:10:07',873.338000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2718,2,2,'2019-08-21 15:10:07',874.120000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2719,2,2,'2019-08-21 15:10:07',875.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2720,2,2,'2019-08-21 15:10:07',875.337000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2721,2,2,'2019-08-21 15:10:07',875.852000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2722,2,2,'2019-08-21 15:10:07',876.817000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2723,2,2,'2019-08-21 15:10:07',877.666000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2724,2,2,'2019-08-21 15:10:07',878.648000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2725,2,2,'2019-08-21 15:10:07',879.083000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2726,2,2,'2019-08-21 15:10:07',879.497000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2727,2,2,'2019-08-21 15:10:07',880.396000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2728,2,2,'2019-08-21 15:10:07',881.346000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2729,2,2,'2019-08-21 15:10:07',881.899000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2730,2,2,'2019-08-21 15:10:07',882.261000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2731,2,2,'2019-08-21 15:10:07',883.094000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2732,2,2,'2019-08-21 15:10:07',883.859000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2733,2,2,'2019-08-21 15:10:07',884.642000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2734,2,2,'2019-08-21 15:10:07',885.019000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2735,2,2,'2019-08-21 15:10:07',885.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2736,2,2,'2019-08-21 15:10:07',886.457000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2737,2,2,'2019-08-21 15:10:07',887.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2738,2,2,'2019-08-21 15:10:07',887.693000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2739,2,2,'2019-08-21 15:10:07',888.121000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2740,2,2,'2019-08-21 15:10:07',889.021000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2741,2,2,'2019-08-21 15:10:07',889.970000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2742,2,2,'2019-08-21 15:10:07',890.769000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2743,2,2,'2019-08-21 15:10:07',891.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2744,2,2,'2019-08-21 15:10:07',891.734000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2745,2,2,'2019-08-21 15:10:07',892.115000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2746,2,2,'2019-08-21 15:10:07',892.717000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2747,2,2,'2019-08-21 15:10:07',893.615000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2748,2,2,'2019-08-21 15:10:07',894.581000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2749,2,2,'2019-08-21 15:10:07',895.464000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2750,2,2,'2019-08-21 15:10:07',896.246000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2751,2,2,'2019-08-21 15:10:07',897.128000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2752,2,2,'2019-08-21 15:10:07',897.607000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2753,2,2,'2019-08-21 15:10:07',897.928000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2754,2,2,'2019-08-21 15:10:07',898.364000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2755,2,2,'2019-08-21 15:10:07',898.927000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2756,2,2,'2019-08-21 15:10:07',899.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2757,2,2,'2019-08-21 15:10:07',899.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2758,2,2,'2019-08-21 15:10:07',900.658000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2759,2,2,'2019-08-21 15:10:07',901.640000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2760,2,2,'2019-08-21 15:10:07',902.556000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2761,2,2,'2019-08-21 15:10:07',903.404000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2762,2,2,'2019-08-21 15:10:07',903.876000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2763,2,2,'2019-08-21 15:10:07',904.254000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2764,2,2,'2019-08-21 15:10:07',905.103000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2765,2,2,'2019-08-21 15:10:07',905.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2766,2,2,'2019-08-21 15:10:07',906.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2767,2,2,'2019-08-21 15:10:07',906.784000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2768,2,2,'2019-08-21 15:10:07',907.566000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2769,2,2,'2019-08-21 15:10:07',908.549000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2770,2,2,'2019-08-21 15:10:07',908.975000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2771,2,2,'2019-08-21 15:10:07',909.415000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2772,2,2,'2019-08-21 15:10:07',910.214000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2773,2,2,'2019-08-21 15:10:07',910.681000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2774,2,2,'2019-08-21 15:10:07',910.996000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2775,2,2,'2019-08-21 15:10:07',911.879000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2776,2,2,'2019-08-21 15:10:07',912.845000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2777,2,2,'2019-08-21 15:10:07',913.234000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2778,2,2,'2019-08-21 15:10:07',913.727000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2779,2,2,'2019-08-21 15:10:07',914.492000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2780,2,2,'2019-08-21 15:10:07',915.458000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2781,2,2,'2019-08-21 15:10:07',916.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2782,2,2,'2019-08-21 15:10:07',917.189000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2783,2,2,'2019-08-21 15:10:07',918.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2784,2,2,'2019-08-21 15:10:07',918.544000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2785,2,2,'2019-08-21 15:10:07',919.071000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2786,2,2,'2019-08-21 15:10:07',919.564000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2787,2,2,'2019-08-21 15:10:07',920.020000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2788,2,2,'2019-08-21 15:10:07',920.919000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2789,2,2,'2019-08-21 15:10:07',921.818000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2790,2,2,'2019-08-21 15:10:07',922.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2791,2,2,'2019-08-21 15:10:07',922.817000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2792,2,2,'2019-08-21 15:10:07',923.666000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2793,2,2,'2019-08-21 15:10:07',924.117000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2794,2,2,'2019-08-21 15:10:07',924.665000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2795,2,2,'2019-08-21 15:10:07',925.447000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2796,2,2,'2019-08-21 15:10:07',926.207000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2797,2,2,'2019-08-21 15:10:07',926.430000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2798,2,2,'2019-08-21 15:10:07',927.295000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2799,2,2,'2019-08-21 15:10:07',928.261000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2800,2,2,'2019-08-21 15:10:07',929.260000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2801,2,2,'2019-08-21 15:10:07',930.176000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2802,2,2,'2019-08-21 15:10:07',930.548000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2803,2,2,'2019-08-21 15:10:07',947.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2804,2,2,'2019-08-21 15:10:07',968.392000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2805,2,2,'2019-08-21 15:10:07',969.257000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2806,2,2,'2019-08-21 15:10:07',969.590000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2807,2,2,'2019-08-21 15:10:07',970.188000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2808,2,2,'2019-08-21 15:10:07',971.171000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2809,2,2,'2019-08-21 15:10:07',971.508000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2810,2,2,'2019-08-21 15:10:07',972.170000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2811,2,2,'2019-08-21 15:10:07',972.969000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2812,2,2,'2019-08-21 15:10:07',973.835000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2813,2,2,'2019-08-21 15:10:07',974.133000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2814,2,2,'2019-08-21 15:10:07',974.667000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2815,2,2,'2019-08-21 15:10:07',975.001000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2816,2,2,'2019-08-21 15:10:07',975.666000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2817,2,2,'2019-08-21 15:10:07',976.482000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2818,2,2,'2019-08-21 15:10:07',977.381000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2819,2,2,'2019-08-21 15:10:07',978.380000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2820,2,2,'2019-08-21 15:10:07',979.379000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2821,2,2,'2019-08-21 15:10:07',979.695000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2822,2,2,'2019-08-21 15:10:07',980.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2823,2,2,'2019-08-21 15:10:07',981.061000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2824,2,2,'2019-08-21 15:10:07',981.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2825,2,2,'2019-08-21 15:10:07',982.775000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2826,2,2,'2019-08-21 15:10:07',983.127000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2827,2,2,'2019-08-21 15:10:07',983.624000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2828,2,2,'2019-08-21 15:10:07',984.423000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2829,2,2,'2019-08-21 15:10:07',985.289000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2830,2,2,'2019-08-21 15:10:07',986.271000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2831,2,2,'2019-08-21 15:10:07',986.792000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2832,2,2,'2019-08-21 15:10:07',987.153000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2833,2,2,'2019-08-21 15:10:07',987.498000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2834,2,2,'2019-08-21 15:10:07',988.119000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2835,2,2,'2019-08-21 15:10:07',989.085000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2836,2,2,'2019-08-21 15:10:07',990.018000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2837,2,2,'2019-08-21 15:10:07',990.899000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2838,2,2,'2019-08-21 15:10:07',991.214000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2839,2,2,'2019-08-21 15:10:07',991.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2840,2,2,'2019-08-21 15:10:07',992.697000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2841,2,2,'2019-08-21 15:10:07',993.696000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2842,2,2,'2019-08-21 15:10:07',994.629000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2843,2,2,'2019-08-21 15:10:07',995.060000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2844,2,2,'2019-08-21 15:10:07',995.478000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2845,2,2,'2019-08-21 15:10:07',996.427000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2846,2,2,'2019-08-21 15:10:07',997.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2847,2,2,'2019-08-21 15:10:07',998.291000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2848,2,2,'2019-08-21 15:10:07',999.074000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2849,2,2,'2019-08-21 15:10:07',999.491000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2850,2,2,'2019-08-21 15:10:07',999.956000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2851,2,2,'2019-08-21 15:10:07',1000.340000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2852,2,2,'2019-08-21 15:10:07',1000.839000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2853,2,2,'2019-08-21 15:10:07',1001.218000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2854,2,2,'2019-08-21 15:10:07',1001.688000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2855,2,2,'2019-08-21 15:10:07',1002.604000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2856,2,2,'2019-08-21 15:10:07',1002.994000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2857,2,2,'2019-08-21 15:10:07',1003.485000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2858,2,2,'2019-08-21 15:10:07',1004.269000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2859,2,2,'2019-08-21 15:10:07',1005.117000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2860,2,2,'2019-08-21 15:10:07',1006.083000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2861,2,2,'2019-08-21 15:10:07',1007.032000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2862,2,2,'2019-08-21 15:10:07',1007.416000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2863,2,2,'2019-08-21 15:10:07',1007.947000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2864,2,2,'2019-08-21 15:10:07',1008.863000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2865,2,2,'2019-08-21 15:10:07',1009.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2866,2,2,'2019-08-21 15:10:07',1010.243000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2867,2,2,'2019-08-21 15:10:07',1010.778000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2868,2,2,'2019-08-21 15:10:07',1011.610000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2869,2,2,'2019-08-21 15:10:07',1012.426000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2870,2,2,'2019-08-21 15:10:07',1012.958000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2871,2,2,'2019-08-21 15:10:07',1013.309000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2872,2,2,'2019-08-21 15:10:07',1014.157000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2873,2,2,'2019-08-21 15:10:07',1014.543000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2874,2,2,'2019-08-21 15:10:07',1014.940000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2875,2,2,'2019-08-21 15:10:07',1015.938000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2876,2,2,'2019-08-21 15:10:07',1016.738000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2877,2,2,'2019-08-21 15:10:07',1017.179000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2878,2,2,'2019-08-21 15:10:07',1017.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2879,2,2,'2019-08-21 15:10:07',1018.520000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2880,2,2,'2019-08-21 15:10:07',1019.519000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2881,2,2,'2019-08-21 15:10:07',1020.518000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2882,2,2,'2019-08-21 15:10:07',1021.482000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2883,2,2,'2019-08-21 15:10:07',1021.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2884,2,2,'2019-08-21 15:10:07',1022.432000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2885,2,2,'2019-08-21 15:10:07',1023.348000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2886,2,2,'2019-08-21 15:10:07',1024.213000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2887,2,2,'2019-08-21 15:10:07',1024.669000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2888,2,2,'2019-08-21 15:10:07',1024.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2889,2,2,'2019-08-21 15:10:07',1026.011000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2890,2,2,'2019-08-21 15:10:07',1026.607000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2891,2,2,'2019-08-21 15:10:07',1026.877000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2892,2,2,'2019-08-21 15:10:07',1027.859000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2893,2,2,'2019-08-21 15:10:07',1028.825000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2894,2,2,'2019-08-21 15:10:07',1029.454000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2895,2,2,'2019-08-21 15:10:07',1029.641000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2896,2,2,'2019-08-21 15:10:07',1030.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2897,2,2,'2019-08-21 15:10:07',1031.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2898,2,2,'2019-08-21 15:10:07',1031.897000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2899,2,2,'2019-08-21 15:10:07',1032.371000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2900,2,2,'2019-08-21 15:10:07',1033.236000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2901,2,2,'2019-08-21 15:10:07',1034.103000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2902,2,2,'2019-08-21 15:10:07',1035.018000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2903,2,2,'2019-08-21 15:10:07',1035.917000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2904,2,2,'2019-08-21 15:10:07',1036.329000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2905,2,2,'2019-08-21 15:10:07',1036.916000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2906,2,2,'2019-08-21 15:10:07',1037.390000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2907,2,2,'2019-08-21 15:10:07',1037.731000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2908,2,2,'2019-08-21 15:10:07',1038.714000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2909,2,2,'2019-08-21 15:10:07',1039.680000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2910,2,2,'2019-08-21 15:10:07',1040.512000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2911,2,2,'2019-08-21 15:10:07',1041.063000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2912,2,2,'2019-08-21 15:10:07',1041.461000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2913,2,2,'2019-08-21 15:10:07',1041.801000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2914,2,2,'2019-08-21 15:10:07',1042.427000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2915,2,2,'2019-08-21 15:10:07',1043.259000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2916,2,2,'2019-08-21 15:10:07',1044.158000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2917,2,2,'2019-08-21 15:10:07',1044.708000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2918,2,2,'2019-08-21 15:10:07',1045.091000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2919,2,2,'2019-08-21 15:10:07',1045.939000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2920,2,2,'2019-08-21 15:10:07',1046.855000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2921,2,2,'2019-08-21 15:10:07',1047.191000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2922,2,2,'2019-08-21 15:10:07',1047.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2923,2,2,'2019-08-21 15:10:07',1048.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2924,2,2,'2019-08-21 15:10:07',1049.752000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2925,2,2,'2019-08-21 15:10:07',1050.685000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2926,2,2,'2019-08-21 15:10:07',1051.500000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2927,2,2,'2019-08-21 15:10:07',1052.350000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2928,2,2,'2019-08-21 15:10:07',1052.835000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2929,2,2,'2019-08-21 15:10:07',1053.314000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2930,2,2,'2019-08-21 15:10:07',1053.764000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2931,2,2,'2019-08-21 15:10:07',1054.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2932,2,2,'2019-08-21 15:10:07',1055.096000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2933,2,2,'2019-08-21 15:10:07',1055.611000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2934,2,2,'2019-08-21 15:10:07',1056.012000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2935,2,2,'2019-08-21 15:10:07',1056.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2936,2,2,'2019-08-21 15:10:07',1056.861000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2937,2,2,'2019-08-21 15:10:07',1057.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2938,2,2,'2019-08-21 15:10:07',1058.692000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2939,2,2,'2019-08-21 15:10:07',1059.708000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2940,2,2,'2019-08-21 15:10:07',1060.523000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2941,2,2,'2019-08-21 15:10:07',1061.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2942,2,2,'2019-08-21 15:10:07',1062.405000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2943,2,2,'2019-08-21 15:10:07',1062.819000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2944,2,2,'2019-08-21 15:10:07',1063.387000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2945,2,2,'2019-08-21 15:10:07',1064.170000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2946,2,2,'2019-08-21 15:10:07',1064.605000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2947,2,2,'2019-08-21 15:10:07',1064.969000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2948,2,2,'2019-08-21 15:10:07',1065.918000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2949,2,2,'2019-08-21 15:10:07',1066.767000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2950,2,2,'2019-08-21 15:10:07',1067.716000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2951,2,2,'2019-08-21 15:10:07',1068.564000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2952,2,2,'2019-08-21 15:10:07',1069.027000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2953,2,2,'2019-08-21 15:10:07',1069.381000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2954,2,2,'2019-08-21 15:10:07',1070.229000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2955,2,2,'2019-08-21 15:10:07',1070.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2956,2,2,'2019-08-21 15:10:07',1071.045000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2957,2,2,'2019-08-21 15:10:07',1071.961000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2958,2,2,'2019-08-21 15:10:07',1072.827000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2959,2,2,'2019-08-21 15:10:07',1073.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2960,2,2,'2019-08-21 15:10:07',1073.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2961,2,2,'2019-08-21 15:10:07',1074.625000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2962,2,2,'2019-08-21 15:10:07',1075.474000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2963,2,2,'2019-08-21 15:10:07',1075.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2964,2,2,'2019-08-21 15:10:07',1076.290000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2965,2,2,'2019-08-21 15:10:07',1077.105000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2966,2,2,'2019-08-21 15:10:07',1077.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2967,2,2,'2019-08-21 15:10:07',1078.771000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2968,2,2,'2019-08-21 15:10:07',1079.012000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2969,2,2,'2019-08-21 15:10:07',1079.636000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2970,2,2,'2019-08-21 15:10:07',1080.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2971,2,2,'2019-08-21 15:10:07',1080.890000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2972,2,2,'2019-08-21 15:10:07',1081.484000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2973,2,2,'2019-08-21 15:10:07',1081.839000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2974,2,2,'2019-08-21 15:10:07',1082.350000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2975,2,2,'2019-08-21 15:10:07',1082.696000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2976,2,2,'2019-08-21 15:10:07',1083.266000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2977,2,2,'2019-08-21 15:10:07',1084.181000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2978,2,2,'2019-08-21 15:10:07',1085.014000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2979,2,2,'2019-08-21 15:10:07',1085.812000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2980,2,2,'2019-08-21 15:10:07',1086.762000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2981,2,2,'2019-08-21 15:10:07',1087.179000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2982,2,2,'2019-08-21 15:10:07',1087.544000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2983,2,2,'2019-08-21 15:10:07',1088.443000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2984,2,2,'2019-08-21 15:10:07',1088.875000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2985,2,2,'2019-08-21 15:10:07',1089.408000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2986,2,2,'2019-08-21 15:10:07',1090.407000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2987,2,2,'2019-08-21 15:10:07',1091.390000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2988,2,2,'2019-08-21 15:10:07',1092.172000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2989,2,2,'2019-08-21 15:10:07',1093.154000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2990,2,2,'2019-08-21 15:10:07',1093.519000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2991,2,2,'2019-08-21 15:10:07',1094.137000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2992,2,2,'2019-08-21 15:10:07',1094.936000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2993,2,2,'2019-08-21 15:10:07',1095.868000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2994,2,2,'2019-08-21 15:10:07',1096.684000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2995,2,2,'2019-08-21 15:10:07',1097.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2996,2,2,'2019-08-21 15:10:07',1097.666000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2997,2,2,'2019-08-21 15:10:07',1098.599000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2998,2,2,'2019-08-21 15:10:07',1099.030000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (2999,2,2,'2019-08-21 15:10:07',1099.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3000,2,2,'2019-08-21 15:10:07',1099.849000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3001,2,2,'2019-08-21 15:10:07',1100.463000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3002,2,2,'2019-08-21 15:10:07',1101.296000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3003,2,2,'2019-08-21 15:10:07',1102.262000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3004,2,2,'2019-08-21 15:10:07',1103.193000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3005,2,2,'2019-08-21 15:10:07',1103.492000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3006,2,2,'2019-08-21 15:10:07',1103.959000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3007,2,2,'2019-08-21 15:10:07',1104.858000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3008,2,2,'2019-08-21 15:10:07',1105.168000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3009,2,2,'2019-08-21 15:10:07',1105.791000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3010,2,2,'2019-08-21 15:10:07',1106.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3011,2,2,'2019-08-21 15:10:07',1107.489000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3012,2,2,'2019-08-21 15:10:07',1108.404000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3013,2,2,'2019-08-21 15:10:07',1109.237000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3014,2,2,'2019-08-21 15:10:07',1110.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3015,2,2,'2019-08-21 15:10:07',1110.448000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3016,2,2,'2019-08-21 15:10:07',1110.852000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3017,2,2,'2019-08-21 15:10:07',1111.618000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3018,2,2,'2019-08-21 15:10:07',1112.124000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3019,2,2,'2019-08-21 15:10:07',1112.500000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3020,2,2,'2019-08-21 15:10:07',1113.266000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3021,2,2,'2019-08-21 15:10:07',1113.810000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3022,2,2,'2019-08-21 15:10:07',1114.049000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3023,2,2,'2019-08-21 15:10:07',1114.486000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3024,2,2,'2019-08-21 15:10:07',1114.864000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3025,2,2,'2019-08-21 15:10:07',1115.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3026,2,2,'2019-08-21 15:10:07',1116.546000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3027,2,2,'2019-08-21 15:10:07',1117.361000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3028,2,2,'2019-08-21 15:10:07',1118.177000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3029,2,2,'2019-08-21 15:10:07',1118.515000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3030,2,2,'2019-08-21 15:10:07',1119.043000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3031,2,2,'2019-08-21 15:10:07',1119.825000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3032,2,2,'2019-08-21 15:10:07',1120.691000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3033,2,2,'2019-08-21 15:10:07',1121.623000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3034,2,2,'2019-08-21 15:10:07',1121.957000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3035,2,2,'2019-08-21 15:10:07',1122.605000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3036,2,2,'2019-08-21 15:10:07',1123.389000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3037,2,2,'2019-08-21 15:10:07',1124.304000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3038,2,2,'2019-08-21 15:10:07',1125.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3039,2,2,'2019-08-21 15:10:07',1125.591000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3040,2,2,'2019-08-21 15:10:07',1126.186000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3041,2,2,'2019-08-21 15:10:07',1126.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3042,2,2,'2019-08-21 15:10:07',1127.276000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3043,2,2,'2019-08-21 15:10:07',1127.767000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3044,2,2,'2019-08-21 15:10:07',1128.600000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3045,2,2,'2019-08-21 15:10:07',1129.564000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3046,2,2,'2019-08-21 15:10:07',1129.962000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3047,2,2,'2019-08-21 15:10:07',1130.464000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3048,2,2,'2019-08-21 15:10:07',1131.413000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3049,2,2,'2019-08-21 15:10:07',1132.429000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3050,2,2,'2019-08-21 15:10:07',1133.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3051,2,2,'2019-08-21 15:10:07',1133.646000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3052,2,2,'2019-08-21 15:10:07',1134.227000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3053,2,2,'2019-08-21 15:10:07',1135.142000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3054,2,2,'2019-08-21 15:10:07',1136.024000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3055,2,2,'2019-08-21 15:10:07',1136.423000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3056,2,2,'2019-08-21 15:10:07',1136.907000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3057,2,2,'2019-08-21 15:10:07',1137.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3058,2,2,'2019-08-21 15:10:07',1138.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3059,2,2,'2019-08-21 15:10:07',1139.058000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3060,2,2,'2019-08-21 15:10:07',1139.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3061,2,2,'2019-08-21 15:10:07',1140.603000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3062,2,2,'2019-08-21 15:10:07',1141.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3063,2,2,'2019-08-21 15:10:07',1142.384000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3064,2,2,'2019-08-21 15:10:07',1142.975000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3065,2,2,'2019-08-21 15:10:07',1143.200000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3066,2,2,'2019-08-21 15:10:07',1143.611000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3067,2,2,'2019-08-21 15:10:07',1144.082000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3068,2,2,'2019-08-21 15:10:07',1145.065000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3069,2,2,'2019-08-21 15:10:07',1145.830000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3070,2,2,'2019-08-21 15:10:07',1146.267000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3071,2,2,'2019-08-21 15:10:07',1146.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3072,2,2,'2019-08-21 15:10:07',1147.104000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3073,2,2,'2019-08-21 15:10:07',1147.679000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3074,2,2,'2019-08-21 15:10:07',1148.627000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3075,2,2,'2019-08-21 15:10:07',1149.394000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3076,2,2,'2019-08-21 15:10:07',1150.358000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3077,2,2,'2019-08-21 15:10:07',1150.839000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3078,2,2,'2019-08-21 15:10:07',1151.341000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3079,2,2,'2019-08-21 15:10:07',1152.174000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3080,2,2,'2019-08-21 15:10:07',1152.565000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3081,2,2,'2019-08-21 15:10:07',1153.039000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3082,2,2,'2019-08-21 15:10:07',1153.854000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3083,2,2,'2019-08-21 15:10:07',1154.854000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3084,2,2,'2019-08-21 15:10:07',1155.703000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3085,2,2,'2019-08-21 15:10:07',1156.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3086,2,2,'2019-08-21 15:10:07',1156.618000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3087,2,2,'2019-08-21 15:10:07',1156.906000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3088,2,2,'2019-08-21 15:10:07',1157.501000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3089,2,2,'2019-08-21 15:10:07',1158.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3090,2,2,'2019-08-21 15:10:07',1159.166000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3091,2,2,'2019-08-21 15:10:07',1159.965000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3092,2,2,'2019-08-21 15:10:07',1160.730000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3093,2,2,'2019-08-21 15:10:07',1161.547000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3094,2,2,'2019-08-21 15:10:07',1161.984000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3095,2,2,'2019-08-21 15:10:07',1162.362000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3096,2,2,'2019-08-21 15:10:07',1163.178000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3097,2,2,'2019-08-21 15:10:07',1164.077000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3098,2,2,'2019-08-21 15:10:07',1164.960000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3099,2,2,'2019-08-21 15:10:07',1165.336000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3100,2,2,'2019-08-21 15:10:07',1165.858000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3101,2,2,'2019-08-21 15:10:07',1166.215000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3102,2,2,'2019-08-21 15:10:07',1166.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3103,2,2,'2019-08-21 15:10:07',1167.474000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3104,2,2,'2019-08-21 15:10:07',1167.900000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3105,2,2,'2019-08-21 15:10:07',1168.355000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3106,2,2,'2019-08-21 15:10:07',1169.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3107,2,2,'2019-08-21 15:10:07',1170.021000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3108,2,2,'2019-08-21 15:10:07',1170.803000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3109,2,2,'2019-08-21 15:10:07',1171.669000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3110,2,2,'2019-08-21 15:10:07',1172.451000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3111,2,2,'2019-08-21 15:10:07',1173.417000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3112,2,2,'2019-08-21 15:10:07',1173.947000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3113,2,2,'2019-08-21 15:10:07',1174.366000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3114,2,2,'2019-08-21 15:10:07',1175.198000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3115,2,2,'2019-08-21 15:10:07',1175.896000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3116,2,2,'2019-08-21 15:10:07',1176.131000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3117,2,2,'2019-08-21 15:10:07',1176.963000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3118,2,2,'2019-08-21 15:10:07',1177.410000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3119,2,2,'2019-08-21 15:10:07',1177.796000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3120,2,2,'2019-08-21 15:10:07',1178.744000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3121,2,2,'2019-08-21 15:10:07',1179.710000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3122,2,2,'2019-08-21 15:10:07',1180.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3123,2,2,'2019-08-21 15:10:07',1180.560000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3124,2,2,'2019-08-21 15:10:07',1181.574000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3125,2,2,'2019-08-21 15:10:07',1181.934000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3126,2,2,'2019-08-21 15:10:07',1182.573000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3127,2,2,'2019-08-21 15:10:07',1183.406000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3128,2,2,'2019-08-21 15:10:07',1184.372000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3129,2,2,'2019-08-21 15:10:07',1184.710000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3130,2,2,'2019-08-21 15:10:07',1185.171000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3131,2,2,'2019-08-21 15:10:07',1186.053000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3132,2,2,'2019-08-21 15:10:07',1186.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3133,2,2,'2019-08-21 15:10:07',1187.701000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3134,2,2,'2019-08-21 15:10:07',1188.700000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3135,2,2,'2019-08-21 15:10:07',1189.202000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3136,2,2,'2019-08-21 15:10:07',1189.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3137,2,2,'2019-08-21 15:10:07',1190.564000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3138,2,2,'2019-08-21 15:10:07',1191.447000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3139,2,2,'2019-08-21 15:10:07',1191.786000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3140,2,2,'2019-08-21 15:10:07',1192.347000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3141,2,2,'2019-08-21 15:10:07',1193.146000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3142,2,2,'2019-08-21 15:10:07',1194.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3143,2,2,'2019-08-21 15:10:07',1194.844000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3144,2,2,'2019-08-21 15:10:07',1195.209000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3145,2,2,'2019-08-21 15:10:07',1195.609000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3146,2,2,'2019-08-21 15:10:07',1196.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3147,2,2,'2019-08-21 15:10:07',1196.813000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3148,2,2,'2019-08-21 15:10:07',1197.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3149,2,2,'2019-08-21 15:10:07',1198.323000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3150,2,2,'2019-08-21 15:10:07',1199.188000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3151,2,2,'2019-08-21 15:10:07',1199.449000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3152,2,2,'2019-08-21 15:10:07',1200.071000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3153,2,2,'2019-08-21 15:10:07',1200.438000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3154,2,2,'2019-08-21 15:10:07',1201.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3155,2,2,'2019-08-21 15:10:07',1201.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3156,2,2,'2019-08-21 15:10:07',1202.785000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3157,2,2,'2019-08-21 15:10:07',1203.733000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3158,2,2,'2019-08-21 15:10:07',1204.699000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3159,2,2,'2019-08-21 15:10:07',1205.632000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3160,2,2,'2019-08-21 15:10:07',1206.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3161,2,2,'2019-08-21 15:10:07',1206.548000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3162,2,2,'2019-08-21 15:10:07',1206.919000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3163,2,2,'2019-08-21 15:10:07',1207.330000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3164,2,2,'2019-08-21 15:10:07',1208.195000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3165,2,2,'2019-08-21 15:10:07',1209.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3166,2,2,'2019-08-21 15:10:07',1209.604000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3167,2,2,'2019-08-21 15:10:07',1210.094000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3168,2,2,'2019-08-21 15:10:07',1210.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3169,2,2,'2019-08-21 15:10:07',1211.792000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3170,2,2,'2019-08-21 15:10:07',1212.774000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3171,2,2,'2019-08-21 15:10:07',1213.128000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3172,2,2,'2019-08-21 15:10:07',1213.739000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3173,2,2,'2019-08-21 15:10:07',1214.057000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3174,2,2,'2019-08-21 15:10:07',1214.556000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3175,2,2,'2019-08-21 15:10:07',1215.555000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3176,2,2,'2019-08-21 15:10:07',1216.006000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3177,2,2,'2019-08-21 15:10:07',1216.470000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3178,2,2,'2019-08-21 15:10:07',1217.369000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3179,2,2,'2019-08-21 15:10:07',1218.352000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3180,2,2,'2019-08-21 15:10:07',1219.316000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3181,2,2,'2019-08-21 15:10:07',1219.630000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3182,2,2,'2019-08-21 15:10:07',1220.199000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3183,2,2,'2019-08-21 15:10:07',1221.148000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3184,2,2,'2019-08-21 15:10:07',1221.527000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3185,2,2,'2019-08-21 15:10:07',1222.147000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3186,2,2,'2019-08-21 15:10:07',1222.577000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3187,2,2,'2019-08-21 15:10:07',1223.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3188,2,2,'2019-08-21 15:10:07',1224.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3189,2,2,'2019-08-21 15:10:07',1224.827000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3190,2,2,'2019-08-21 15:10:07',1225.242000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3191,2,2,'2019-08-21 15:10:07',1225.793000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3192,2,2,'2019-08-21 15:10:07',1226.726000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3193,2,2,'2019-08-21 15:10:07',1227.110000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3194,2,2,'2019-08-21 15:10:07',1227.725000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3195,2,2,'2019-08-21 15:10:07',1228.640000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3196,2,2,'2019-08-21 15:10:07',1229.506000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3197,2,2,'2019-08-21 15:10:07',1230.371000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3198,2,2,'2019-08-21 15:10:07',1230.795000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3199,2,2,'2019-08-21 15:10:07',1231.337000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3200,2,2,'2019-08-21 15:10:07',1232.220000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3201,2,2,'2019-08-21 15:10:07',1233.168000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3202,2,2,'2019-08-21 15:10:07',1234.101000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3203,2,2,'2019-08-21 15:10:07',1235.083000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3204,2,2,'2019-08-21 15:10:07',1235.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3205,3,3,'2019-08-21 15:10:14',31.931000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3206,3,3,'2019-08-21 15:10:14',32.829000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3207,3,3,'2019-08-21 15:10:14',33.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3208,3,3,'2019-08-21 15:10:14',33.978000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3209,3,3,'2019-08-21 15:10:14',34.827000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3210,3,3,'2019-08-21 15:10:14',35.843000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3211,3,3,'2019-08-21 15:10:14',36.708000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3212,3,3,'2019-08-21 15:10:14',37.030000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3213,3,3,'2019-08-21 15:10:14',37.707000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3214,3,3,'2019-08-21 15:10:14',38.169000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3215,3,3,'2019-08-21 15:10:14',38.623000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3216,3,3,'2019-08-21 15:10:14',39.588000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3217,3,3,'2019-08-21 15:10:14',39.872000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3218,3,3,'2019-08-21 15:10:14',40.554000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3219,3,3,'2019-08-21 15:10:14',41.520000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3220,3,3,'2019-08-21 15:10:14',42.386000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3221,3,3,'2019-08-21 15:10:14',43.251000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3222,3,3,'2019-08-21 15:10:14',44.033000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3223,3,3,'2019-08-21 15:10:14',44.966000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3224,3,3,'2019-08-21 15:10:14',45.304000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3225,3,3,'2019-08-21 15:10:14',45.831000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3226,3,3,'2019-08-21 15:10:14',46.730000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3227,3,3,'2019-08-21 15:10:14',47.529000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3228,3,3,'2019-08-21 15:10:14',47.914000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3229,3,3,'2019-08-21 15:10:14',48.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3230,3,3,'2019-08-21 15:10:14',49.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3231,3,3,'2019-08-21 15:10:14',50.210000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3232,3,3,'2019-08-21 15:10:14',51.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3233,3,3,'2019-08-21 15:10:14',51.431000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3234,3,3,'2019-08-21 15:10:14',51.892000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3235,3,3,'2019-08-21 15:10:14',52.657000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3236,3,3,'2019-08-21 15:10:14',52.993000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3237,3,3,'2019-08-21 15:10:14',53.606000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3238,3,3,'2019-08-21 15:10:14',54.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3239,3,3,'2019-08-21 15:10:14',55.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3240,3,3,'2019-08-21 15:10:14',55.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3241,3,3,'2019-08-21 15:10:14',56.437000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3242,3,3,'2019-08-21 15:10:14',57.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3243,3,3,'2019-08-21 15:10:14',58.168000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3244,3,3,'2019-08-21 15:10:14',58.444000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3245,3,3,'2019-08-21 15:10:14',59.167000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3246,3,3,'2019-08-21 15:10:14',60.183000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3247,3,3,'2019-08-21 15:10:14',60.521000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3248,3,3,'2019-08-21 15:10:14',61.115000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3249,3,3,'2019-08-21 15:10:14',61.964000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3250,3,3,'2019-08-21 15:10:14',62.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3251,3,3,'2019-08-21 15:10:14',63.862000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3252,3,3,'2019-08-21 15:10:14',64.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3253,3,3,'2019-08-21 15:10:14',64.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3254,3,3,'2019-08-21 15:10:14',65.594000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3255,3,3,'2019-08-21 15:10:14',66.376000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3256,3,3,'2019-08-21 15:10:14',66.698000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3257,3,3,'2019-08-21 15:10:14',67.258000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3258,3,3,'2019-08-21 15:10:14',68.091000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3259,3,3,'2019-08-21 15:10:14',69.006000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3260,3,3,'2019-08-21 15:10:14',69.308000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3261,3,3,'2019-08-21 15:10:14',69.955000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3262,3,3,'2019-08-21 15:10:14',70.346000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3263,3,3,'2019-08-21 15:10:14',70.938000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3264,3,3,'2019-08-21 15:10:14',71.903000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3265,3,3,'2019-08-21 15:10:14',72.835000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3266,3,3,'2019-08-21 15:10:14',73.918000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3267,3,3,'2019-08-21 15:10:14',74.883000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3268,3,3,'2019-08-21 15:10:14',75.163000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3269,3,3,'2019-08-21 15:10:14',75.815000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3270,3,3,'2019-08-21 15:10:14',76.698000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3271,3,3,'2019-08-21 15:10:14',77.048000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3272,3,3,'2019-08-21 15:10:14',77.713000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3273,3,3,'2019-08-21 15:10:14',78.065000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3274,3,3,'2019-08-21 15:10:14',78.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3275,3,3,'2019-08-21 15:10:14',79.361000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3276,3,3,'2019-08-21 15:10:14',80.127000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3277,3,3,'2019-08-21 15:10:14',81.143000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3278,3,3,'2019-08-21 15:10:14',82.108000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3279,3,3,'2019-08-21 15:10:14',83.074000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3280,3,3,'2019-08-21 15:10:14',83.376000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3281,3,3,'2019-08-21 15:10:14',83.923000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3282,3,3,'2019-08-21 15:10:14',84.756000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3283,3,3,'2019-08-21 15:10:14',85.722000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3284,3,3,'2019-08-21 15:10:14',85.996000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3285,3,3,'2019-08-21 15:10:14',86.537000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3286,3,3,'2019-08-21 15:10:14',86.963000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3287,3,3,'2019-08-21 15:10:14',87.437000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3288,3,3,'2019-08-21 15:10:14',88.418000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3289,3,3,'2019-08-21 15:10:14',89.284000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3290,3,3,'2019-08-21 15:10:14',89.604000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3291,3,3,'2019-08-21 15:10:14',90.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3292,3,3,'2019-08-21 15:10:14',91.082000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3293,3,3,'2019-08-21 15:10:14',91.897000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3294,3,3,'2019-08-21 15:10:14',92.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3295,3,3,'2019-08-21 15:10:14',93.596000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3296,3,3,'2019-08-21 15:10:14',94.362000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3297,3,3,'2019-08-21 15:10:14',95.128000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3298,3,3,'2019-08-21 15:10:14',95.448000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3299,3,3,'2019-08-21 15:10:14',95.943000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3300,3,3,'2019-08-21 15:10:14',96.255000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3301,3,3,'2019-08-21 15:10:14',96.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3302,3,3,'2019-08-21 15:10:14',97.559000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3303,3,3,'2019-08-21 15:10:14',97.887000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3304,3,3,'2019-08-21 15:10:14',98.524000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3305,3,3,'2019-08-21 15:10:14',99.522000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3306,3,3,'2019-08-21 15:10:14',100.355000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3307,3,3,'2019-08-21 15:10:14',100.698000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3308,3,3,'2019-08-21 15:10:14',101.321000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3309,3,3,'2019-08-21 15:10:14',102.270000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3310,3,3,'2019-08-21 15:10:14',102.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3311,3,3,'2019-08-21 15:10:14',103.186000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3312,3,3,'2019-08-21 15:10:14',103.984000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3313,3,3,'2019-08-21 15:10:14',104.934000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3314,3,3,'2019-08-21 15:10:14',105.916000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3315,3,3,'2019-08-21 15:10:14',106.748000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3316,3,3,'2019-08-21 15:10:14',107.027000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3317,3,3,'2019-08-21 15:10:14',107.681000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3318,3,3,'2019-08-21 15:10:14',108.065000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3319,3,3,'2019-08-21 15:10:14',108.630000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3320,3,3,'2019-08-21 15:10:14',109.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3321,3,3,'2019-08-21 15:10:14',110.161000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3322,3,3,'2019-08-21 15:10:14',110.434000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3323,3,3,'2019-08-21 15:10:14',110.978000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3324,3,3,'2019-08-21 15:10:14',111.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3325,3,3,'2019-08-21 15:10:14',112.908000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3326,3,3,'2019-08-21 15:10:14',113.791000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3327,3,3,'2019-08-21 15:10:14',114.673000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3328,3,3,'2019-08-21 15:10:14',115.622000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3329,3,3,'2019-08-21 15:10:14',115.925000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3330,3,3,'2019-08-21 15:10:14',116.487000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3331,3,3,'2019-08-21 15:10:14',116.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3332,3,3,'2019-08-21 15:10:14',117.254000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3333,3,3,'2019-08-21 15:10:14',118.219000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3334,3,3,'2019-08-21 15:10:14',118.545000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3335,3,3,'2019-08-21 15:10:14',119.102000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3336,3,3,'2019-08-21 15:10:14',119.867000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3337,3,3,'2019-08-21 15:10:14',120.767000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3338,3,3,'2019-08-21 15:10:14',121.749000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3339,3,3,'2019-08-21 15:10:14',122.714000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3340,3,3,'2019-08-21 15:10:14',123.029000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3341,3,3,'2019-08-21 15:10:14',123.680000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3342,3,3,'2019-08-21 15:10:14',123.987000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3343,3,3,'2019-08-21 15:10:14',124.445000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3344,3,3,'2019-08-21 15:10:14',125.295000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3345,3,3,'2019-08-21 15:10:14',126.094000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3346,3,3,'2019-08-21 15:10:14',126.893000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3347,3,3,'2019-08-21 15:10:14',127.191000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3348,3,3,'2019-08-21 15:10:14',127.659000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3349,3,3,'2019-08-21 15:10:14',128.524000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3350,3,3,'2019-08-21 15:10:14',128.773000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3351,3,3,'2019-08-21 15:10:14',129.357000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3352,3,3,'2019-08-21 15:10:14',129.690000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3353,3,3,'2019-08-21 15:10:14',130.272000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3354,3,3,'2019-08-21 15:10:14',131.105000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3355,3,3,'2019-08-21 15:10:14',132.070000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3356,3,3,'2019-08-21 15:10:14',132.887000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3357,3,3,'2019-08-21 15:10:14',133.802000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3358,3,3,'2019-08-21 15:10:14',134.618000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3359,3,3,'2019-08-21 15:10:14',135.634000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3360,3,3,'2019-08-21 15:10:14',135.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3361,3,3,'2019-08-21 15:10:14',136.582000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3362,3,3,'2019-08-21 15:10:14',137.365000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3363,3,3,'2019-08-21 15:10:14',138.147000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3364,3,3,'2019-08-21 15:10:14',138.458000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3365,3,3,'2019-08-21 15:10:14',139.213000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3366,3,3,'2019-08-21 15:10:14',140.112000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3367,3,3,'2019-08-21 15:10:14',140.978000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3368,3,3,'2019-08-21 15:10:14',141.250000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3369,3,3,'2019-08-21 15:10:14',141.860000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3370,3,3,'2019-08-21 15:10:14',142.167000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3371,3,3,'2019-08-21 15:10:14',142.759000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3372,3,3,'2019-08-21 15:10:14',143.642000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3373,3,3,'2019-08-21 15:10:14',144.591000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3374,3,3,'2019-08-21 15:10:14',145.539000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3375,3,3,'2019-08-21 15:10:14',146.538000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3376,3,3,'2019-08-21 15:10:14',147.388000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3377,3,3,'2019-08-21 15:10:14',147.699000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3378,3,3,'2019-08-21 15:10:14',148.270000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3379,3,3,'2019-08-21 15:10:14',148.596000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3380,3,3,'2019-08-21 15:10:14',149.068000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3381,3,3,'2019-08-21 15:10:14',149.901000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3382,3,3,'2019-08-21 15:10:14',150.684000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3383,3,3,'2019-08-21 15:10:14',151.499000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3384,3,3,'2019-08-21 15:10:14',151.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3385,3,3,'2019-08-21 15:10:14',152.365000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3386,3,3,'2019-08-21 15:10:14',152.677000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3387,3,3,'2019-08-21 15:10:14',153.298000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3388,3,3,'2019-08-21 15:10:14',154.180000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3389,3,3,'2019-08-21 15:10:14',155.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3390,3,3,'2019-08-21 15:10:14',155.458000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3391,3,3,'2019-08-21 15:10:14',155.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3392,3,3,'2019-08-21 15:10:14',156.894000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3393,3,3,'2019-08-21 15:10:14',157.826000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3394,3,3,'2019-08-21 15:10:14',158.642000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3395,3,3,'2019-08-21 15:10:14',158.935000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3396,3,3,'2019-08-21 15:10:14',159.407000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3397,3,3,'2019-08-21 15:10:14',160.257000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3398,3,3,'2019-08-21 15:10:14',161.089000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3399,3,3,'2019-08-21 15:10:14',162.055000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3400,3,3,'2019-08-21 15:10:14',162.987000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3401,3,3,'2019-08-21 15:10:14',163.349000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3402,3,3,'2019-08-21 15:10:14',163.969000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3403,3,3,'2019-08-21 15:10:14',164.306000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3404,3,3,'2019-08-21 15:10:14',164.769000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3405,3,3,'2019-08-21 15:10:14',165.667000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3406,3,3,'2019-08-21 15:10:14',166.500000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3407,3,3,'2019-08-21 15:10:14',166.846000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3408,3,3,'2019-08-21 15:10:14',167.266000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3409,3,3,'2019-08-21 15:10:14',168.148000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3410,3,3,'2019-08-21 15:10:14',169.130000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3411,3,3,'2019-08-21 15:10:14',169.405000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3412,3,3,'2019-08-21 15:10:14',170.029000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3413,3,3,'2019-08-21 15:10:14',170.845000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3414,3,3,'2019-08-21 15:10:14',171.711000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3415,3,3,'2019-08-21 15:10:14',172.493000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3416,3,3,'2019-08-21 15:10:14',172.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3417,3,3,'2019-08-21 15:10:14',173.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3418,3,3,'2019-08-21 15:10:14',173.718000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3419,3,3,'2019-08-21 15:10:14',174.258000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3420,3,3,'2019-08-21 15:10:14',175.091000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3421,3,3,'2019-08-21 15:10:14',175.989000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3422,3,3,'2019-08-21 15:10:14',176.806000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3423,3,3,'2019-08-21 15:10:14',177.571000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3424,3,3,'2019-08-21 15:10:14',177.850000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3425,3,3,'2019-08-21 15:10:14',178.370000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3426,3,3,'2019-08-21 15:10:14',179.186000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3427,3,3,'2019-08-21 15:10:14',179.452000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3428,3,3,'2019-08-21 15:10:14',179.969000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3429,3,3,'2019-08-21 15:10:14',180.900000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3430,3,3,'2019-08-21 15:10:14',181.276000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3431,3,3,'2019-08-21 15:10:14',181.899000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3432,3,3,'2019-08-21 15:10:14',182.203000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3433,3,3,'2019-08-21 15:10:14',182.832000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3434,3,3,'2019-08-21 15:10:14',183.814000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3435,3,3,'2019-08-21 15:10:14',184.663000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3436,3,3,'2019-08-21 15:10:14',185.429000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3437,3,3,'2019-08-21 15:10:14',186.278000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3438,3,3,'2019-08-21 15:10:14',187.160000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3439,3,3,'2019-08-21 15:10:14',187.993000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3440,3,3,'2019-08-21 15:10:14',188.792000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3441,3,3,'2019-08-21 15:10:14',189.126000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3442,3,3,'2019-08-21 15:10:14',189.774000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3443,3,3,'2019-08-21 15:10:14',190.043000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3444,3,3,'2019-08-21 15:10:14',190.590000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3445,3,3,'2019-08-21 15:10:14',191.439000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3446,3,3,'2019-08-21 15:10:14',192.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3447,3,3,'2019-08-21 15:10:14',193.254000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3448,3,3,'2019-08-21 15:10:14',194.236000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3449,3,3,'2019-08-21 15:10:14',195.085000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3450,3,3,'2019-08-21 15:10:14',195.444000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3451,3,3,'2019-08-21 15:10:14',195.851000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3452,3,3,'2019-08-21 15:10:14',196.160000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3453,3,3,'2019-08-21 15:10:14',196.783000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3454,3,3,'2019-08-21 15:10:14',197.732000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3455,3,3,'2019-08-21 15:10:14',198.581000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3456,3,3,'2019-08-21 15:10:14',199.530000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3457,3,3,'2019-08-21 15:10:14',200.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3458,3,3,'2019-08-21 15:10:14',200.725000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3459,3,3,'2019-08-21 15:10:14',201.262000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3460,3,3,'2019-08-21 15:10:14',201.552000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3461,3,3,'2019-08-21 15:10:14',202.244000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3462,3,3,'2019-08-21 15:10:14',203.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3463,3,3,'2019-08-21 15:10:14',203.496000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3464,3,3,'2019-08-21 15:10:14',203.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3465,3,3,'2019-08-21 15:10:14',204.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3466,3,3,'2019-08-21 15:10:14',205.229000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3467,3,3,'2019-08-21 15:10:14',205.990000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3468,3,3,'2019-08-21 15:10:14',206.938000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3469,3,3,'2019-08-21 15:10:14',207.755000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3470,3,3,'2019-08-21 15:10:14',208.062000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3471,3,3,'2019-08-21 15:10:14',208.670000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3472,3,3,'2019-08-21 15:10:14',208.958000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3473,3,3,'2019-08-21 15:10:14',209.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3474,3,3,'2019-08-21 15:10:14',210.502000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3475,3,3,'2019-08-21 15:10:14',211.351000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3476,3,3,'2019-08-21 15:10:14',212.167000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3477,3,3,'2019-08-21 15:10:14',213.165000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3478,3,3,'2019-08-21 15:10:14',213.433000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3479,3,3,'2019-08-21 15:10:14',213.948000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3480,3,3,'2019-08-21 15:10:14',214.730000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3481,3,3,'2019-08-21 15:10:14',215.630000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3482,3,3,'2019-08-21 15:10:14',216.445000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3483,3,3,'2019-08-21 15:10:14',216.737000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3484,3,3,'2019-08-21 15:10:14',217.444000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3485,3,3,'2019-08-21 15:10:14',218.443000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3486,3,3,'2019-08-21 15:10:14',219.259000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3487,3,3,'2019-08-21 15:10:14',220.258000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3488,3,3,'2019-08-21 15:10:14',221.073000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3489,3,3,'2019-08-21 15:10:14',221.363000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3490,3,3,'2019-08-21 15:10:14',221.989000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3491,3,3,'2019-08-21 15:10:14',222.341000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3492,3,3,'2019-08-21 15:10:14',222.922000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3493,3,3,'2019-08-21 15:10:14',223.837000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3494,3,3,'2019-08-21 15:10:14',224.603000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3495,3,3,'2019-08-21 15:10:14',225.419000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3496,3,3,'2019-08-21 15:10:14',226.385000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3497,3,3,'2019-08-21 15:10:14',226.684000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3498,3,3,'2019-08-21 15:10:14',227.167000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3499,3,3,'2019-08-21 15:10:14',227.500000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3500,3,3,'2019-08-21 15:10:14',228.032000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3501,3,3,'2019-08-21 15:10:14',228.932000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3502,3,3,'2019-08-21 15:10:14',229.254000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3503,3,3,'2019-08-21 15:10:14',229.848000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3504,3,3,'2019-08-21 15:10:14',230.729000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3505,3,3,'2019-08-21 15:10:14',231.712000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3506,3,3,'2019-08-21 15:10:14',231.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3507,3,3,'2019-08-21 15:10:14',232.711000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3508,3,3,'2019-08-21 15:10:14',233.576000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3509,3,3,'2019-08-21 15:10:14',234.459000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3510,3,3,'2019-08-21 15:10:14',234.745000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3511,3,3,'2019-08-21 15:10:14',235.258000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3512,3,3,'2019-08-21 15:10:14',235.572000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3513,3,3,'2019-08-21 15:10:14',236.023000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3514,3,3,'2019-08-21 15:10:14',236.840000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3515,3,3,'2019-08-21 15:10:14',237.672000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3516,3,3,'2019-08-21 15:10:14',238.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3517,3,3,'2019-08-21 15:10:14',239.204000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3518,3,3,'2019-08-21 15:10:14',239.542000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3519,3,3,'2019-08-21 15:10:14',240.003000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3520,3,3,'2019-08-21 15:10:14',240.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3521,3,3,'2019-08-21 15:10:14',241.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3522,3,3,'2019-08-21 15:10:14',241.734000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3523,3,3,'2019-08-21 15:10:14',242.583000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3524,3,3,'2019-08-21 15:10:14',243.416000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3525,3,3,'2019-08-21 15:10:14',244.215000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3526,3,3,'2019-08-21 15:10:14',245.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3527,3,3,'2019-08-21 15:10:14',245.996000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3528,3,3,'2019-08-21 15:10:14',246.314000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3529,3,3,'2019-08-21 15:10:14',246.812000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3530,3,3,'2019-08-21 15:10:14',247.645000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3531,3,3,'2019-08-21 15:10:14',248.510000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3532,3,3,'2019-08-21 15:10:14',248.765000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3533,3,3,'2019-08-21 15:10:14',249.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3534,3,3,'2019-08-21 15:10:14',250.225000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3535,3,3,'2019-08-21 15:10:14',251.107000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3536,3,3,'2019-08-21 15:10:14',252.073000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3537,3,3,'2019-08-21 15:10:14',252.330000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3538,3,3,'2019-08-21 15:10:14',253.022000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3539,3,3,'2019-08-21 15:10:14',253.378000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3540,3,3,'2019-08-21 15:10:14',253.938000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3541,3,3,'2019-08-21 15:10:14',254.720000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3542,3,3,'2019-08-21 15:10:14',255.569000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3543,3,3,'2019-08-21 15:10:14',255.877000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3544,3,3,'2019-08-21 15:10:14',256.368000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3545,3,3,'2019-08-21 15:10:14',256.714000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3546,3,3,'2019-08-21 15:10:14',257.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3547,3,3,'2019-08-21 15:10:14',258.350000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3548,3,3,'2019-08-21 15:10:14',259.299000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3549,3,3,'2019-08-21 15:10:14',260.064000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3550,3,3,'2019-08-21 15:10:14',260.896000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3551,3,3,'2019-08-21 15:10:14',261.158000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3552,3,3,'2019-08-21 15:10:14',261.812000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3553,3,3,'2019-08-21 15:10:14',262.729000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3554,3,3,'2019-08-21 15:10:14',263.644000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3555,3,3,'2019-08-21 15:10:14',263.898000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3556,3,3,'2019-08-21 15:10:14',264.409000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3557,3,3,'2019-08-21 15:10:14',265.192000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3558,3,3,'2019-08-21 15:10:14',266.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3559,3,3,'2019-08-21 15:10:14',266.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3560,3,3,'2019-08-21 15:10:14',267.274000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3561,3,3,'2019-08-21 15:10:14',267.822000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3562,3,3,'2019-08-21 15:10:14',268.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3563,3,3,'2019-08-21 15:10:14',269.089000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3564,3,3,'2019-08-21 15:10:14',269.654000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3565,3,3,'2019-08-21 15:10:14',270.437000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3566,3,3,'2019-08-21 15:10:14',271.285000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3567,3,3,'2019-08-21 15:10:14',271.618000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3568,3,3,'2019-08-21 15:10:14',272.051000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3569,3,3,'2019-08-21 15:10:14',272.884000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3570,3,3,'2019-08-21 15:10:14',273.766000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3571,3,3,'2019-08-21 15:10:14',274.047000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3572,3,3,'2019-08-21 15:10:14',274.715000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3573,3,3,'2019-08-21 15:10:14',275.697000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3574,3,3,'2019-08-21 15:10:14',276.021000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3575,3,3,'2019-08-21 15:10:14',276.680000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3576,3,3,'2019-08-21 15:10:14',277.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3577,3,3,'2019-08-21 15:10:14',278.527000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3578,3,3,'2019-08-21 15:10:14',279.343000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3579,3,3,'2019-08-21 15:10:14',279.619000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3580,3,3,'2019-08-21 15:10:14',280.275000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3581,3,3,'2019-08-21 15:10:14',281.225000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3582,3,3,'2019-08-21 15:10:14',282.057000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3583,3,3,'2019-08-21 15:10:14',282.923000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3584,3,3,'2019-08-21 15:10:14',283.838000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3585,3,3,'2019-08-21 15:10:14',284.174000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3586,3,3,'2019-08-21 15:10:14',284.621000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3587,3,3,'2019-08-21 15:10:14',285.620000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3588,3,3,'2019-08-21 15:10:14',285.928000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3589,3,3,'2019-08-21 15:10:14',286.386000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3590,3,3,'2019-08-21 15:10:14',286.784000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3591,3,3,'2019-08-21 15:10:14',287.284000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3592,3,3,'2019-08-21 15:10:14',288.084000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3593,3,3,'2019-08-21 15:10:14',288.949000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3594,3,3,'2019-08-21 15:10:14',289.915000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3595,3,3,'2019-08-21 15:10:14',290.730000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3596,3,3,'2019-08-21 15:10:14',291.057000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3597,3,3,'2019-08-21 15:10:14',291.646000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3598,3,3,'2019-08-21 15:10:14',292.596000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3599,3,3,'2019-08-21 15:10:14',292.871000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3600,3,3,'2019-08-21 15:10:14',293.544000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3601,3,3,'2019-08-21 15:10:14',294.360000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3602,3,3,'2019-08-21 15:10:14',294.705000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3603,3,3,'2019-08-21 15:10:14',295.159000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3604,3,3,'2019-08-21 15:10:14',295.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3605,3,3,'2019-08-21 15:10:14',313.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3606,3,3,'2019-08-21 15:10:14',346.082000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3607,3,3,'2019-08-21 15:10:14',346.384000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3608,3,3,'2019-08-21 15:10:14',346.881000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3609,3,3,'2019-08-21 15:10:14',347.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3610,3,3,'2019-08-21 15:10:14',348.612000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3611,3,3,'2019-08-21 15:10:14',349.628000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3612,3,3,'2019-08-21 15:10:14',349.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3613,3,3,'2019-08-21 15:10:14',350.511000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3614,3,3,'2019-08-21 15:10:14',351.293000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3615,3,3,'2019-08-21 15:10:14',352.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3616,3,3,'2019-08-21 15:10:14',352.841000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3617,3,3,'2019-08-21 15:10:14',353.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3618,3,3,'2019-08-21 15:10:14',353.790000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3619,3,3,'2019-08-21 15:10:14',354.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3620,3,3,'2019-08-21 15:10:14',354.656000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3621,3,3,'2019-08-21 15:10:14',355.621000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3622,3,3,'2019-08-21 15:10:14',356.554000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3623,3,3,'2019-08-21 15:10:14',357.536000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3624,3,3,'2019-08-21 15:10:14',357.832000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3625,3,3,'2019-08-21 15:10:14',358.519000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3626,3,3,'2019-08-21 15:10:14',359.518000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3627,3,3,'2019-08-21 15:10:14',359.908000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3628,3,3,'2019-08-21 15:10:14',360.300000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3629,3,3,'2019-08-21 15:10:14',361.198000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3630,3,3,'2019-08-21 15:10:14',361.998000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3631,3,3,'2019-08-21 15:10:14',362.980000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3632,3,3,'2019-08-21 15:10:14',363.746000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3633,3,3,'2019-08-21 15:10:14',364.695000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3634,3,3,'2019-08-21 15:10:14',365.561000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3635,3,3,'2019-08-21 15:10:14',365.873000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3636,3,3,'2019-08-21 15:10:14',366.409000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3637,3,3,'2019-08-21 15:10:14',366.790000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3638,3,3,'2019-08-21 15:10:14',367.259000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3639,3,3,'2019-08-21 15:10:14',368.158000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3640,3,3,'2019-08-21 15:10:14',368.534000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3641,3,3,'2019-08-21 15:10:14',368.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3642,3,3,'2019-08-21 15:10:14',369.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3643,3,3,'2019-08-21 15:10:14',370.755000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3644,3,3,'2019-08-21 15:10:14',371.033000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3645,3,3,'2019-08-21 15:10:14',371.537000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3646,3,3,'2019-08-21 15:10:14',372.320000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3647,3,3,'2019-08-21 15:10:14',373.302000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3648,3,3,'2019-08-21 15:10:14',373.562000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3649,3,3,'2019-08-21 15:10:14',374.268000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3650,3,3,'2019-08-21 15:10:14',374.590000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3651,3,3,'2019-08-21 15:10:14',375.033000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3652,3,3,'2019-08-21 15:10:14',375.999000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3653,3,3,'2019-08-21 15:10:14',376.898000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3654,3,3,'2019-08-21 15:10:14',377.830000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3655,3,3,'2019-08-21 15:10:14',378.178000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3656,3,3,'2019-08-21 15:10:14',378.646000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3657,3,3,'2019-08-21 15:10:14',379.578000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3658,3,3,'2019-08-21 15:10:14',380.411000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3659,3,3,'2019-08-21 15:10:14',380.707000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3660,3,3,'2019-08-21 15:10:14',381.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3661,3,3,'2019-08-21 15:10:14',382.242000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3662,3,3,'2019-08-21 15:10:14',383.158000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3663,3,3,'2019-08-21 15:10:14',384.007000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3664,3,3,'2019-08-21 15:10:14',384.325000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3665,3,3,'2019-08-21 15:10:14',384.873000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3666,3,3,'2019-08-21 15:10:14',385.805000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3667,3,3,'2019-08-21 15:10:14',386.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3668,3,3,'2019-08-21 15:10:14',387.554000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3669,3,3,'2019-08-21 15:10:14',387.802000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3670,3,3,'2019-08-21 15:10:14',388.568000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3671,3,3,'2019-08-21 15:10:14',389.534000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3672,3,3,'2019-08-21 15:10:14',390.300000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3673,3,3,'2019-08-21 15:10:14',390.644000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3674,3,3,'2019-08-21 15:10:14',391.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3675,3,3,'2019-08-21 15:10:14',391.530000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3676,3,3,'2019-08-21 15:10:14',392.148000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3677,3,3,'2019-08-21 15:10:14',393.047000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3678,3,3,'2019-08-21 15:10:14',393.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3679,3,3,'2019-08-21 15:10:14',394.795000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3680,3,3,'2019-08-21 15:10:14',395.058000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3681,3,3,'2019-08-21 15:10:14',395.578000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3682,3,3,'2019-08-21 15:10:14',395.903000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3683,3,3,'2019-08-21 15:10:14',396.477000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3684,3,3,'2019-08-21 15:10:14',397.293000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3685,3,3,'2019-08-21 15:10:14',398.125000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3686,3,3,'2019-08-21 15:10:14',399.124000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3687,3,3,'2019-08-21 15:10:14',399.370000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3688,3,3,'2019-08-21 15:10:14',399.906000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3689,3,3,'2019-08-21 15:10:14',400.739000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3690,3,3,'2019-08-21 15:10:14',401.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3691,3,3,'2019-08-21 15:10:14',401.880000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3692,3,3,'2019-08-21 15:10:14',402.604000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3693,3,3,'2019-08-21 15:10:14',403.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3694,3,3,'2019-08-21 15:10:14',404.335000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3695,3,3,'2019-08-21 15:10:14',404.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3696,3,3,'2019-08-21 15:10:14',405.301000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3697,3,3,'2019-08-21 15:10:14',405.618000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3698,3,3,'2019-08-21 15:10:14',406.232000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3699,3,3,'2019-08-21 15:10:14',407.182000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3700,3,3,'2019-08-21 15:10:14',407.964000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3701,3,3,'2019-08-21 15:10:14',408.797000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3702,3,3,'2019-08-21 15:10:14',409.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3703,3,3,'2019-08-21 15:10:14',410.462000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3704,3,3,'2019-08-21 15:10:14',410.737000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3705,3,3,'2019-08-21 15:10:14',411.427000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3706,3,3,'2019-08-21 15:10:14',411.735000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3707,3,3,'2019-08-21 15:10:14',412.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3708,3,3,'2019-08-21 15:10:14',413.275000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3709,3,3,'2019-08-21 15:10:14',414.258000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3710,3,3,'2019-08-21 15:10:14',415.239000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3711,3,3,'2019-08-21 15:10:14',415.515000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3712,3,3,'2019-08-21 15:10:14',416.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3713,3,3,'2019-08-21 15:10:14',417.154000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3714,3,3,'2019-08-21 15:10:14',418.054000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3715,3,3,'2019-08-21 15:10:14',418.836000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3716,3,3,'2019-08-21 15:10:14',419.203000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3717,3,3,'2019-08-21 15:10:14',419.602000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3718,3,3,'2019-08-21 15:10:14',420.367000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3719,3,3,'2019-08-21 15:10:14',421.333000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3720,3,3,'2019-08-21 15:10:14',422.182000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3721,3,3,'2019-08-21 15:10:14',422.488000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3722,3,3,'2019-08-21 15:10:14',422.998000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3723,3,3,'2019-08-21 15:10:14',423.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3724,3,3,'2019-08-21 15:10:14',423.780000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3725,3,3,'2019-08-21 15:10:14',424.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3726,3,3,'2019-08-21 15:10:14',425.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3727,3,3,'2019-08-21 15:10:14',426.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3728,3,3,'2019-08-21 15:10:14',426.821000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3729,3,3,'2019-08-21 15:10:14',427.260000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3730,3,3,'2019-08-21 15:10:14',428.093000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3731,3,3,'2019-08-21 15:10:14',428.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3732,3,3,'2019-08-21 15:10:14',429.271000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3733,3,3,'2019-08-21 15:10:14',429.974000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3734,3,3,'2019-08-21 15:10:14',430.923000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3735,3,3,'2019-08-21 15:10:14',431.888000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3736,3,3,'2019-08-21 15:10:14',432.887000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3737,3,3,'2019-08-21 15:10:14',433.770000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3738,3,3,'2019-08-21 15:10:14',434.719000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3739,3,3,'2019-08-21 15:10:14',435.014000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3740,3,3,'2019-08-21 15:10:14',435.551000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3741,3,3,'2019-08-21 15:10:14',435.932000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3742,3,3,'2019-08-21 15:10:14',436.450000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3743,3,3,'2019-08-21 15:10:14',437.282000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3744,3,3,'2019-08-21 15:10:14',438.281000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3745,3,3,'2019-08-21 15:10:14',438.552000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3746,3,3,'2019-08-21 15:10:14',439.230000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3747,3,3,'2019-08-21 15:10:14',440.013000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3748,3,3,'2019-08-21 15:10:14',440.325000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3749,3,3,'2019-08-21 15:10:14',440.778000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3750,3,3,'2019-08-21 15:10:14',441.661000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3751,3,3,'2019-08-21 15:10:14',441.978000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3752,3,3,'2019-08-21 15:10:14',442.593000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3753,3,3,'2019-08-21 15:10:14',442.895000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3754,3,3,'2019-08-21 15:10:14',443.426000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3755,3,3,'2019-08-21 15:10:14',444.291000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3756,3,3,'2019-08-21 15:10:14',445.107000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3757,3,3,'2019-08-21 15:10:14',446.022000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3758,3,3,'2019-08-21 15:10:14',446.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3759,3,3,'2019-08-21 15:10:14',447.117000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3760,3,3,'2019-08-21 15:10:14',447.654000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3761,3,3,'2019-08-21 15:10:14',448.470000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3762,3,3,'2019-08-21 15:10:14',448.770000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3763,3,3,'2019-08-21 15:10:14',449.253000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3764,3,3,'2019-08-21 15:10:14',450.251000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3765,3,3,'2019-08-21 15:10:14',451.150000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3766,3,3,'2019-08-21 15:10:14',452.033000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3767,3,3,'2019-08-21 15:10:14',452.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3768,3,3,'2019-08-21 15:10:14',452.849000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3769,3,3,'2019-08-21 15:10:14',453.631000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3770,3,3,'2019-08-21 15:10:14',453.960000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3771,3,3,'2019-08-21 15:10:14',454.514000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3772,3,3,'2019-08-21 15:10:14',455.279000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3773,3,3,'2019-08-21 15:10:14',456.045000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3774,3,3,'2019-08-21 15:10:14',456.827000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3775,3,3,'2019-08-21 15:10:14',457.124000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3776,3,3,'2019-08-21 15:10:14',457.826000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3777,3,3,'2019-08-21 15:10:14',458.092000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3778,3,3,'2019-08-21 15:10:14',458.759000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3779,3,3,'2019-08-21 15:10:14',459.642000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3780,3,3,'2019-08-21 15:10:14',460.540000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3781,3,3,'2019-08-21 15:10:14',461.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3782,3,3,'2019-08-21 15:10:14',462.338000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3783,3,3,'2019-08-21 15:10:14',463.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3784,3,3,'2019-08-21 15:10:14',463.573000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3785,3,3,'2019-08-21 15:10:14',464.053000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3786,3,3,'2019-08-21 15:10:14',464.836000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3787,3,3,'2019-08-21 15:10:14',465.851000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3788,3,3,'2019-08-21 15:10:14',466.816000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3789,3,3,'2019-08-21 15:10:14',467.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3790,3,3,'2019-08-21 15:10:14',467.749000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3791,3,3,'2019-08-21 15:10:14',468.715000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3792,3,3,'2019-08-21 15:10:14',469.547000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3793,3,3,'2019-08-21 15:10:14',470.430000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3794,3,3,'2019-08-21 15:10:14',470.738000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3795,3,3,'2019-08-21 15:10:14',471.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3796,3,3,'2019-08-21 15:10:14',471.515000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3797,3,3,'2019-08-21 15:10:14',471.994000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3798,3,3,'2019-08-21 15:10:14',472.927000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3799,3,3,'2019-08-21 15:10:14',473.759000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3800,3,3,'2019-08-21 15:10:14',474.741000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3801,3,3,'2019-08-21 15:10:14',475.641000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3802,3,3,'2019-08-21 15:10:14',475.959000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3803,3,3,'2019-08-21 15:10:14',476.623000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3804,3,3,'2019-08-21 15:10:14',477.472000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3805,3,3,'2019-08-21 15:10:14',477.782000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3806,3,3,'2019-08-21 15:10:14',478.354000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3807,3,3,'2019-08-21 15:10:14',479.170000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3808,3,3,'2019-08-21 15:10:14',479.455000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3809,3,3,'2019-08-21 15:10:14',480.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3810,3,3,'2019-08-21 15:10:14',481.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3811,3,3,'2019-08-21 15:10:14',481.370000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3812,3,3,'2019-08-21 15:10:14',482.000000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3813,3,3,'2019-08-21 15:10:14',482.999000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3814,3,3,'2019-08-21 15:10:14',483.882000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3815,3,3,'2019-08-21 15:10:14',484.172000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3816,3,3,'2019-08-21 15:10:14',484.813000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3817,3,3,'2019-08-21 15:10:14',485.829000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3818,3,3,'2019-08-21 15:10:14',486.097000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3819,3,3,'2019-08-21 15:10:14',486.812000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3820,3,3,'2019-08-21 15:10:14',487.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3821,3,3,'2019-08-21 15:10:14',488.377000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3822,3,3,'2019-08-21 15:10:14',489.159000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3823,3,3,'2019-08-21 15:10:14',490.058000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3824,3,3,'2019-08-21 15:10:14',491.007000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3825,3,3,'2019-08-21 15:10:14',491.806000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3826,3,3,'2019-08-21 15:10:14',492.133000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3827,3,3,'2019-08-21 15:10:14',492.788000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3828,3,3,'2019-08-21 15:10:14',493.161000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3829,3,3,'2019-08-21 15:10:14',493.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3830,3,3,'2019-08-21 15:10:14',494.486000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3831,3,3,'2019-08-21 15:10:14',495.402000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3832,3,3,'2019-08-21 15:10:14',496.385000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3833,3,3,'2019-08-21 15:10:14',497.217000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3834,3,3,'2019-08-21 15:10:14',497.524000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3835,3,3,'2019-08-21 15:10:14',498.100000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3836,3,3,'2019-08-21 15:10:14',499.015000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3837,3,3,'2019-08-21 15:10:14',499.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3838,3,3,'2019-08-21 15:10:14',499.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3839,3,3,'2019-08-21 15:10:14',500.746000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3840,3,3,'2019-08-21 15:10:14',501.679000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3841,3,3,'2019-08-21 15:10:14',501.908000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3842,3,3,'2019-08-21 15:10:14',502.494000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3843,3,3,'2019-08-21 15:10:14',503.327000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3844,3,3,'2019-08-21 15:10:14',503.611000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3845,3,3,'2019-08-21 15:10:14',504.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3846,3,3,'2019-08-21 15:10:14',505.059000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3847,3,3,'2019-08-21 15:10:14',505.957000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3848,3,3,'2019-08-21 15:10:14',506.262000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3849,3,3,'2019-08-21 15:10:14',506.757000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3850,3,3,'2019-08-21 15:10:14',507.539000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3851,3,3,'2019-08-21 15:10:14',508.454000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3852,3,3,'2019-08-21 15:10:14',508.660000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3853,3,3,'2019-08-21 15:10:14',509.221000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3854,3,3,'2019-08-21 15:10:14',510.169000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3855,3,3,'2019-08-21 15:10:14',510.534000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3856,3,3,'2019-08-21 15:10:14',510.985000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3857,3,3,'2019-08-21 15:10:14',511.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3858,3,3,'2019-08-21 15:10:14',512.288000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3859,3,3,'2019-08-21 15:10:14',512.899000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3860,3,3,'2019-08-21 15:10:14',513.865000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3861,3,3,'2019-08-21 15:10:14',514.798000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3862,3,3,'2019-08-21 15:10:14',515.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3863,3,3,'2019-08-21 15:10:14',515.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3864,3,3,'2019-08-21 15:10:14',516.546000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3865,3,3,'2019-08-21 15:10:14',517.411000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3866,3,3,'2019-08-21 15:10:14',518.277000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3867,3,3,'2019-08-21 15:10:14',519.227000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3868,3,3,'2019-08-21 15:10:14',519.463000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3869,3,3,'2019-08-21 15:10:14',520.208000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3870,3,3,'2019-08-21 15:10:14',521.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3871,3,3,'2019-08-21 15:10:14',521.890000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3872,3,3,'2019-08-21 15:10:14',522.153000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3873,3,3,'2019-08-21 15:10:14',522.756000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3874,3,3,'2019-08-21 15:10:14',523.688000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3875,3,3,'2019-08-21 15:10:14',524.487000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3876,3,3,'2019-08-21 15:10:14',525.336000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3877,3,3,'2019-08-21 15:10:14',525.569000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3878,3,3,'2019-08-21 15:10:14',526.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3879,3,3,'2019-08-21 15:10:14',527.001000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3880,3,3,'2019-08-21 15:10:14',527.313000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3881,3,3,'2019-08-21 15:10:14',527.816000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3882,3,3,'2019-08-21 15:10:14',528.180000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3883,3,3,'2019-08-21 15:10:14',528.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3884,3,3,'2019-08-21 15:10:14',529.415000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3885,3,3,'2019-08-21 15:10:14',530.314000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3886,3,3,'2019-08-21 15:10:14',531.163000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3887,3,3,'2019-08-21 15:10:14',531.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3888,3,3,'2019-08-21 15:10:14',532.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3889,3,3,'2019-08-21 15:10:14',532.961000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3890,3,3,'2019-08-21 15:10:14',533.760000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3891,3,3,'2019-08-21 15:10:14',534.075000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3892,3,3,'2019-08-21 15:10:14',534.543000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3893,3,3,'2019-08-21 15:10:14',535.542000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3894,3,3,'2019-08-21 15:10:14',536.407000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3895,3,3,'2019-08-21 15:10:14',536.735000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3896,3,3,'2019-08-21 15:10:14',537.390000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3897,3,3,'2019-08-21 15:10:14',538.255000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3898,3,3,'2019-08-21 15:10:14',539.104000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3899,3,3,'2019-08-21 15:10:14',540.087000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3900,3,3,'2019-08-21 15:10:14',540.424000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3901,3,3,'2019-08-21 15:10:14',541.053000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3902,3,3,'2019-08-21 15:10:14',541.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3903,3,3,'2019-08-21 15:10:14',542.349000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3904,3,3,'2019-08-21 15:10:14',542.884000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3905,3,3,'2019-08-21 15:10:14',543.766000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3906,3,3,'2019-08-21 15:10:14',544.082000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3907,3,3,'2019-08-21 15:10:14',544.532000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3908,3,3,'2019-08-21 15:10:14',545.464000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3909,3,3,'2019-08-21 15:10:14',546.297000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3910,3,3,'2019-08-21 15:10:14',547.112000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3911,3,3,'2019-08-21 15:10:14',548.078000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3912,3,3,'2019-08-21 15:10:14',549.027000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3913,3,3,'2019-08-21 15:10:14',549.942000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3914,3,3,'2019-08-21 15:10:14',550.708000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3915,3,3,'2019-08-21 15:10:14',551.076000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3916,3,3,'2019-08-21 15:10:14',551.674000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3917,3,3,'2019-08-21 15:10:14',552.043000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3918,3,3,'2019-08-21 15:10:14',552.507000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3919,3,3,'2019-08-21 15:10:14',552.920000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3920,3,3,'2019-08-21 15:10:14',553.422000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3921,3,3,'2019-08-21 15:10:14',554.421000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3922,3,3,'2019-08-21 15:10:14',555.387000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3923,3,3,'2019-08-21 15:10:14',556.252000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3924,3,3,'2019-08-21 15:10:14',556.608000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3925,3,3,'2019-08-21 15:10:14',557.135000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3926,3,3,'2019-08-21 15:10:14',558.134000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3927,3,3,'2019-08-21 15:10:14',558.473000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3928,3,3,'2019-08-21 15:10:14',559.049000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3929,3,3,'2019-08-21 15:10:14',560.015000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3930,3,3,'2019-08-21 15:10:14',560.947000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3931,3,3,'2019-08-21 15:10:14',561.214000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3932,3,3,'2019-08-21 15:10:14',561.796000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3933,3,3,'2019-08-21 15:10:14',562.662000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3934,3,3,'2019-08-21 15:10:14',563.428000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3935,3,3,'2019-08-21 15:10:14',564.294000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3936,3,3,'2019-08-21 15:10:14',565.192000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3937,3,3,'2019-08-21 15:10:14',566.142000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3938,3,3,'2019-08-21 15:10:14',566.424000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3939,3,3,'2019-08-21 15:10:14',566.957000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3940,3,3,'2019-08-21 15:10:14',567.320000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3941,3,3,'2019-08-21 15:10:14',567.757000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3942,3,3,'2019-08-21 15:10:14',568.655000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3943,3,3,'2019-08-21 15:10:14',569.472000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3944,3,3,'2019-08-21 15:10:14',570.237000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3945,3,3,'2019-08-21 15:10:14',571.136000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3946,3,3,'2019-08-21 15:10:14',571.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3947,3,3,'2019-08-21 15:10:14',572.052000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3948,3,3,'2019-08-21 15:10:14',572.399000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3949,3,3,'2019-08-21 15:10:14',572.935000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3950,3,3,'2019-08-21 15:10:14',573.767000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3951,3,3,'2019-08-21 15:10:14',574.716000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3952,3,3,'2019-08-21 15:10:14',574.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3953,3,3,'2019-08-21 15:10:14',575.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3954,3,3,'2019-08-21 15:10:14',576.431000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3955,3,3,'2019-08-21 15:10:14',577.396000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3956,3,3,'2019-08-21 15:10:14',577.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3957,3,3,'2019-08-21 15:10:14',578.179000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3958,3,3,'2019-08-21 15:10:14',578.978000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3959,3,3,'2019-08-21 15:10:14',579.333000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3960,3,3,'2019-08-21 15:10:14',579.927000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3961,3,3,'2019-08-21 15:10:14',580.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3962,3,3,'2019-08-21 15:10:14',581.808000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3963,3,3,'2019-08-21 15:10:14',582.790000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3964,3,3,'2019-08-21 15:10:14',583.051000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3965,3,3,'2019-08-21 15:10:14',583.589000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3966,3,3,'2019-08-21 15:10:14',584.521000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3967,3,3,'2019-08-21 15:10:14',584.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3968,3,3,'2019-08-21 15:10:14',585.504000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3969,3,3,'2019-08-21 15:10:14',585.843000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3970,3,3,'2019-08-21 15:10:14',586.369000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3971,3,3,'2019-08-21 15:10:14',587.269000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3972,3,3,'2019-08-21 15:10:14',588.051000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3973,3,3,'2019-08-21 15:10:14',588.967000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3974,3,3,'2019-08-21 15:10:14',589.933000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3975,3,3,'2019-08-21 15:10:14',590.731000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3976,3,3,'2019-08-21 15:10:14',591.613000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3977,3,3,'2019-08-21 15:10:14',591.899000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3978,3,3,'2019-08-21 15:10:14',592.596000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3979,3,3,'2019-08-21 15:10:14',593.462000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3980,3,3,'2019-08-21 15:10:14',594.444000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3981,3,3,'2019-08-21 15:10:14',594.700000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3982,3,3,'2019-08-21 15:10:14',595.343000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3983,3,3,'2019-08-21 15:10:14',596.159000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3984,3,3,'2019-08-21 15:10:14',596.925000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3985,3,3,'2019-08-21 15:10:14',597.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3986,3,3,'2019-08-21 15:10:14',597.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3987,3,3,'2019-08-21 15:10:14',598.839000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3988,3,3,'2019-08-21 15:10:14',599.605000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3989,3,3,'2019-08-21 15:10:14',599.891000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3990,3,3,'2019-08-21 15:10:14',600.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3991,3,3,'2019-08-21 15:10:14',601.170000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3992,3,3,'2019-08-21 15:10:14',602.103000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3993,3,3,'2019-08-21 15:10:14',602.430000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3994,3,3,'2019-08-21 15:10:14',602.918000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3995,3,3,'2019-08-21 15:10:14',603.917000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3996,3,3,'2019-08-21 15:10:14',604.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3997,3,3,'2019-08-21 15:10:14',605.241000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3998,3,3,'2019-08-21 15:10:14',605.781000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (3999,3,3,'2019-08-21 15:10:14',606.631000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4000,3,3,'2019-08-21 15:10:14',606.955000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4001,3,3,'2019-08-21 15:10:14',607.597000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4002,3,3,'2019-08-21 15:10:14',607.962000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4003,3,3,'2019-08-21 15:10:14',608.362000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4004,3,3,'2019-08-21 15:10:14',609.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4005,3,3,'2019-08-21 15:10:14',610.110000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4006,3,3,'2019-08-21 15:10:14',628.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4007,3,3,'2019-08-21 15:10:14',663.707000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4008,3,3,'2019-08-21 15:10:14',664.062000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4009,3,3,'2019-08-21 15:10:14',664.589000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4010,3,3,'2019-08-21 15:10:14',665.554000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4011,3,3,'2019-08-21 15:10:14',666.337000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4012,3,3,'2019-08-21 15:10:14',667.219000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4013,3,3,'2019-08-21 15:10:14',668.102000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4014,3,3,'2019-08-21 15:10:14',668.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4015,3,3,'2019-08-21 15:10:14',669.033000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4016,3,3,'2019-08-21 15:10:14',669.966000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4017,3,3,'2019-08-21 15:10:14',670.320000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4018,3,3,'2019-08-21 15:10:14',670.765000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4019,3,3,'2019-08-21 15:10:14',671.106000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4020,3,3,'2019-08-21 15:10:14',671.730000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4021,3,3,'2019-08-21 15:10:14',672.613000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4022,3,3,'2019-08-21 15:10:14',673.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4023,3,3,'2019-08-21 15:10:14',674.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4024,3,3,'2019-08-21 15:10:14',675.193000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4025,3,3,'2019-08-21 15:10:14',675.992000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4026,3,3,'2019-08-21 15:10:14',676.286000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4027,3,3,'2019-08-21 15:10:14',676.809000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4028,3,3,'2019-08-21 15:10:14',677.607000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4029,3,3,'2019-08-21 15:10:14',677.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4030,3,3,'2019-08-21 15:10:14',678.390000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4031,3,3,'2019-08-21 15:10:14',679.306000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4032,3,3,'2019-08-21 15:10:14',680.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4033,3,3,'2019-08-21 15:10:14',681.120000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4034,3,3,'2019-08-21 15:10:14',681.476000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4035,3,3,'2019-08-21 15:10:14',681.953000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4036,3,3,'2019-08-21 15:10:14',682.262000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4037,3,3,'2019-08-21 15:10:14',682.719000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4038,3,3,'2019-08-21 15:10:14',683.501000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4039,3,3,'2019-08-21 15:10:14',684.367000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4040,3,3,'2019-08-21 15:10:14',685.332000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4041,3,3,'2019-08-21 15:10:14',686.265000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4042,3,3,'2019-08-21 15:10:14',686.605000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4043,3,3,'2019-08-21 15:10:14',687.063000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4044,3,3,'2019-08-21 15:10:14',687.913000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4045,3,3,'2019-08-21 15:10:14',688.729000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4046,3,3,'2019-08-21 15:10:14',689.044000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4047,3,3,'2019-08-21 15:10:14',689.578000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4048,3,3,'2019-08-21 15:10:14',690.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4049,3,3,'2019-08-21 15:10:14',691.276000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4050,3,3,'2019-08-21 15:10:14',692.092000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4051,3,3,'2019-08-21 15:10:14',692.431000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4052,3,3,'2019-08-21 15:10:14',692.940000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4053,3,3,'2019-08-21 15:10:14',693.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4054,3,3,'2019-08-21 15:10:14',694.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4055,3,3,'2019-08-21 15:10:14',694.723000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4056,3,3,'2019-08-21 15:10:14',695.688000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4057,3,3,'2019-08-21 15:10:14',696.048000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4058,3,3,'2019-08-21 15:10:14',696.454000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4059,3,3,'2019-08-21 15:10:14',697.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4060,3,3,'2019-08-21 15:10:14',698.318000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4061,3,3,'2019-08-21 15:10:14',698.598000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4062,3,3,'2019-08-21 15:10:14',699.117000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4063,3,3,'2019-08-21 15:10:14',700.083000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4064,3,3,'2019-08-21 15:10:14',700.982000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4065,3,3,'2019-08-21 15:10:14',701.248000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4066,3,3,'2019-08-21 15:10:14',701.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4067,3,3,'2019-08-21 15:10:14',702.663000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4068,3,3,'2019-08-21 15:10:14',703.446000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4069,3,3,'2019-08-21 15:10:14',704.262000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4070,3,3,'2019-08-21 15:10:14',704.563000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4071,3,3,'2019-08-21 15:10:14',705.161000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4072,3,3,'2019-08-21 15:10:14',706.177000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4073,3,3,'2019-08-21 15:10:14',707.142000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4074,3,3,'2019-08-21 15:10:14',707.375000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4075,3,3,'2019-08-21 15:10:14',708.141000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4076,3,3,'2019-08-21 15:10:14',709.057000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4077,3,3,'2019-08-21 15:10:14',709.381000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4078,3,3,'2019-08-21 15:10:14',709.872000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4079,3,3,'2019-08-21 15:10:14',710.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4080,3,3,'2019-08-21 15:10:14',711.620000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4081,3,3,'2019-08-21 15:10:14',712.520000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4082,3,3,'2019-08-21 15:10:14',712.827000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4083,3,3,'2019-08-21 15:10:14',713.285000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4084,3,3,'2019-08-21 15:10:14',714.151000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4085,3,3,'2019-08-21 15:10:14',715.133000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4086,3,3,'2019-08-21 15:10:14',715.396000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4087,3,3,'2019-08-21 15:10:14',716.065000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4088,3,3,'2019-08-21 15:10:14',716.435000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4089,3,3,'2019-08-21 15:10:14',716.932000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4090,3,3,'2019-08-21 15:10:14',717.747000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4091,3,3,'2019-08-21 15:10:14',718.546000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4092,3,3,'2019-08-21 15:10:14',719.429000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4093,3,3,'2019-08-21 15:10:14',719.750000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4094,3,3,'2019-08-21 15:10:14',720.344000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4095,3,3,'2019-08-21 15:10:14',721.144000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4096,3,3,'2019-08-21 15:10:14',721.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4097,3,3,'2019-08-21 15:10:14',722.875000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4098,3,3,'2019-08-21 15:10:14',723.116000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4099,3,3,'2019-08-21 15:10:14',723.790000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4100,3,3,'2019-08-21 15:10:14',724.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4101,3,3,'2019-08-21 15:10:14',724.739000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4102,3,3,'2019-08-21 15:10:14',725.622000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4103,3,3,'2019-08-21 15:10:14',726.454000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4104,3,3,'2019-08-21 15:10:14',727.337000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4105,3,3,'2019-08-21 15:10:14',727.601000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4106,3,3,'2019-08-21 15:10:14',728.136000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4107,3,3,'2019-08-21 15:10:14',728.951000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4108,3,3,'2019-08-21 15:10:14',729.273000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4109,3,3,'2019-08-21 15:10:14',729.950000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4110,3,3,'2019-08-21 15:10:14',730.716000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4111,3,3,'2019-08-21 15:10:14',731.565000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4112,3,3,'2019-08-21 15:10:14',732.531000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4113,3,3,'2019-08-21 15:10:14',733.297000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4114,3,3,'2019-08-21 15:10:14',734.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4115,3,3,'2019-08-21 15:10:14',735.028000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4116,3,3,'2019-08-21 15:10:14',735.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4117,3,3,'2019-08-21 15:10:14',735.910000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4118,3,3,'2019-08-21 15:10:14',736.258000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4119,3,3,'2019-08-21 15:10:14',736.743000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4120,3,3,'2019-08-21 15:10:14',737.542000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4121,3,3,'2019-08-21 15:10:14',738.524000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4122,3,3,'2019-08-21 15:10:14',739.373000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4123,3,3,'2019-08-21 15:10:14',739.663000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4124,3,3,'2019-08-21 15:10:14',740.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4125,3,3,'2019-08-21 15:10:14',740.551000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4126,3,3,'2019-08-21 15:10:14',741.238000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4127,3,3,'2019-08-21 15:10:14',742.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4128,3,3,'2019-08-21 15:10:14',742.556000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4129,3,3,'2019-08-21 15:10:14',743.103000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4130,3,3,'2019-08-21 15:10:14',744.052000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4131,3,3,'2019-08-21 15:10:14',744.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4132,3,3,'2019-08-21 15:10:14',745.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4133,3,3,'2019-08-21 15:10:14',746.516000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4134,3,3,'2019-08-21 15:10:14',746.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4135,3,3,'2019-08-21 15:10:14',747.432000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4136,3,3,'2019-08-21 15:10:14',748.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4137,3,3,'2019-08-21 15:10:14',748.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4138,3,3,'2019-08-21 15:10:14',749.079000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4139,3,3,'2019-08-21 15:10:14',749.995000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4140,3,3,'2019-08-21 15:10:14',750.811000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4141,3,3,'2019-08-21 15:10:14',751.793000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4142,3,3,'2019-08-21 15:10:14',752.038000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4143,3,3,'2019-08-21 15:10:14',752.709000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4144,3,3,'2019-08-21 15:10:14',753.066000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4145,3,3,'2019-08-21 15:10:14',753.524000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4146,3,3,'2019-08-21 15:10:14',754.507000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4147,3,3,'2019-08-21 15:10:14',755.506000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4148,3,3,'2019-08-21 15:10:14',756.422000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4149,3,3,'2019-08-21 15:10:14',756.734000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4150,3,3,'2019-08-21 15:10:14',757.221000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4151,3,3,'2019-08-21 15:10:14',758.020000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4152,3,3,'2019-08-21 15:10:14',758.397000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4153,3,3,'2019-08-21 15:10:14',758.785000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4154,3,3,'2019-08-21 15:10:14',759.734000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4155,3,3,'2019-08-21 15:10:14',760.050000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4156,3,3,'2019-08-21 15:10:14',760.634000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4157,3,3,'2019-08-21 15:10:14',761.466000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4158,3,3,'2019-08-21 15:10:14',762.465000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4159,3,3,'2019-08-21 15:10:14',763.348000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4160,3,3,'2019-08-21 15:10:14',763.658000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4161,3,3,'2019-08-21 15:10:14',764.213000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4162,3,3,'2019-08-21 15:10:14',765.179000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4163,3,3,'2019-08-21 15:10:14',765.462000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4164,3,3,'2019-08-21 15:10:14',766.161000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4165,3,3,'2019-08-21 15:10:14',767.010000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4166,3,3,'2019-08-21 15:10:14',768.025000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4167,3,3,'2019-08-21 15:10:14',768.808000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4168,3,3,'2019-08-21 15:10:14',769.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4169,3,3,'2019-08-21 15:10:14',770.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4170,3,3,'2019-08-21 15:10:14',770.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4171,3,3,'2019-08-21 15:10:14',771.405000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4172,3,3,'2019-08-21 15:10:14',772.404000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4173,3,3,'2019-08-21 15:10:14',773.353000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4174,3,3,'2019-08-21 15:10:14',773.654000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4175,3,3,'2019-08-21 15:10:14',774.119000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4176,3,3,'2019-08-21 15:10:14',775.051000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4177,3,3,'2019-08-21 15:10:14',775.348000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4178,3,3,'2019-08-21 15:10:14',775.817000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4179,3,3,'2019-08-21 15:10:14',776.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4180,3,3,'2019-08-21 15:10:14',776.716000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4181,3,3,'2019-08-21 15:10:14',777.648000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4182,3,3,'2019-08-21 15:10:14',778.497000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4183,3,3,'2019-08-21 15:10:14',779.347000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4184,3,3,'2019-08-21 15:10:14',779.650000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4185,3,3,'2019-08-21 15:10:14',780.212000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4186,3,3,'2019-08-21 15:10:14',781.194000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4187,3,3,'2019-08-21 15:10:14',781.455000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4188,3,3,'2019-08-21 15:10:14',782.127000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4189,3,3,'2019-08-21 15:10:14',783.126000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4190,3,3,'2019-08-21 15:10:14',783.975000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4191,3,3,'2019-08-21 15:10:14',784.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4192,3,3,'2019-08-21 15:10:14',785.756000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4193,3,3,'2019-08-21 15:10:14',786.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4194,3,3,'2019-08-21 15:10:14',786.967000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4195,3,3,'2019-08-21 15:10:14',787.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4196,3,3,'2019-08-21 15:10:14',788.569000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4197,3,3,'2019-08-21 15:10:14',789.386000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4198,3,3,'2019-08-21 15:10:14',789.657000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4199,3,3,'2019-08-21 15:10:14',790.185000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4200,3,3,'2019-08-21 15:10:14',790.544000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4201,3,3,'2019-08-21 15:10:14',791.017000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4202,3,3,'2019-08-21 15:10:14',791.833000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4203,3,3,'2019-08-21 15:10:14',792.815000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4204,3,3,'2019-08-21 15:10:14',793.797000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4205,3,3,'2019-08-21 15:10:14',794.111000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4206,3,3,'2019-08-21 15:10:14',794.746000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4207,3,3,'2019-08-21 15:10:14',795.612000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4208,3,3,'2019-08-21 15:10:14',795.936000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4209,3,3,'2019-08-21 15:10:14',796.395000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4210,3,3,'2019-08-21 15:10:14',797.210000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4211,3,3,'2019-08-21 15:10:14',798.060000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4212,3,3,'2019-08-21 15:10:14',798.825000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4213,3,3,'2019-08-21 15:10:14',799.141000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4214,3,3,'2019-08-21 15:10:14',799.674000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4215,3,3,'2019-08-21 15:10:14',800.523000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4216,3,3,'2019-08-21 15:10:14',801.405000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4217,3,3,'2019-08-21 15:10:14',802.338000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4218,3,3,'2019-08-21 15:10:14',802.627000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4219,3,3,'2019-08-21 15:10:14',803.354000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4220,3,3,'2019-08-21 15:10:14',804.236000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4221,3,3,'2019-08-21 15:10:14',805.234000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4222,3,3,'2019-08-21 15:10:14',805.539000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4223,3,3,'2019-08-21 15:10:14',806.150000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4224,3,3,'2019-08-21 15:10:14',806.983000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4225,3,3,'2019-08-21 15:10:14',807.333000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4226,3,3,'2019-08-21 15:10:14',807.815000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4227,3,3,'2019-08-21 15:10:14',808.170000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4228,3,3,'2019-08-21 15:10:14',808.681000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4229,3,3,'2019-08-21 15:10:14',809.480000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4230,3,3,'2019-08-21 15:10:14',810.496000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4231,3,3,'2019-08-21 15:10:14',811.378000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4232,3,3,'2019-08-21 15:10:14',812.377000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4233,3,3,'2019-08-21 15:10:14',812.634000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4234,3,3,'2019-08-21 15:10:14',813.192000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4235,3,3,'2019-08-21 15:10:14',814.009000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4236,3,3,'2019-08-21 15:10:14',814.348000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4237,3,3,'2019-08-21 15:10:14',814.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4238,3,3,'2019-08-21 15:10:14',815.790000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4239,3,3,'2019-08-21 15:10:14',816.772000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4240,3,3,'2019-08-21 15:10:14',817.571000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4241,3,3,'2019-08-21 15:10:14',818.403000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4242,3,3,'2019-08-21 15:10:14',818.751000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4243,3,3,'2019-08-21 15:10:14',819.303000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4244,3,3,'2019-08-21 15:10:14',820.219000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4245,3,3,'2019-08-21 15:10:14',821.018000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4246,3,3,'2019-08-21 15:10:14',821.331000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4247,3,3,'2019-08-21 15:10:14',822.000000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4248,3,3,'2019-08-21 15:10:14',822.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4249,3,3,'2019-08-21 15:10:14',822.966000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4250,3,3,'2019-08-21 15:10:14',823.731000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4251,3,3,'2019-08-21 15:10:14',824.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4252,3,3,'2019-08-21 15:10:14',825.629000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4253,3,3,'2019-08-21 15:10:14',826.479000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4254,3,3,'2019-08-21 15:10:14',826.803000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4255,3,3,'2019-08-21 15:10:14',827.377000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4256,3,3,'2019-08-21 15:10:14',828.177000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4257,3,3,'2019-08-21 15:10:14',828.536000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4258,3,3,'2019-08-21 15:10:14',828.976000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4259,3,3,'2019-08-21 15:10:14',829.892000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4260,3,3,'2019-08-21 15:10:14',830.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4261,3,3,'2019-08-21 15:10:14',830.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4262,3,3,'2019-08-21 15:10:14',831.606000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4263,3,3,'2019-08-21 15:10:14',832.555000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4264,3,3,'2019-08-21 15:10:14',833.454000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4265,3,3,'2019-08-21 15:10:14',833.847000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4266,3,3,'2019-08-21 15:10:14',834.387000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4267,3,3,'2019-08-21 15:10:14',835.368000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4268,3,3,'2019-08-21 15:10:14',835.711000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4269,3,3,'2019-08-21 15:10:14',836.168000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4270,3,3,'2019-08-21 15:10:14',837.033000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4271,3,3,'2019-08-21 15:10:14',838.032000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4272,3,3,'2019-08-21 15:10:14',838.898000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4273,3,3,'2019-08-21 15:10:14',839.198000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4274,3,3,'2019-08-21 15:10:14',839.797000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4275,3,3,'2019-08-21 15:10:14',840.146000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4276,3,3,'2019-08-21 15:10:14',840.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4277,3,3,'2019-08-21 15:10:14',841.712000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4278,3,3,'2019-08-21 15:10:14',842.678000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4279,3,3,'2019-08-21 15:10:14',843.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4280,3,3,'2019-08-21 15:10:14',844.492000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4281,3,3,'2019-08-21 15:10:14',845.441000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4282,3,3,'2019-08-21 15:10:14',846.340000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4283,3,3,'2019-08-21 15:10:14',846.666000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4284,3,3,'2019-08-21 15:10:14',847.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4285,3,3,'2019-08-21 15:10:14',847.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4286,3,3,'2019-08-21 15:10:14',847.889000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4287,3,3,'2019-08-21 15:10:14',848.737000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4288,3,3,'2019-08-21 15:10:14',849.637000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4289,3,3,'2019-08-21 15:10:14',849.931000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4290,3,3,'2019-08-21 15:10:14',850.419000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4291,3,3,'2019-08-21 15:10:14',851.335000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4292,3,3,'2019-08-21 15:10:14',852.167000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4293,3,3,'2019-08-21 15:10:14',852.460000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4294,3,3,'2019-08-21 15:10:14',853.100000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4295,3,3,'2019-08-21 15:10:14',853.882000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4296,3,3,'2019-08-21 15:10:14',854.764000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4297,3,3,'2019-08-21 15:10:14',855.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4298,3,3,'2019-08-21 15:10:14',856.027000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4299,3,3,'2019-08-21 15:10:14',856.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4300,3,3,'2019-08-21 15:10:14',857.478000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4301,3,3,'2019-08-21 15:10:14',858.327000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4302,3,3,'2019-08-21 15:10:14',858.617000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4303,3,3,'2019-08-21 15:10:14',859.126000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4304,3,3,'2019-08-21 15:10:14',860.092000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4305,3,3,'2019-08-21 15:10:14',860.874000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4306,3,3,'2019-08-21 15:10:14',861.873000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4307,3,3,'2019-08-21 15:10:14',862.154000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4308,3,3,'2019-08-21 15:10:14',862.806000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4309,3,3,'2019-08-21 15:10:14',863.704000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4310,3,3,'2019-08-21 15:10:14',864.039000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4311,3,3,'2019-08-21 15:10:14',864.470000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4312,3,3,'2019-08-21 15:10:14',864.815000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4313,3,3,'2019-08-21 15:10:14',865.353000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4314,3,3,'2019-08-21 15:10:14',866.252000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4315,3,3,'2019-08-21 15:10:14',867.200000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4316,3,3,'2019-08-21 15:10:14',868.100000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4317,3,3,'2019-08-21 15:10:14',868.423000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4318,3,3,'2019-08-21 15:10:14',868.981000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4319,3,3,'2019-08-21 15:10:14',869.931000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4320,3,3,'2019-08-21 15:10:14',870.207000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4321,3,3,'2019-08-21 15:10:14',870.747000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4322,3,3,'2019-08-21 15:10:14',871.596000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4323,3,3,'2019-08-21 15:10:14',872.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4324,3,3,'2019-08-21 15:10:14',873.261000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4325,3,3,'2019-08-21 15:10:14',874.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4326,3,3,'2019-08-21 15:10:14',874.449000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4327,3,3,'2019-08-21 15:10:14',874.959000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4328,3,3,'2019-08-21 15:10:14',875.958000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4329,3,3,'2019-08-21 15:10:14',876.840000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4330,3,3,'2019-08-21 15:10:14',877.170000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4331,3,3,'2019-08-21 15:10:14',877.706000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4332,3,3,'2019-08-21 15:10:14',878.077000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4333,3,3,'2019-08-21 15:10:14',878.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4334,3,3,'2019-08-21 15:10:14',879.487000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4335,3,3,'2019-08-21 15:10:14',880.402000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4336,3,3,'2019-08-21 15:10:14',881.202000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4337,3,3,'2019-08-21 15:10:14',881.514000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4338,3,3,'2019-08-21 15:10:14',882.185000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4339,3,3,'2019-08-21 15:10:14',883.133000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4340,3,3,'2019-08-21 15:10:14',883.899000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4341,3,3,'2019-08-21 15:10:14',884.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4342,3,3,'2019-08-21 15:10:14',885.192000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4343,3,3,'2019-08-21 15:10:14',885.764000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4344,3,3,'2019-08-21 15:10:14',886.119000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4345,3,3,'2019-08-21 15:10:14',886.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4346,3,3,'2019-08-21 15:10:14',887.495000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4347,3,3,'2019-08-21 15:10:14',887.873000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4348,3,3,'2019-08-21 15:10:14',888.494000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4349,3,3,'2019-08-21 15:10:14',889.310000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4350,3,3,'2019-08-21 15:10:14',890.275000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4351,3,3,'2019-08-21 15:10:14',891.107000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4352,3,3,'2019-08-21 15:10:14',892.057000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4353,3,3,'2019-08-21 15:10:14',892.367000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4354,3,3,'2019-08-21 15:10:14',892.939000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4355,3,3,'2019-08-21 15:10:14',893.324000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4356,3,3,'2019-08-21 15:10:14',893.821000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4357,3,3,'2019-08-21 15:10:14',894.654000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4358,3,3,'2019-08-21 15:10:14',895.652000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4359,3,3,'2019-08-21 15:10:14',896.552000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4360,3,3,'2019-08-21 15:10:14',897.367000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4361,3,3,'2019-08-21 15:10:14',897.719000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4362,3,3,'2019-08-21 15:10:14',898.267000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4363,3,3,'2019-08-21 15:10:14',898.595000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4364,3,3,'2019-08-21 15:10:14',899.149000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4365,3,3,'2019-08-21 15:10:14',899.965000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4366,3,3,'2019-08-21 15:10:14',900.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4367,3,3,'2019-08-21 15:10:14',901.696000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4368,3,3,'2019-08-21 15:10:14',902.646000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4369,3,3,'2019-08-21 15:10:14',902.959000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4370,3,3,'2019-08-21 15:10:14',903.561000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4371,3,3,'2019-08-21 15:10:14',904.460000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4372,3,3,'2019-08-21 15:10:14',905.442000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4373,3,3,'2019-08-21 15:10:14',905.740000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4374,3,3,'2019-08-21 15:10:14',906.291000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4375,3,3,'2019-08-21 15:10:14',907.273000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4376,3,3,'2019-08-21 15:10:14',908.105000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4377,3,3,'2019-08-21 15:10:14',908.472000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4378,3,3,'2019-08-21 15:10:14',908.922000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4379,3,3,'2019-08-21 15:10:14',909.721000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4380,3,3,'2019-08-21 15:10:14',910.023000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4381,3,3,'2019-08-21 15:10:14',910.536000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4382,3,3,'2019-08-21 15:10:14',911.469000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4383,3,3,'2019-08-21 15:10:14',912.251000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4384,3,3,'2019-08-21 15:10:14',912.593000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4385,3,3,'2019-08-21 15:10:14',913.217000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4386,3,3,'2019-08-21 15:10:14',913.550000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4387,3,3,'2019-08-21 15:10:14',914.216000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4388,3,3,'2019-08-21 15:10:14',915.165000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4389,3,3,'2019-08-21 15:10:14',916.080000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4390,3,3,'2019-08-21 15:10:14',917.079000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4391,3,3,'2019-08-21 15:10:14',918.028000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4392,3,3,'2019-08-21 15:10:14',918.307000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4393,3,3,'2019-08-21 15:10:14',919.027000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4394,3,3,'2019-08-21 15:10:14',919.345000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4395,3,3,'2019-08-21 15:10:14',920.043000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4396,3,3,'2019-08-21 15:10:14',921.059000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4397,3,3,'2019-08-21 15:10:14',922.024000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4398,3,3,'2019-08-21 15:10:14',923.039000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4399,3,3,'2019-08-21 15:10:14',923.938000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4400,3,3,'2019-08-21 15:10:14',924.253000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4401,3,3,'2019-08-21 15:10:14',924.871000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4402,3,3,'2019-08-21 15:10:14',925.870000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4403,3,3,'2019-08-21 15:10:14',926.208000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4404,3,3,'2019-08-21 15:10:14',926.702000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4405,3,3,'2019-08-21 15:10:14',927.585000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4406,3,3,'2019-08-21 15:10:14',928.550000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4407,3,3,'2019-08-21 15:10:14',948.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4408,3,3,'2019-08-21 15:10:14',974.711000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4409,3,3,'2019-08-21 15:10:14',975.609000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4410,3,3,'2019-08-21 15:10:14',975.895000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4411,3,3,'2019-08-21 15:10:14',976.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4412,3,3,'2019-08-21 15:10:14',977.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4413,3,3,'2019-08-21 15:10:14',977.869000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4414,3,3,'2019-08-21 15:10:14',978.423000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4415,3,3,'2019-08-21 15:10:14',979.223000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4416,3,3,'2019-08-21 15:10:14',979.988000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4417,3,3,'2019-08-21 15:10:14',980.804000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4418,3,3,'2019-08-21 15:10:14',981.587000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4419,3,3,'2019-08-21 15:10:14',982.535000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4420,3,3,'2019-08-21 15:10:14',983.352000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4421,3,3,'2019-08-21 15:10:14',983.694000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4422,3,3,'2019-08-21 15:10:14',984.283000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4423,3,3,'2019-08-21 15:10:14',984.632000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4424,3,3,'2019-08-21 15:10:14',985.282000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4425,3,3,'2019-08-21 15:10:14',985.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4426,3,3,'2019-08-21 15:10:14',986.248000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4427,3,3,'2019-08-21 15:10:14',987.030000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4428,3,3,'2019-08-21 15:10:14',987.963000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4429,3,3,'2019-08-21 15:10:14',988.962000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4430,3,3,'2019-08-21 15:10:14',989.761000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4431,3,3,'2019-08-21 15:10:14',990.073000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4432,3,3,'2019-08-21 15:10:14',990.560000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4433,3,3,'2019-08-21 15:10:14',991.559000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4434,3,3,'2019-08-21 15:10:14',991.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4435,3,3,'2019-08-21 15:10:14',992.425000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4436,3,3,'2019-08-21 15:10:14',993.290000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4437,3,3,'2019-08-21 15:10:14',994.057000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4438,3,3,'2019-08-21 15:10:14',994.972000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4439,3,3,'2019-08-21 15:10:14',995.264000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4440,3,3,'2019-08-21 15:10:14',995.854000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4441,3,3,'2019-08-21 15:10:14',996.770000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4442,3,3,'2019-08-21 15:10:14',997.048000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4443,3,3,'2019-08-21 15:10:14',997.586000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4444,3,3,'2019-08-21 15:10:14',998.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4445,3,3,'2019-08-21 15:10:14',998.730000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4446,3,3,'2019-08-21 15:10:14',999.251000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4447,3,3,'2019-08-21 15:10:14',1000.149000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4448,3,3,'2019-08-21 15:10:14',1001.148000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4449,3,3,'2019-08-21 15:10:14',1001.451000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4450,3,3,'2019-08-21 15:10:14',1002.131000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4451,3,3,'2019-08-21 15:10:14',1002.896000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4452,3,3,'2019-08-21 15:10:14',1003.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4453,3,3,'2019-08-21 15:10:14',1004.031000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4454,3,3,'2019-08-21 15:10:14',1004.611000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4455,3,3,'2019-08-21 15:10:14',1005.410000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4456,3,3,'2019-08-21 15:10:14',1006.193000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4457,3,3,'2019-08-21 15:10:14',1007.175000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4458,3,3,'2019-08-21 15:10:14',1007.498000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4459,3,3,'2019-08-21 15:10:14',1008.074000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4460,3,3,'2019-08-21 15:10:14',1008.923000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4461,3,3,'2019-08-21 15:10:14',1009.789000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4462,3,3,'2019-08-21 15:10:14',1010.088000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4463,3,3,'2019-08-21 15:10:14',1010.621000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4464,3,3,'2019-08-21 15:10:14',1011.421000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4465,3,3,'2019-08-21 15:10:14',1011.761000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4466,3,3,'2019-08-21 15:10:14',1012.353000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4467,3,3,'2019-08-21 15:10:14',1013.219000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4468,3,3,'2019-08-21 15:10:14',1014.067000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4469,3,3,'2019-08-21 15:10:14',1015.000000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4470,3,3,'2019-08-21 15:10:14',1015.308000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4471,3,3,'2019-08-21 15:10:14',1015.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4472,3,3,'2019-08-21 15:10:14',1016.765000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4473,3,3,'2019-08-21 15:10:14',1017.664000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4474,3,3,'2019-08-21 15:10:14',1017.948000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4475,3,3,'2019-08-21 15:10:14',1018.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4476,3,3,'2019-08-21 15:10:14',1019.645000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4477,3,3,'2019-08-21 15:10:14',1020.544000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4478,3,3,'2019-08-21 15:10:14',1020.851000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4479,3,3,'2019-08-21 15:10:14',1021.310000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4480,3,3,'2019-08-21 15:10:14',1022.109000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4481,3,3,'2019-08-21 15:10:14',1022.975000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4482,3,3,'2019-08-21 15:10:14',1023.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4483,3,3,'2019-08-21 15:10:14',1023.807000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4484,3,3,'2019-08-21 15:10:14',1024.606000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4485,3,3,'2019-08-21 15:10:14',1025.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4486,3,3,'2019-08-21 15:10:14',1025.778000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4487,3,3,'2019-08-21 15:10:14',1026.371000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4488,3,3,'2019-08-21 15:10:14',1027.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4489,3,3,'2019-08-21 15:10:14',1027.553000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4490,3,3,'2019-08-21 15:10:14',1028.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4491,3,3,'2019-08-21 15:10:14',1028.984000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4492,3,3,'2019-08-21 15:10:14',1029.884000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4493,3,3,'2019-08-21 15:10:14',1030.213000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4494,3,3,'2019-08-21 15:10:14',1030.800000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4495,3,3,'2019-08-21 15:10:14',1031.615000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4496,3,3,'2019-08-21 15:10:14',1032.531000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4497,3,3,'2019-08-21 15:10:14',1032.786000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4498,3,3,'2019-08-21 15:10:14',1033.380000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4499,3,3,'2019-08-21 15:10:14',1034.379000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4500,3,3,'2019-08-21 15:10:14',1035.145000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4501,3,3,'2019-08-21 15:10:14',1035.504000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4502,3,3,'2019-08-21 15:10:14',1036.144000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4503,3,3,'2019-08-21 15:10:14',1037.043000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4504,3,3,'2019-08-21 15:10:14',1037.991000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4505,3,3,'2019-08-21 15:10:14',1038.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4506,3,3,'2019-08-21 15:10:14',1039.212000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4507,3,3,'2019-08-21 15:10:14',1039.973000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4508,3,3,'2019-08-21 15:10:14',1040.972000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4509,3,3,'2019-08-21 15:10:14',1041.288000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4510,3,3,'2019-08-21 15:10:14',1041.888000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4511,3,3,'2019-08-21 15:10:14',1042.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4512,3,3,'2019-08-21 15:10:14',1043.835000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4513,3,3,'2019-08-21 15:10:14',1044.834000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4514,3,3,'2019-08-21 15:10:14',1045.833000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4515,3,3,'2019-08-21 15:10:14',1046.832000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4516,3,3,'2019-08-21 15:10:14',1047.133000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4517,3,3,'2019-08-21 15:10:14',1047.681000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4518,3,3,'2019-08-21 15:10:14',1048.613000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4519,3,3,'2019-08-21 15:10:14',1048.927000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4520,3,3,'2019-08-21 15:10:14',1049.562000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4521,3,3,'2019-08-21 15:10:14',1050.444000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4522,3,3,'2019-08-21 15:10:14',1051.244000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4523,3,3,'2019-08-21 15:10:14',1052.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4524,3,3,'2019-08-21 15:10:14',1052.475000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4525,3,3,'2019-08-21 15:10:14',1053.175000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4526,3,3,'2019-08-21 15:10:14',1054.107000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4527,3,3,'2019-08-21 15:10:14',1054.419000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4528,3,3,'2019-08-21 15:10:14',1054.956000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4529,3,3,'2019-08-21 15:10:14',1055.326000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4530,3,3,'2019-08-21 15:10:14',1055.889000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4531,3,3,'2019-08-21 15:10:14',1056.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4532,3,3,'2019-08-21 15:10:14',1057.141000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4533,3,3,'2019-08-21 15:10:14',1057.804000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4534,3,3,'2019-08-21 15:10:14',1058.569000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4535,3,3,'2019-08-21 15:10:14',1059.385000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4536,3,3,'2019-08-21 15:10:14',1060.234000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4537,3,3,'2019-08-21 15:10:14',1060.496000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4538,3,3,'2019-08-21 15:10:14',1061.183000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4539,3,3,'2019-08-21 15:10:14',1062.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4540,3,3,'2019-08-21 15:10:14',1063.031000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4541,3,3,'2019-08-21 15:10:14',1063.338000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4542,3,3,'2019-08-21 15:10:14',1063.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4543,3,3,'2019-08-21 15:10:14',1064.829000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4544,3,3,'2019-08-21 15:10:14',1065.694000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4545,3,3,'2019-08-21 15:10:14',1066.049000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4546,3,3,'2019-08-21 15:10:14',1066.561000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4547,3,3,'2019-08-21 15:10:14',1067.576000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4548,3,3,'2019-08-21 15:10:14',1068.441000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4549,3,3,'2019-08-21 15:10:14',1069.308000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4550,3,3,'2019-08-21 15:10:14',1069.626000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4551,3,3,'2019-08-21 15:10:14',1070.223000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4552,3,3,'2019-08-21 15:10:14',1071.072000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4553,3,3,'2019-08-21 15:10:14',1071.420000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4554,3,3,'2019-08-21 15:10:14',1072.038000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4555,3,3,'2019-08-21 15:10:14',1073.003000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4556,3,3,'2019-08-21 15:10:14',1073.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4557,3,3,'2019-08-21 15:10:14',1074.751000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4558,3,3,'2019-08-21 15:10:14',1075.717000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4559,3,3,'2019-08-21 15:10:14',1076.036000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4560,3,3,'2019-08-21 15:10:14',1076.633000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4561,3,3,'2019-08-21 15:10:14',1077.465000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4562,3,3,'2019-08-21 15:10:14',1077.859000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4563,3,3,'2019-08-21 15:10:14',1078.348000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4564,3,3,'2019-08-21 15:10:14',1079.246000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4565,3,3,'2019-08-21 15:10:14',1079.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4566,3,3,'2019-08-21 15:10:14',1080.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4567,3,3,'2019-08-21 15:10:14',1081.045000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4568,3,3,'2019-08-21 15:10:14',1081.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4569,3,3,'2019-08-21 15:10:14',1082.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4570,3,3,'2019-08-21 15:10:14',1082.760000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4571,3,3,'2019-08-21 15:10:14',1083.725000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4572,3,3,'2019-08-21 15:10:14',1084.624000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4573,3,3,'2019-08-21 15:10:14',1085.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4574,3,3,'2019-08-21 15:10:14',1085.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4575,3,3,'2019-08-21 15:10:14',1086.538000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4576,3,3,'2019-08-21 15:10:14',1087.371000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4577,3,3,'2019-08-21 15:10:14',1088.220000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4578,3,3,'2019-08-21 15:10:14',1089.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4579,3,3,'2019-08-21 15:10:14',1089.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4580,3,3,'2019-08-21 15:10:14',1089.901000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4581,3,3,'2019-08-21 15:10:14',1090.701000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4582,3,3,'2019-08-21 15:10:14',1091.550000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4583,3,3,'2019-08-21 15:10:14',1091.878000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4584,3,3,'2019-08-21 15:10:14',1092.499000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4585,3,3,'2019-08-21 15:10:14',1093.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4586,3,3,'2019-08-21 15:10:14',1093.913000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4587,3,3,'2019-08-21 15:10:14',1094.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4588,3,3,'2019-08-21 15:10:14',1094.689000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4589,3,3,'2019-08-21 15:10:14',1095.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4590,3,3,'2019-08-21 15:10:14',1096.128000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4591,3,3,'2019-08-21 15:10:14',1096.961000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4592,3,3,'2019-08-21 15:10:14',1097.743000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4593,3,3,'2019-08-21 15:10:14',1098.575000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4594,3,3,'2019-08-21 15:10:14',1099.375000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4595,3,3,'2019-08-21 15:10:14',1099.678000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4596,3,3,'2019-08-21 15:10:14',1100.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4597,3,3,'2019-08-21 15:10:14',1101.056000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4598,3,3,'2019-08-21 15:10:14',1102.055000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4599,3,3,'2019-08-21 15:10:14',1102.338000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4600,3,3,'2019-08-21 15:10:14',1102.904000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4601,3,3,'2019-08-21 15:10:14',1103.255000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4602,3,3,'2019-08-21 15:10:14',1103.870000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4603,3,3,'2019-08-21 15:10:14',1104.802000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4604,3,3,'2019-08-21 15:10:14',1105.140000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4605,3,3,'2019-08-21 15:10:14',1105.768000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4606,3,3,'2019-08-21 15:10:14',1106.633000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4607,3,3,'2019-08-21 15:10:14',1107.399000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4608,3,3,'2019-08-21 15:10:14',1108.265000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4609,3,3,'2019-08-21 15:10:14',1108.627000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4610,3,3,'2019-08-21 15:10:14',1109.164000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4611,3,3,'2019-08-21 15:10:14',1110.079000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4612,3,3,'2019-08-21 15:10:14',1111.012000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4613,3,3,'2019-08-21 15:10:14',1111.287000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4614,3,3,'2019-08-21 15:10:14',1112.011000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4615,3,3,'2019-08-21 15:10:14',1112.960000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4616,3,3,'2019-08-21 15:10:14',1113.742000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4617,3,3,'2019-08-21 15:10:14',1114.089000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4618,3,3,'2019-08-21 15:10:14',1114.691000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4619,3,3,'2019-08-21 15:10:14',1115.674000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4620,3,3,'2019-08-21 15:10:14',1116.622000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4621,3,3,'2019-08-21 15:10:14',1117.555000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4622,3,3,'2019-08-21 15:10:14',1118.487000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4623,3,3,'2019-08-21 15:10:14',1118.765000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4624,3,3,'2019-08-21 15:10:14',1119.303000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4625,3,3,'2019-08-21 15:10:14',1120.219000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4626,3,3,'2019-08-21 15:10:14',1120.559000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4627,3,3,'2019-08-21 15:10:14',1120.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4628,3,3,'2019-08-21 15:10:14',1121.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4629,3,3,'2019-08-21 15:10:14',1121.866000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4630,3,3,'2019-08-21 15:10:14',1122.799000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4631,3,3,'2019-08-21 15:10:14',1123.748000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4632,3,3,'2019-08-21 15:10:14',1124.697000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4633,3,3,'2019-08-21 15:10:14',1125.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4634,3,3,'2019-08-21 15:10:14',1125.479000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4635,3,3,'2019-08-21 15:10:14',1126.345000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4636,3,3,'2019-08-21 15:10:14',1126.625000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4637,3,3,'2019-08-21 15:10:14',1127.211000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4638,3,3,'2019-08-21 15:10:14',1128.127000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4639,3,3,'2019-08-21 15:10:14',1129.125000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4640,3,3,'2019-08-21 15:10:14',1129.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4641,3,3,'2019-08-21 15:10:14',1130.773000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4642,3,3,'2019-08-21 15:10:14',1131.069000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4643,3,3,'2019-08-21 15:10:14',1131.723000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4644,3,3,'2019-08-21 15:10:14',1132.672000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4645,3,3,'2019-08-21 15:10:14',1132.984000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4646,3,3,'2019-08-21 15:10:14',1133.637000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4647,3,3,'2019-08-21 15:10:14',1134.437000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4648,3,3,'2019-08-21 15:10:14',1135.285000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4649,3,3,'2019-08-21 15:10:14',1135.614000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4650,3,3,'2019-08-21 15:10:14',1136.284000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4651,3,3,'2019-08-21 15:10:14',1136.582000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4652,3,3,'2019-08-21 15:10:14',1137.150000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4653,3,3,'2019-08-21 15:10:14',1137.966000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4654,3,3,'2019-08-21 15:10:14',1138.898000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4655,3,3,'2019-08-21 15:10:14',1139.847000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4656,3,3,'2019-08-21 15:10:14',1140.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4657,3,3,'2019-08-21 15:10:14',1141.512000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4658,3,3,'2019-08-21 15:10:14',1142.494000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4659,3,3,'2019-08-21 15:10:14',1142.870000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4660,3,3,'2019-08-21 15:10:14',1143.343000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4661,3,3,'2019-08-21 15:10:14',1144.159000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4662,3,3,'2019-08-21 15:10:14',1144.563000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4663,3,3,'2019-08-21 15:10:14',1145.142000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4664,3,3,'2019-08-21 15:10:14',1145.940000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4665,3,3,'2019-08-21 15:10:14',1146.723000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4666,3,3,'2019-08-21 15:10:14',1147.622000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4667,3,3,'2019-08-21 15:10:14',1147.899000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4668,3,3,'2019-08-21 15:10:14',1148.487000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4669,3,3,'2019-08-21 15:10:14',1149.304000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4670,3,3,'2019-08-21 15:10:14',1149.652000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4671,3,3,'2019-08-21 15:10:14',1150.202000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4672,3,3,'2019-08-21 15:10:14',1151.135000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4673,3,3,'2019-08-21 15:10:14',1151.406000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4674,3,3,'2019-08-21 15:10:14',1152.034000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4675,3,3,'2019-08-21 15:10:14',1152.883000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4676,3,3,'2019-08-21 15:10:14',1153.865000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4677,3,3,'2019-08-21 15:10:14',1154.107000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4678,3,3,'2019-08-21 15:10:14',1154.681000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4679,3,3,'2019-08-21 15:10:14',1155.497000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4680,3,3,'2019-08-21 15:10:14',1156.379000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4681,3,3,'2019-08-21 15:10:14',1156.677000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4682,3,3,'2019-08-21 15:10:14',1157.328000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4683,3,3,'2019-08-21 15:10:14',1157.694000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4684,3,3,'2019-08-21 15:10:14',1158.277000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4685,3,3,'2019-08-21 15:10:14',1159.226000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4686,3,3,'2019-08-21 15:10:14',1160.025000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4687,3,3,'2019-08-21 15:10:14',1161.023000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4688,3,3,'2019-08-21 15:10:14',1161.939000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4689,3,3,'2019-08-21 15:10:14',1162.938000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4690,3,3,'2019-08-21 15:10:14',1163.308000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4691,3,3,'2019-08-21 15:10:14',1163.787000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4692,3,3,'2019-08-21 15:10:14',1164.687000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4693,3,3,'2019-08-21 15:10:14',1165.192000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4694,3,3,'2019-08-21 15:10:14',1165.452000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4695,3,3,'2019-08-21 15:10:14',1166.418000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4696,3,3,'2019-08-21 15:10:14',1167.351000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4697,3,3,'2019-08-21 15:10:14',1168.299000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4698,3,3,'2019-08-21 15:10:14',1168.669000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4699,3,3,'2019-08-21 15:10:14',1169.132000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4700,3,3,'2019-08-21 15:10:14',1169.897000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4701,3,3,'2019-08-21 15:10:14',1170.680000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4702,3,3,'2019-08-21 15:10:14',1171.118000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4703,3,3,'2019-08-21 15:10:14',1171.562000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4704,3,3,'2019-08-21 15:10:14',1172.512000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4705,3,3,'2019-08-21 15:10:14',1173.327000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4706,3,3,'2019-08-21 15:10:14',1173.678000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4707,3,3,'2019-08-21 15:10:14',1174.126000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4708,3,3,'2019-08-21 15:10:14',1175.092000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4709,3,3,'2019-08-21 15:10:14',1176.107000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4710,3,3,'2019-08-21 15:10:14',1176.974000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4711,3,3,'2019-08-21 15:10:14',1177.508000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4712,3,3,'2019-08-21 15:10:14',1177.839000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4713,3,3,'2019-08-21 15:10:14',1178.755000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4714,3,3,'2019-08-21 15:10:14',1179.587000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4715,3,3,'2019-08-21 15:10:14',1179.926000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4716,3,3,'2019-08-21 15:10:14',1180.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4717,3,3,'2019-08-21 15:10:14',1181.335000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4718,3,3,'2019-08-21 15:10:14',1182.201000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4719,3,3,'2019-08-21 15:10:14',1182.526000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4720,3,3,'2019-08-21 15:10:14',1183.050000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4721,3,3,'2019-08-21 15:10:14',1183.815000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4722,3,3,'2019-08-21 15:10:14',1184.199000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4723,3,3,'2019-08-21 15:10:14',1184.731000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4724,3,3,'2019-08-21 15:10:14',1185.630000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4725,3,3,'2019-08-21 15:10:14',1186.496000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4726,3,3,'2019-08-21 15:10:14',1187.361000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4727,3,3,'2019-08-21 15:10:14',1187.666000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4728,3,3,'2019-08-21 15:10:14',1188.360000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4729,3,3,'2019-08-21 15:10:14',1189.227000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4730,3,3,'2019-08-21 15:10:14',1189.580000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4731,3,3,'2019-08-21 15:10:14',1190.142000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4732,3,3,'2019-08-21 15:10:14',1190.508000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4733,3,3,'2019-08-21 15:10:14',1191.124000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4734,3,3,'2019-08-21 15:10:14',1192.040000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4735,3,3,'2019-08-21 15:10:14',1192.905000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4736,3,3,'2019-08-21 15:10:14',1193.838000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4737,3,3,'2019-08-21 15:10:14',1194.654000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4738,3,3,'2019-08-21 15:10:14',1195.586000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4739,3,3,'2019-08-21 15:10:14',1196.436000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4740,3,3,'2019-08-21 15:10:14',1197.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4741,3,3,'2019-08-21 15:10:14',1197.622000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4742,3,3,'2019-08-21 15:10:14',1198.200000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4743,3,3,'2019-08-21 15:10:14',1198.580000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4744,3,3,'2019-08-21 15:10:14',1199.049000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4745,3,3,'2019-08-21 15:10:14',1199.898000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4746,3,3,'2019-08-21 15:10:14',1200.232000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4747,3,3,'2019-08-21 15:10:14',1200.764000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4748,3,3,'2019-08-21 15:10:14',1201.680000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4749,3,3,'2019-08-21 15:10:14',1202.479000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4750,3,3,'2019-08-21 15:10:14',1203.345000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4751,3,3,'2019-08-21 15:10:14',1203.750000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4752,3,3,'2019-08-21 15:10:14',1204.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4753,3,3,'2019-08-21 15:10:14',1204.597000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4754,3,3,'2019-08-21 15:10:14',1205.159000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4755,3,3,'2019-08-21 15:10:14',1206.008000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4756,3,3,'2019-08-21 15:10:14',1206.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4757,3,3,'2019-08-21 15:10:14',1207.247000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4758,3,3,'2019-08-21 15:10:14',1207.739000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4759,3,3,'2019-08-21 15:10:14',1208.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4760,3,3,'2019-08-21 15:10:14',1209.604000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4761,3,3,'2019-08-21 15:10:14',1210.453000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4762,3,3,'2019-08-21 15:10:14',1210.773000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4763,3,3,'2019-08-21 15:10:14',1211.386000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4764,3,3,'2019-08-21 15:10:14',1211.751000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4765,3,3,'2019-08-21 15:10:14',1212.251000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4766,3,3,'2019-08-21 15:10:14',1213.067000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4767,3,3,'2019-08-21 15:10:14',1213.949000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4768,3,3,'2019-08-21 15:10:14',1214.948000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4769,3,3,'2019-08-21 15:10:14',1215.208000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4770,3,3,'2019-08-21 15:10:14',1215.780000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4771,3,3,'2019-08-21 15:10:14',1216.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4772,3,3,'2019-08-21 15:10:14',1216.972000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4773,3,3,'2019-08-21 15:10:14',1217.546000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4774,3,3,'2019-08-21 15:10:14',1218.328000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4775,3,3,'2019-08-21 15:10:14',1219.294000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4776,3,3,'2019-08-21 15:10:14',1220.310000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4777,3,3,'2019-08-21 15:10:14',1220.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4778,3,3,'2019-08-21 15:10:14',1221.241000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4779,3,3,'2019-08-21 15:10:14',1222.041000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4780,3,3,'2019-08-21 15:10:14',1222.823000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4781,3,3,'2019-08-21 15:10:14',1223.089000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4782,3,3,'2019-08-21 15:10:14',1223.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4783,3,3,'2019-08-21 15:10:14',1224.588000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4784,3,3,'2019-08-21 15:10:14',1225.354000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4785,3,3,'2019-08-21 15:10:14',1226.203000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4786,3,3,'2019-08-21 15:10:14',1226.485000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4787,3,3,'2019-08-21 15:10:14',1227.002000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4788,3,3,'2019-08-21 15:10:14',1227.817000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4789,3,3,'2019-08-21 15:10:14',1228.600000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4790,3,3,'2019-08-21 15:10:14',1229.565000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4791,3,3,'2019-08-21 15:10:14',1229.871000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4792,3,3,'2019-08-21 15:10:14',1230.365000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4793,3,3,'2019-08-21 15:10:14',1231.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4794,3,3,'2019-08-21 15:10:14',1231.474000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4795,3,3,'2019-08-21 15:10:14',1231.913000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4796,3,3,'2019-08-21 15:10:14',1232.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4797,3,3,'2019-08-21 15:10:14',1233.096000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4798,3,3,'2019-08-21 15:10:14',1233.595000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4799,3,3,'2019-08-21 15:10:14',1234.477000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4800,3,3,'2019-08-21 15:10:14',1235.260000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4801,3,3,'2019-08-21 15:10:14',1236.075000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4802,3,3,'2019-08-21 15:10:14',1236.371000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4803,3,3,'2019-08-21 15:10:14',1237.058000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4804,3,3,'2019-08-21 15:10:14',1237.856000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4805,3,3,'2019-08-21 15:10:14',1238.165000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4806,3,3,'2019-08-21 15:10:14',1238.822000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4807,3,3,'2019-08-21 15:10:14',1239.638000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4808,4,4,'2019-08-21 15:10:22',18.100000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4809,4,4,'2019-08-21 15:10:22',19.015000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4810,4,4,'2019-08-21 15:10:22',20.097000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4811,4,4,'2019-08-21 15:10:22',20.439000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4812,4,4,'2019-08-21 15:10:22',21.062000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4813,4,4,'2019-08-21 15:10:22',21.457000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4814,4,4,'2019-08-21 15:10:22',21.845000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4815,4,4,'2019-08-21 15:10:22',22.711000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4816,4,4,'2019-08-21 15:10:22',23.677000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4817,4,4,'2019-08-21 15:10:22',24.525000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4818,4,4,'2019-08-21 15:10:22',25.408000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4819,4,4,'2019-08-21 15:10:22',25.830000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4820,4,4,'2019-08-21 15:10:22',26.190000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4821,4,4,'2019-08-21 15:10:22',27.105000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4822,4,4,'2019-08-21 15:10:22',27.905000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4823,4,4,'2019-08-21 15:10:22',28.299000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4824,4,4,'2019-08-21 15:10:22',28.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4825,4,4,'2019-08-21 15:10:22',29.687000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4826,4,4,'2019-08-21 15:10:22',30.552000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4827,4,4,'2019-08-21 15:10:22',31.501000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4828,4,4,'2019-08-21 15:10:22',31.806000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4829,4,4,'2019-08-21 15:10:22',32.450000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4830,4,4,'2019-08-21 15:10:22',32.863000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4831,4,4,'2019-08-21 15:10:22',33.466000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4832,4,4,'2019-08-21 15:10:22',34.432000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4833,4,4,'2019-08-21 15:10:22',35.464000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4834,4,4,'2019-08-21 15:10:22',36.496000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4835,4,4,'2019-08-21 15:10:22',37.312000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4836,4,4,'2019-08-21 15:10:22',37.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4837,4,4,'2019-08-21 15:10:22',38.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4838,4,4,'2019-08-21 15:10:22',38.638000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4839,4,4,'2019-08-21 15:10:22',39.226000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4840,4,4,'2019-08-21 15:10:22',40.142000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4841,4,4,'2019-08-21 15:10:22',40.940000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4842,4,4,'2019-08-21 15:10:22',41.890000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4843,4,4,'2019-08-21 15:10:22',42.688000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4844,4,4,'2019-08-21 15:10:22',43.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4845,4,4,'2019-08-21 15:10:22',43.621000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4846,4,4,'2019-08-21 15:10:22',43.907000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4847,4,4,'2019-08-21 15:10:22',44.521000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4848,4,4,'2019-08-21 15:10:22',45.402000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4849,4,4,'2019-08-21 15:10:22',45.781000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4850,4,4,'2019-08-21 15:10:22',46.435000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4851,4,4,'2019-08-21 15:10:22',47.268000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4852,4,4,'2019-08-21 15:10:22',48.232000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4853,4,4,'2019-08-21 15:10:22',49.065000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4854,4,4,'2019-08-21 15:10:22',49.430000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4855,4,4,'2019-08-21 15:10:22',49.914000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4856,4,4,'2019-08-21 15:10:22',50.830000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4857,4,4,'2019-08-21 15:10:22',51.629000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4858,4,4,'2019-08-21 15:10:22',51.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4859,4,4,'2019-08-21 15:10:22',52.462000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4860,4,4,'2019-08-21 15:10:22',52.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4861,4,4,'2019-08-21 15:10:22',53.244000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4862,4,4,'2019-08-21 15:10:22',54.026000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4863,4,4,'2019-08-21 15:10:22',54.792000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4864,4,4,'2019-08-21 15:10:22',55.575000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4865,4,4,'2019-08-21 15:10:22',56.407000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4866,4,4,'2019-08-21 15:10:22',56.806000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4867,4,4,'2019-08-21 15:10:22',57.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4868,4,4,'2019-08-21 15:10:22',57.702000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4869,4,4,'2019-08-21 15:10:22',58.389000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4870,4,4,'2019-08-21 15:10:22',59.254000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4871,4,4,'2019-08-21 15:10:22',60.037000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4872,4,4,'2019-08-21 15:10:22',61.002000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4873,4,4,'2019-08-21 15:10:22',61.818000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4874,4,4,'2019-08-21 15:10:22',62.717000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4875,4,4,'2019-08-21 15:10:22',63.550000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4876,4,4,'2019-08-21 15:10:22',64.481000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4877,4,4,'2019-08-21 15:10:22',64.877000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4878,4,4,'2019-08-21 15:10:22',65.314000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4879,4,4,'2019-08-21 15:10:22',65.633000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4880,4,4,'2019-08-21 15:10:22',66.213000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4881,4,4,'2019-08-21 15:10:22',66.569000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4882,4,4,'2019-08-21 15:10:22',67.295000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4883,4,4,'2019-08-21 15:10:22',68.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4884,4,4,'2019-08-21 15:10:22',69.061000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4885,4,4,'2019-08-21 15:10:22',70.059000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4886,4,4,'2019-08-21 15:10:22',70.398000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4887,4,4,'2019-08-21 15:10:22',70.892000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4888,4,4,'2019-08-21 15:10:22',71.824000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4889,4,4,'2019-08-21 15:10:22',72.142000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4890,4,4,'2019-08-21 15:10:22',72.590000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4891,4,4,'2019-08-21 15:10:22',72.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4892,4,4,'2019-08-21 15:10:22',73.572000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4893,4,4,'2019-08-21 15:10:22',74.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4894,4,4,'2019-08-21 15:10:22',75.536000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4895,4,4,'2019-08-21 15:10:22',76.469000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4896,4,4,'2019-08-21 15:10:22',77.451000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4897,4,4,'2019-08-21 15:10:22',78.267000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4898,4,4,'2019-08-21 15:10:22',79.216000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4899,4,4,'2019-08-21 15:10:22',79.589000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4900,4,4,'2019-08-21 15:10:22',80.015000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4901,4,4,'2019-08-21 15:10:22',80.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4902,4,4,'2019-08-21 15:10:22',81.097000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4903,4,4,'2019-08-21 15:10:22',82.013000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4904,4,4,'2019-08-21 15:10:22',82.795000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4905,4,4,'2019-08-21 15:10:22',83.744000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4906,4,4,'2019-08-21 15:10:22',84.143000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4907,4,4,'2019-08-21 15:10:22',84.743000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4908,4,4,'2019-08-21 15:10:22',84.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4909,4,4,'2019-08-21 15:10:22',85.676000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4910,4,4,'2019-08-21 15:10:22',86.591000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4911,4,4,'2019-08-21 15:10:22',87.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4912,4,4,'2019-08-21 15:10:22',88.223000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4913,4,4,'2019-08-21 15:10:22',89.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4914,4,4,'2019-08-21 15:10:22',90.021000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4915,4,4,'2019-08-21 15:10:22',90.381000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4916,4,4,'2019-08-21 15:10:22',91.020000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4917,4,4,'2019-08-21 15:10:22',91.802000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4918,4,4,'2019-08-21 15:10:22',92.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4919,4,4,'2019-08-21 15:10:22',92.734000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4920,4,4,'2019-08-21 15:10:22',93.517000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4921,4,4,'2019-08-21 15:10:22',94.466000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4922,4,4,'2019-08-21 15:10:22',94.834000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4923,4,4,'2019-08-21 15:10:22',95.398000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4924,4,4,'2019-08-21 15:10:22',96.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4925,4,4,'2019-08-21 15:10:22',97.130000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4926,4,4,'2019-08-21 15:10:22',97.475000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4927,4,4,'2019-08-21 15:10:22',98.195000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4928,4,4,'2019-08-21 15:10:22',99.127000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4929,4,4,'2019-08-21 15:10:22',99.960000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4930,4,4,'2019-08-21 15:10:22',100.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4931,4,4,'2019-08-21 15:10:22',101.162000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4932,4,4,'2019-08-21 15:10:22',101.675000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4933,4,4,'2019-08-21 15:10:22',102.606000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4934,4,4,'2019-08-21 15:10:22',102.886000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4935,4,4,'2019-08-21 15:10:22',103.439000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4936,4,4,'2019-08-21 15:10:22',104.372000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4937,4,4,'2019-08-21 15:10:22',104.679000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4938,4,4,'2019-08-21 15:10:22',105.204000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4939,4,4,'2019-08-21 15:10:22',106.003000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4940,4,4,'2019-08-21 15:10:22',106.251000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4941,4,4,'2019-08-21 15:10:22',106.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4942,4,4,'2019-08-21 15:10:22',107.651000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4943,4,4,'2019-08-21 15:10:22',108.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4944,4,4,'2019-08-21 15:10:22',109.250000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4945,4,4,'2019-08-21 15:10:22',109.576000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4946,4,4,'2019-08-21 15:10:22',110.016000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4947,4,4,'2019-08-21 15:10:22',110.965000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4948,4,4,'2019-08-21 15:10:22',111.913000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4949,4,4,'2019-08-21 15:10:22',112.879000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4950,4,4,'2019-08-21 15:10:22',113.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4951,4,4,'2019-08-21 15:10:22',113.645000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4952,4,4,'2019-08-21 15:10:22',114.610000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4953,4,4,'2019-08-21 15:10:22',114.967000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4954,4,4,'2019-08-21 15:10:22',115.493000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4955,4,4,'2019-08-21 15:10:22',116.275000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4956,4,4,'2019-08-21 15:10:22',117.074000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4957,4,4,'2019-08-21 15:10:22',117.456000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4958,4,4,'2019-08-21 15:10:22',118.090000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4959,4,4,'2019-08-21 15:10:22',119.039000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4960,4,4,'2019-08-21 15:10:22',119.938000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4961,4,4,'2019-08-21 15:10:22',120.837000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4962,4,4,'2019-08-21 15:10:22',121.619000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4963,4,4,'2019-08-21 15:10:22',121.990000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4964,4,4,'2019-08-21 15:10:22',122.502000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4965,4,4,'2019-08-21 15:10:22',123.301000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4966,4,4,'2019-08-21 15:10:22',123.673000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4967,4,4,'2019-08-21 15:10:22',124.184000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4968,4,4,'2019-08-21 15:10:22',125.082000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4969,4,4,'2019-08-21 15:10:22',126.015000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4970,4,4,'2019-08-21 15:10:22',126.847000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4971,4,4,'2019-08-21 15:10:22',127.663000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4972,4,4,'2019-08-21 15:10:22',128.429000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4973,4,4,'2019-08-21 15:10:22',128.792000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4974,4,4,'2019-08-21 15:10:22',129.378000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4975,4,4,'2019-08-21 15:10:22',129.699000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4976,4,4,'2019-08-21 15:10:22',130.260000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4977,4,4,'2019-08-21 15:10:22',130.626000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4978,4,4,'2019-08-21 15:10:22',131.109000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4979,4,4,'2019-08-21 15:10:22',131.875000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4980,4,4,'2019-08-21 15:10:22',132.791000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4981,4,4,'2019-08-21 15:10:22',133.590000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4982,4,4,'2019-08-21 15:10:22',134.032000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4983,4,4,'2019-08-21 15:10:22',134.672000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4984,4,4,'2019-08-21 15:10:22',135.521000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4985,4,4,'2019-08-21 15:10:22',135.876000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4986,4,4,'2019-08-21 15:10:22',136.470000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4987,4,4,'2019-08-21 15:10:22',137.369000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4988,4,4,'2019-08-21 15:10:22',137.720000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4989,4,4,'2019-08-21 15:10:22',138.335000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4990,4,4,'2019-08-21 15:10:22',139.233000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4991,4,4,'2019-08-21 15:10:22',140.116000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4992,4,4,'2019-08-21 15:10:22',141.031000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4993,4,4,'2019-08-21 15:10:22',141.338000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4994,4,4,'2019-08-21 15:10:22',141.947000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4995,4,4,'2019-08-21 15:10:22',142.325000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4996,4,4,'2019-08-21 15:10:22',142.713000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4997,4,4,'2019-08-21 15:10:22',143.529000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4998,4,4,'2019-08-21 15:10:22',144.345000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (4999,4,4,'2019-08-21 15:10:22',145.110000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5000,4,4,'2019-08-21 15:10:22',146.109000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5001,4,4,'2019-08-21 15:10:22',146.467000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5002,4,4,'2019-08-21 15:10:22',147.009000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5003,4,4,'2019-08-21 15:10:22',147.924000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5004,4,4,'2019-08-21 15:10:22',148.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5005,4,4,'2019-08-21 15:10:22',148.823000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5006,4,4,'2019-08-21 15:10:22',149.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5007,4,4,'2019-08-21 15:10:22',150.555000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5008,4,4,'2019-08-21 15:10:22',151.470000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5009,4,4,'2019-08-21 15:10:22',152.336000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5010,4,4,'2019-08-21 15:10:22',152.674000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5011,4,4,'2019-08-21 15:10:22',153.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5012,4,4,'2019-08-21 15:10:22',153.884000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5013,4,4,'2019-08-21 15:10:22',154.266000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5014,4,4,'2019-08-21 15:10:22',154.767000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5015,4,4,'2019-08-21 15:10:22',155.749000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5016,4,4,'2019-08-21 15:10:22',156.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5017,4,4,'2019-08-21 15:10:22',157.480000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5018,4,4,'2019-08-21 15:10:22',158.296000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5019,4,4,'2019-08-21 15:10:22',158.659000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5020,4,4,'2019-08-21 15:10:22',159.278000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5021,4,4,'2019-08-21 15:10:22',160.127000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5022,4,4,'2019-08-21 15:10:22',160.910000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5023,4,4,'2019-08-21 15:10:22',161.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5024,4,4,'2019-08-21 15:10:22',161.842000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5025,4,4,'2019-08-21 15:10:22',162.317000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5026,4,4,'2019-08-21 15:10:22',162.642000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5027,4,4,'2019-08-21 15:10:22',162.982000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5028,4,4,'2019-08-21 15:10:22',163.424000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5029,4,4,'2019-08-21 15:10:22',164.306000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5030,4,4,'2019-08-21 15:10:22',165.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5031,4,4,'2019-08-21 15:10:22',166.104000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5032,4,4,'2019-08-21 15:10:22',167.120000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5033,4,4,'2019-08-21 15:10:22',167.446000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5034,4,4,'2019-08-21 15:10:22',167.969000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5035,4,4,'2019-08-21 15:10:22',168.918000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5036,4,4,'2019-08-21 15:10:22',169.767000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5037,4,4,'2019-08-21 15:10:22',170.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5038,4,4,'2019-08-21 15:10:22',170.749000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5039,4,4,'2019-08-21 15:10:22',171.599000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5040,4,4,'2019-08-21 15:10:22',172.480000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5041,4,4,'2019-08-21 15:10:22',172.807000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5042,4,4,'2019-08-21 15:10:22',173.463000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5043,4,4,'2019-08-21 15:10:22',174.229000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5044,4,4,'2019-08-21 15:10:22',175.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5045,4,4,'2019-08-21 15:10:22',176.026000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5046,4,4,'2019-08-21 15:10:22',176.859000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5047,4,4,'2019-08-21 15:10:22',177.210000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5048,4,4,'2019-08-21 15:10:22',177.858000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5049,4,4,'2019-08-21 15:10:22',178.740000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5050,4,4,'2019-08-21 15:10:22',179.706000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5051,4,4,'2019-08-21 15:10:22',180.672000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5052,4,4,'2019-08-21 15:10:22',180.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5053,4,4,'2019-08-21 15:10:22',181.537000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5054,4,4,'2019-08-21 15:10:22',182.437000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5055,4,4,'2019-08-21 15:10:22',182.863000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5056,4,4,'2019-08-21 15:10:22',183.402000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5057,4,4,'2019-08-21 15:10:22',184.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5058,4,4,'2019-08-21 15:10:22',185.200000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5059,4,4,'2019-08-21 15:10:22',185.544000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5060,4,4,'2019-08-21 15:10:22',186.115000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5061,4,4,'2019-08-21 15:10:22',186.562000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5062,4,4,'2019-08-21 15:10:22',187.031000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5063,4,4,'2019-08-21 15:10:22',187.797000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5064,4,4,'2019-08-21 15:10:22',188.680000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5065,4,4,'2019-08-21 15:10:22',189.662000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5066,4,4,'2019-08-21 15:10:22',190.428000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5067,4,4,'2019-08-21 15:10:22',191.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5068,4,4,'2019-08-21 15:10:22',191.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5069,4,4,'2019-08-21 15:10:22',192.242000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5070,4,4,'2019-08-21 15:10:22',192.628000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5071,4,4,'2019-08-21 15:10:22',193.092000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5072,4,4,'2019-08-21 15:10:22',194.040000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5073,4,4,'2019-08-21 15:10:22',194.371000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5074,4,4,'2019-08-21 15:10:22',194.840000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5075,4,4,'2019-08-21 15:10:22',195.146000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5076,4,4,'2019-08-21 15:10:22',195.821000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5077,4,4,'2019-08-21 15:10:22',196.721000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5078,4,4,'2019-08-21 15:10:22',197.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5079,4,4,'2019-08-21 15:10:22',198.369000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5080,4,4,'2019-08-21 15:10:22',199.201000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5081,4,4,'2019-08-21 15:10:22',200.034000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5082,4,4,'2019-08-21 15:10:22',200.850000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5083,4,4,'2019-08-21 15:10:22',201.192000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5084,4,4,'2019-08-21 15:10:22',201.849000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5085,4,4,'2019-08-21 15:10:22',202.747000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5086,4,4,'2019-08-21 15:10:22',202.996000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5087,4,4,'2019-08-21 15:10:22',203.729000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5088,4,4,'2019-08-21 15:10:22',204.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5089,4,4,'2019-08-21 15:10:22',205.545000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5090,4,4,'2019-08-21 15:10:22',205.878000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5091,4,4,'2019-08-21 15:10:22',206.460000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5092,4,4,'2019-08-21 15:10:22',207.442000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5093,4,4,'2019-08-21 15:10:22',208.225000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5094,4,4,'2019-08-21 15:10:22',209.240000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5095,4,4,'2019-08-21 15:10:22',209.597000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5096,4,4,'2019-08-21 15:10:22',210.173000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5097,4,4,'2019-08-21 15:10:22',211.122000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5098,4,4,'2019-08-21 15:10:22',211.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5099,4,4,'2019-08-21 15:10:22',212.720000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5100,4,4,'2019-08-21 15:10:22',212.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5101,4,4,'2019-08-21 15:10:22',213.652000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5102,4,4,'2019-08-21 15:10:22',214.618000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5103,4,4,'2019-08-21 15:10:22',214.927000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5104,4,4,'2019-08-21 15:10:22',215.533000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5105,4,4,'2019-08-21 15:10:22',215.935000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5106,4,4,'2019-08-21 15:10:22',216.399000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5107,4,4,'2019-08-21 15:10:22',217.182000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5108,4,4,'2019-08-21 15:10:22',217.477000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5109,4,4,'2019-08-21 15:10:22',218.131000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5110,4,4,'2019-08-21 15:10:22',219.046000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5111,4,4,'2019-08-21 15:10:22',220.045000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5112,4,4,'2019-08-21 15:10:22',220.961000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5113,4,4,'2019-08-21 15:10:22',221.776000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5114,4,4,'2019-08-21 15:10:22',222.560000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5115,4,4,'2019-08-21 15:10:22',222.907000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5116,4,4,'2019-08-21 15:10:22',223.491000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5117,4,4,'2019-08-21 15:10:22',224.490000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5118,4,4,'2019-08-21 15:10:22',224.752000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5119,4,4,'2019-08-21 15:10:22',225.356000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5120,4,4,'2019-08-21 15:10:22',226.288000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5121,4,4,'2019-08-21 15:10:22',227.121000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5122,4,4,'2019-08-21 15:10:22',228.070000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5123,4,4,'2019-08-21 15:10:22',229.052000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5124,4,4,'2019-08-21 15:10:22',229.417000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5125,4,4,'2019-08-21 15:10:22',229.968000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5126,4,4,'2019-08-21 15:10:22',230.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5127,4,4,'2019-08-21 15:10:22',230.917000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5128,4,4,'2019-08-21 15:10:22',231.799000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5129,4,4,'2019-08-21 15:10:22',232.665000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5130,4,4,'2019-08-21 15:10:22',233.024000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5131,4,4,'2019-08-21 15:10:22',233.464000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5132,4,4,'2019-08-21 15:10:22',234.463000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5133,4,4,'2019-08-21 15:10:22',235.346000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5134,4,4,'2019-08-21 15:10:22',236.311000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5135,4,4,'2019-08-21 15:10:22',236.632000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5136,4,4,'2019-08-21 15:10:22',237.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5137,4,4,'2019-08-21 15:10:22',238.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5138,4,4,'2019-08-21 15:10:22',238.566000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5139,4,4,'2019-08-21 15:10:22',239.175000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5140,4,4,'2019-08-21 15:10:22',240.073000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5141,4,4,'2019-08-21 15:10:22',240.923000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5142,4,4,'2019-08-21 15:10:22',241.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5143,4,4,'2019-08-21 15:10:22',241.805000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5144,4,4,'2019-08-21 15:10:22',242.704000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5145,4,4,'2019-08-21 15:10:22',243.503000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5146,4,4,'2019-08-21 15:10:22',243.867000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5147,4,4,'2019-08-21 15:10:22',244.353000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5148,4,4,'2019-08-21 15:10:22',245.284000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5149,4,4,'2019-08-21 15:10:22',246.233000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5150,4,4,'2019-08-21 15:10:22',247.082000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5151,4,4,'2019-08-21 15:10:22',247.454000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5152,4,4,'2019-08-21 15:10:22',248.031000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5153,4,4,'2019-08-21 15:10:22',248.997000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5154,4,4,'2019-08-21 15:10:22',249.763000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5155,4,4,'2019-08-21 15:10:22',250.125000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5156,4,4,'2019-08-21 15:10:22',250.612000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5157,4,4,'2019-08-21 15:10:22',251.478000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5158,4,4,'2019-08-21 15:10:22',251.798000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5159,4,4,'2019-08-21 15:10:22',252.327000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5160,4,4,'2019-08-21 15:10:22',253.226000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5161,4,4,'2019-08-21 15:10:22',253.581000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5162,4,4,'2019-08-21 15:10:22',253.991000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5163,4,4,'2019-08-21 15:10:22',254.974000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5164,4,4,'2019-08-21 15:10:22',255.756000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5165,4,4,'2019-08-21 15:10:22',256.539000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5166,4,4,'2019-08-21 15:10:22',257.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5167,4,4,'2019-08-21 15:10:22',257.753000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5168,4,4,'2019-08-21 15:10:22',258.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5169,4,4,'2019-08-21 15:10:22',258.780000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5170,4,4,'2019-08-21 15:10:22',259.186000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5171,4,4,'2019-08-21 15:10:22',259.557000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5172,4,4,'2019-08-21 15:10:22',260.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5173,4,4,'2019-08-21 15:10:22',260.934000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5174,4,4,'2019-08-21 15:10:22',261.733000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5175,4,4,'2019-08-21 15:10:22',262.698000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5176,4,4,'2019-08-21 15:10:22',263.647000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5177,4,4,'2019-08-21 15:10:22',264.530000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5178,4,4,'2019-08-21 15:10:22',264.856000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5179,4,4,'2019-08-21 15:10:22',265.429000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5180,4,4,'2019-08-21 15:10:22',266.212000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5181,4,4,'2019-08-21 15:10:22',267.027000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5182,4,4,'2019-08-21 15:10:22',267.406000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5183,4,4,'2019-08-21 15:10:22',267.810000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5184,4,4,'2019-08-21 15:10:22',268.676000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5185,4,4,'2019-08-21 15:10:22',269.541000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5186,4,4,'2019-08-21 15:10:22',270.507000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5187,4,4,'2019-08-21 15:10:22',270.853000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5188,4,4,'2019-08-21 15:10:22',271.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5189,4,4,'2019-08-21 15:10:22',271.830000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5190,4,4,'2019-08-21 15:10:22',272.271000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5191,4,4,'2019-08-21 15:10:22',273.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5192,4,4,'2019-08-21 15:10:22',274.020000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5193,4,4,'2019-08-21 15:10:22',274.952000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5194,4,4,'2019-08-21 15:10:22',275.768000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5195,4,4,'2019-08-21 15:10:22',276.617000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5196,4,4,'2019-08-21 15:10:22',276.949000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5197,4,4,'2019-08-21 15:10:22',277.616000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5198,4,4,'2019-08-21 15:10:22',278.515000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5199,4,4,'2019-08-21 15:10:22',278.833000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5200,4,4,'2019-08-21 15:10:22',279.431000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5201,4,4,'2019-08-21 15:10:22',280.380000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5202,4,4,'2019-08-21 15:10:22',280.728000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5203,4,4,'2019-08-21 15:10:22',281.328000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5204,4,4,'2019-08-21 15:10:22',282.128000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5205,4,4,'2019-08-21 15:10:22',283.093000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5206,4,4,'2019-08-21 15:10:22',283.876000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5207,4,4,'2019-08-21 15:10:22',284.295000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5208,4,4,'2019-08-21 15:10:22',326.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5209,4,4,'2019-08-21 15:10:22',352.135000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5210,4,4,'2019-08-21 15:10:22',352.649000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5211,4,4,'2019-08-21 15:10:22',352.916000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5212,4,4,'2019-08-21 15:10:22',353.865000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5213,4,4,'2019-08-21 15:10:22',354.798000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5214,4,4,'2019-08-21 15:10:22',355.663000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5215,4,4,'2019-08-21 15:10:22',356.513000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5216,4,4,'2019-08-21 15:10:22',356.861000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5217,4,4,'2019-08-21 15:10:22',357.495000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5218,4,4,'2019-08-21 15:10:22',358.427000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5219,4,4,'2019-08-21 15:10:22',358.785000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5220,4,4,'2019-08-21 15:10:22',359.442000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5221,4,4,'2019-08-21 15:10:22',359.793000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5222,4,4,'2019-08-21 15:10:22',360.325000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5223,4,4,'2019-08-21 15:10:22',361.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5224,4,4,'2019-08-21 15:10:22',362.106000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5225,4,4,'2019-08-21 15:10:22',362.905000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5226,4,4,'2019-08-21 15:10:22',363.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5227,4,4,'2019-08-21 15:10:22',364.177000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5228,4,4,'2019-08-21 15:10:22',364.687000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5229,4,4,'2019-08-21 15:10:22',365.652000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5230,4,4,'2019-08-21 15:10:22',366.485000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5231,4,4,'2019-08-21 15:10:22',367.251000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5232,4,4,'2019-08-21 15:10:22',367.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5233,4,4,'2019-08-21 15:10:22',368.166000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5234,4,4,'2019-08-21 15:10:22',368.641000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5235,4,4,'2019-08-21 15:10:22',369.099000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5236,4,4,'2019-08-21 15:10:22',370.081000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5237,4,4,'2019-08-21 15:10:22',371.097000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5238,4,4,'2019-08-21 15:10:22',371.492000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5239,4,4,'2019-08-21 15:10:22',372.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5240,4,4,'2019-08-21 15:10:22',372.944000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5241,4,4,'2019-08-21 15:10:22',373.761000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5242,4,4,'2019-08-21 15:10:22',374.692000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5243,4,4,'2019-08-21 15:10:22',375.069000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5244,4,4,'2019-08-21 15:10:22',375.691000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5245,4,4,'2019-08-21 15:10:22',376.641000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5246,4,4,'2019-08-21 15:10:22',376.964000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5247,4,4,'2019-08-21 15:10:22',377.556000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5248,4,4,'2019-08-21 15:10:22',378.521000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5249,4,4,'2019-08-21 15:10:22',379.338000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5250,4,4,'2019-08-21 15:10:22',380.319000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5251,4,4,'2019-08-21 15:10:22',380.793000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5252,4,4,'2019-08-21 15:10:22',381.169000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5253,4,4,'2019-08-21 15:10:22',381.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5254,4,4,'2019-08-21 15:10:22',382.135000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5255,4,4,'2019-08-21 15:10:22',383.017000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5256,4,4,'2019-08-21 15:10:22',383.883000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5257,4,4,'2019-08-21 15:10:22',384.849000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5258,4,4,'2019-08-21 15:10:22',385.166000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5259,4,4,'2019-08-21 15:10:22',385.614000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5260,4,4,'2019-08-21 15:10:22',386.413000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5261,4,4,'2019-08-21 15:10:22',387.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5262,4,4,'2019-08-21 15:10:22',387.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5263,4,4,'2019-08-21 15:10:22',388.145000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5264,4,4,'2019-08-21 15:10:22',389.027000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5265,4,4,'2019-08-21 15:10:22',389.926000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5266,4,4,'2019-08-21 15:10:22',390.875000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5267,4,4,'2019-08-21 15:10:22',391.242000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5268,4,4,'2019-08-21 15:10:22',391.641000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5269,4,4,'2019-08-21 15:10:22',392.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5270,4,4,'2019-08-21 15:10:22',393.239000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5271,4,4,'2019-08-21 15:10:22',394.088000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5272,4,4,'2019-08-21 15:10:22',394.406000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5273,4,4,'2019-08-21 15:10:22',394.938000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5274,4,4,'2019-08-21 15:10:22',395.736000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5275,4,4,'2019-08-21 15:10:22',396.735000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5276,4,4,'2019-08-21 15:10:22',397.567000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5277,4,4,'2019-08-21 15:10:22',398.517000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5278,4,4,'2019-08-21 15:10:22',399.102000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5279,4,4,'2019-08-21 15:10:22',399.516000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5280,4,4,'2019-08-21 15:10:22',399.928000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5281,4,4,'2019-08-21 15:10:22',400.448000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5282,4,4,'2019-08-21 15:10:22',401.280000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5283,4,4,'2019-08-21 15:10:22',402.146000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5284,4,4,'2019-08-21 15:10:22',402.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5285,4,4,'2019-08-21 15:10:22',403.354000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5286,4,4,'2019-08-21 15:10:22',403.978000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5287,4,4,'2019-08-21 15:10:22',404.793000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5288,4,4,'2019-08-21 15:10:22',405.107000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5289,4,4,'2019-08-21 15:10:22',405.809000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5290,4,4,'2019-08-21 15:10:22',406.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5291,4,4,'2019-08-21 15:10:22',407.623000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5292,4,4,'2019-08-21 15:10:22',407.989000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5293,4,4,'2019-08-21 15:10:22',408.522000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5294,4,4,'2019-08-21 15:10:22',409.388000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5295,4,4,'2019-08-21 15:10:22',410.287000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5296,4,4,'2019-08-21 15:10:22',410.670000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5297,4,4,'2019-08-21 15:10:22',411.152000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5298,4,4,'2019-08-21 15:10:22',412.118000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5299,4,4,'2019-08-21 15:10:22',412.951000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5300,4,4,'2019-08-21 15:10:22',413.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5301,4,4,'2019-08-21 15:10:22',413.833000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5302,4,4,'2019-08-21 15:10:22',414.699000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5303,4,4,'2019-08-21 15:10:22',415.564000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5304,4,4,'2019-08-21 15:10:22',416.000000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5305,4,4,'2019-08-21 15:10:22',416.347000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5306,4,4,'2019-08-21 15:10:22',416.796000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5307,4,4,'2019-08-21 15:10:22',417.279000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5308,4,4,'2019-08-21 15:10:22',418.229000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5309,4,4,'2019-08-21 15:10:22',419.194000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5310,4,4,'2019-08-21 15:10:22',420.143000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5311,4,4,'2019-08-21 15:10:22',421.009000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5312,4,4,'2019-08-21 15:10:22',421.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5313,4,4,'2019-08-21 15:10:22',421.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5314,4,4,'2019-08-21 15:10:22',422.823000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5315,4,4,'2019-08-21 15:10:22',423.656000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5316,4,4,'2019-08-21 15:10:22',424.538000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5317,4,4,'2019-08-21 15:10:22',424.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5318,4,4,'2019-08-21 15:10:22',425.388000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5319,4,4,'2019-08-21 15:10:22',426.319000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5320,4,4,'2019-08-21 15:10:22',426.651000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5321,4,4,'2019-08-21 15:10:22',427.235000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5322,4,4,'2019-08-21 15:10:22',428.101000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5323,4,4,'2019-08-21 15:10:22',428.616000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5324,4,4,'2019-08-21 15:10:22',429.083000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5325,4,4,'2019-08-21 15:10:22',429.949000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5326,4,4,'2019-08-21 15:10:22',430.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5327,4,4,'2019-08-21 15:10:22',430.781000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5328,4,4,'2019-08-21 15:10:22',431.664000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5329,4,4,'2019-08-21 15:10:22',432.446000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5330,4,4,'2019-08-21 15:10:22',433.445000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5331,4,4,'2019-08-21 15:10:22',434.327000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5332,4,4,'2019-08-21 15:10:22',434.723000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5333,4,4,'2019-08-21 15:10:22',435.276000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5334,4,4,'2019-08-21 15:10:22',436.242000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5335,4,4,'2019-08-21 15:10:22',437.225000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5336,4,4,'2019-08-21 15:10:22',437.534000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5337,4,4,'2019-08-21 15:10:22',438.023000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5338,4,4,'2019-08-21 15:10:22',439.006000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5339,4,4,'2019-08-21 15:10:22',439.872000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5340,4,4,'2019-08-21 15:10:22',440.704000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5341,4,4,'2019-08-21 15:10:22',441.030000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5342,4,4,'2019-08-21 15:10:22',441.586000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5343,4,4,'2019-08-21 15:10:22',441.957000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5344,4,4,'2019-08-21 15:10:22',442.585000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5345,4,4,'2019-08-21 15:10:22',443.401000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5346,4,4,'2019-08-21 15:10:22',444.250000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5347,4,4,'2019-08-21 15:10:22',444.628000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5348,4,4,'2019-08-21 15:10:22',445.115000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5349,4,4,'2019-08-21 15:10:22',445.948000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5350,4,4,'2019-08-21 15:10:22',446.964000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5351,4,4,'2019-08-21 15:10:22',447.218000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5352,4,4,'2019-08-21 15:10:22',447.746000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5353,4,4,'2019-08-21 15:10:22',448.612000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5354,4,4,'2019-08-21 15:10:22',449.001000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5355,4,4,'2019-08-21 15:10:22',449.428000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5356,4,4,'2019-08-21 15:10:22',450.260000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5357,4,4,'2019-08-21 15:10:22',451.176000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5358,4,4,'2019-08-21 15:10:22',451.460000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5359,4,4,'2019-08-21 15:10:22',452.059000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5360,4,4,'2019-08-21 15:10:22',452.891000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5361,4,4,'2019-08-21 15:10:22',453.756000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5362,4,4,'2019-08-21 15:10:22',454.120000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5363,4,4,'2019-08-21 15:10:22',454.705000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5364,4,4,'2019-08-21 15:10:22',455.704000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5365,4,4,'2019-08-21 15:10:22',456.536000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5366,4,4,'2019-08-21 15:10:22',457.353000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5367,4,4,'2019-08-21 15:10:22',457.667000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5368,4,4,'2019-08-21 15:10:22',458.168000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5369,4,4,'2019-08-21 15:10:22',459.134000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5370,4,4,'2019-08-21 15:10:22',459.999000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5371,4,4,'2019-08-21 15:10:22',460.316000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5372,4,4,'2019-08-21 15:10:22',460.965000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5373,4,4,'2019-08-21 15:10:22',461.947000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5374,4,4,'2019-08-21 15:10:22',462.252000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5375,4,4,'2019-08-21 15:10:22',462.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5376,4,4,'2019-08-21 15:10:22',463.562000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5377,4,4,'2019-08-21 15:10:22',464.411000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5378,4,4,'2019-08-21 15:10:22',464.801000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5379,4,4,'2019-08-21 15:10:22',465.377000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5380,4,4,'2019-08-21 15:10:22',465.778000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5381,4,4,'2019-08-21 15:10:22',466.226000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5382,4,4,'2019-08-21 15:10:22',467.025000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5383,4,4,'2019-08-21 15:10:22',467.824000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5384,4,4,'2019-08-21 15:10:22',468.623000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5385,4,4,'2019-08-21 15:10:22',469.556000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5386,4,4,'2019-08-21 15:10:22',469.869000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5387,4,4,'2019-08-21 15:10:22',470.338000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5388,4,4,'2019-08-21 15:10:22',471.237000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5389,4,4,'2019-08-21 15:10:22',472.236000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5390,4,4,'2019-08-21 15:10:22',473.252000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5391,4,4,'2019-08-21 15:10:22',473.548000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5392,4,4,'2019-08-21 15:10:22',474.051000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5393,4,4,'2019-08-21 15:10:22',475.017000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5394,4,4,'2019-08-21 15:10:22',476.016000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5395,4,4,'2019-08-21 15:10:22',476.399000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5396,4,4,'2019-08-21 15:10:22',476.848000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5397,4,4,'2019-08-21 15:10:22',477.205000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5398,4,4,'2019-08-21 15:10:22',477.730000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5399,4,4,'2019-08-21 15:10:22',478.695000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5400,4,4,'2019-08-21 15:10:22',479.545000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5401,4,4,'2019-08-21 15:10:22',480.460000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5402,4,4,'2019-08-21 15:10:22',480.793000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5403,4,4,'2019-08-21 15:10:22',481.260000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5404,4,4,'2019-08-21 15:10:22',482.108000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5405,4,4,'2019-08-21 15:10:22',483.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5406,4,4,'2019-08-21 15:10:22',483.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5407,4,4,'2019-08-21 15:10:22',484.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5408,4,4,'2019-08-21 15:10:22',484.855000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5409,4,4,'2019-08-21 15:10:22',485.805000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5410,4,4,'2019-08-21 15:10:22',486.754000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5411,4,4,'2019-08-21 15:10:22',487.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5412,4,4,'2019-08-21 15:10:22',487.636000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5413,4,4,'2019-08-21 15:10:22',488.502000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5414,4,4,'2019-08-21 15:10:22',488.884000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5415,4,4,'2019-08-21 15:10:22',489.400000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5416,4,4,'2019-08-21 15:10:22',490.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5417,4,4,'2019-08-21 15:10:22',491.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5418,4,4,'2019-08-21 15:10:22',492.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5419,4,4,'2019-08-21 15:10:22',492.451000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5420,4,4,'2019-08-21 15:10:22',493.097000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5421,4,4,'2019-08-21 15:10:22',493.962000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5422,4,4,'2019-08-21 15:10:22',494.729000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5423,4,4,'2019-08-21 15:10:22',495.111000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5424,4,4,'2019-08-21 15:10:22',495.577000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5425,4,4,'2019-08-21 15:10:22',496.460000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5426,4,4,'2019-08-21 15:10:22',497.442000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5427,4,4,'2019-08-21 15:10:22',497.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5428,4,4,'2019-08-21 15:10:22',498.440000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5429,4,4,'2019-08-21 15:10:22',498.830000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5430,4,4,'2019-08-21 15:10:22',499.323000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5431,4,4,'2019-08-21 15:10:22',500.122000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5432,4,4,'2019-08-21 15:10:22',501.005000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5433,4,4,'2019-08-21 15:10:22',501.870000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5434,4,4,'2019-08-21 15:10:22',502.256000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5435,4,4,'2019-08-21 15:10:22',502.687000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5436,4,4,'2019-08-21 15:10:22',503.485000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5437,4,4,'2019-08-21 15:10:22',504.268000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5438,4,4,'2019-08-21 15:10:22',505.033000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5439,4,4,'2019-08-21 15:10:22',505.490000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5440,4,4,'2019-08-21 15:10:22',505.883000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5441,4,4,'2019-08-21 15:10:22',506.815000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5442,4,4,'2019-08-21 15:10:22',507.714000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5443,4,4,'2019-08-21 15:10:22',508.530000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5444,4,4,'2019-08-21 15:10:22',509.362000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5445,4,4,'2019-08-21 15:10:22',510.194000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5446,4,4,'2019-08-21 15:10:22',510.549000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5447,4,4,'2019-08-21 15:10:22',511.177000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5448,4,4,'2019-08-21 15:10:22',511.606000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5449,4,4,'2019-08-21 15:10:22',511.992000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5450,4,4,'2019-08-21 15:10:22',512.842000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5451,4,4,'2019-08-21 15:10:22',513.841000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5452,4,4,'2019-08-21 15:10:22',514.689000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5453,4,4,'2019-08-21 15:10:22',515.033000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5454,4,4,'2019-08-21 15:10:22',515.522000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5455,4,4,'2019-08-21 15:10:22',515.890000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5456,4,4,'2019-08-21 15:10:22',516.288000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5457,4,4,'2019-08-21 15:10:22',517.054000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5458,4,4,'2019-08-21 15:10:22',517.391000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5459,4,4,'2019-08-21 15:10:22',518.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5460,4,4,'2019-08-21 15:10:22',518.318000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5461,4,4,'2019-08-21 15:10:22',518.936000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5462,4,4,'2019-08-21 15:10:22',519.701000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5463,4,4,'2019-08-21 15:10:22',520.667000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5464,4,4,'2019-08-21 15:10:22',521.599000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5465,4,4,'2019-08-21 15:10:22',522.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5466,4,4,'2019-08-21 15:10:22',523.514000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5467,4,4,'2019-08-21 15:10:22',524.362000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5468,4,4,'2019-08-21 15:10:22',524.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5469,4,4,'2019-08-21 15:10:22',525.229000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5470,4,4,'2019-08-21 15:10:22',526.211000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5471,4,4,'2019-08-21 15:10:22',526.581000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5472,4,4,'2019-08-21 15:10:22',527.010000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5473,4,4,'2019-08-21 15:10:22',527.992000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5474,4,4,'2019-08-21 15:10:22',528.284000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5475,4,4,'2019-08-21 15:10:22',528.857000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5476,4,4,'2019-08-21 15:10:22',529.807000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5477,4,4,'2019-08-21 15:10:22',530.756000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5478,4,4,'2019-08-21 15:10:22',531.737000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5479,4,4,'2019-08-21 15:10:22',532.083000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5480,4,4,'2019-08-21 15:10:22',532.720000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5481,4,4,'2019-08-21 15:10:22',533.536000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5482,4,4,'2019-08-21 15:10:22',534.468000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5483,4,4,'2019-08-21 15:10:22',535.301000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5484,4,4,'2019-08-21 15:10:22',535.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5485,4,4,'2019-08-21 15:10:22',536.283000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5486,4,4,'2019-08-21 15:10:22',537.165000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5487,4,4,'2019-08-21 15:10:22',537.574000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5488,4,4,'2019-08-21 15:10:22',538.064000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5489,4,4,'2019-08-21 15:10:22',538.863000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5490,4,4,'2019-08-21 15:10:22',539.779000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5491,4,4,'2019-08-21 15:10:22',540.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5492,4,4,'2019-08-21 15:10:22',541.594000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5493,4,4,'2019-08-21 15:10:22',541.928000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5494,4,4,'2019-08-21 15:10:22',542.359000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5495,4,4,'2019-08-21 15:10:22',543.016000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5496,4,4,'2019-08-21 15:10:22',543.142000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5497,4,4,'2019-08-21 15:10:22',544.141000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5498,4,4,'2019-08-21 15:10:22',544.974000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5499,4,4,'2019-08-21 15:10:22',545.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5500,4,4,'2019-08-21 15:10:22',546.638000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5501,4,4,'2019-08-21 15:10:22',546.986000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5502,4,4,'2019-08-21 15:10:22',547.570000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5503,4,4,'2019-08-21 15:10:22',547.934000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5504,4,4,'2019-08-21 15:10:22',548.586000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5505,4,4,'2019-08-21 15:10:22',549.436000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5506,4,4,'2019-08-21 15:10:22',550.284000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5507,4,4,'2019-08-21 15:10:22',551.184000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5508,4,4,'2019-08-21 15:10:22',551.440000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5509,4,4,'2019-08-21 15:10:22',552.032000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5510,4,4,'2019-08-21 15:10:22',552.864000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5511,4,4,'2019-08-21 15:10:22',553.647000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5512,4,4,'2019-08-21 15:10:22',553.970000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5513,4,4,'2019-08-21 15:10:22',554.562000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5514,4,4,'2019-08-21 15:10:22',555.379000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5515,4,4,'2019-08-21 15:10:22',555.773000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5516,4,4,'2019-08-21 15:10:22',556.361000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5517,4,4,'2019-08-21 15:10:22',557.144000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5518,4,4,'2019-08-21 15:10:22',557.959000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5519,4,4,'2019-08-21 15:10:22',558.282000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5520,4,4,'2019-08-21 15:10:22',558.925000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5521,4,4,'2019-08-21 15:10:22',559.740000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5522,4,4,'2019-08-21 15:10:22',560.523000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5523,4,4,'2019-08-21 15:10:22',560.902000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5524,4,4,'2019-08-21 15:10:22',561.322000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5525,4,4,'2019-08-21 15:10:22',562.154000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5526,4,4,'2019-08-21 15:10:22',562.565000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5527,4,4,'2019-08-21 15:10:22',563.153000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5528,4,4,'2019-08-21 15:10:22',563.986000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5529,4,4,'2019-08-21 15:10:22',564.951000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5530,4,4,'2019-08-21 15:10:22',565.867000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5531,4,4,'2019-08-21 15:10:22',566.816000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5532,4,4,'2019-08-21 15:10:22',567.190000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5533,4,4,'2019-08-21 15:10:22',567.782000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5534,4,4,'2019-08-21 15:10:22',568.564000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5535,4,4,'2019-08-21 15:10:22',569.363000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5536,4,4,'2019-08-21 15:10:22',569.739000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5537,4,4,'2019-08-21 15:10:22',570.263000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5538,4,4,'2019-08-21 15:10:22',571.128000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5539,4,4,'2019-08-21 15:10:22',571.442000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5540,4,4,'2019-08-21 15:10:22',571.944000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5541,4,4,'2019-08-21 15:10:22',572.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5542,4,4,'2019-08-21 15:10:22',572.893000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5543,4,4,'2019-08-21 15:10:22',573.775000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5544,4,4,'2019-08-21 15:10:22',574.574000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5545,4,4,'2019-08-21 15:10:22',575.407000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5546,4,4,'2019-08-21 15:10:22',576.206000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5547,4,4,'2019-08-21 15:10:22',577.055000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5548,4,4,'2019-08-21 15:10:22',577.904000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5549,4,4,'2019-08-21 15:10:22',578.670000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5550,4,4,'2019-08-21 15:10:22',579.021000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5551,4,4,'2019-08-21 15:10:22',579.469000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5552,4,4,'2019-08-21 15:10:22',579.957000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5553,4,4,'2019-08-21 15:10:22',580.418000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5554,4,4,'2019-08-21 15:10:22',580.824000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5555,4,4,'2019-08-21 15:10:22',581.250000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5556,4,4,'2019-08-21 15:10:22',582.116000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5557,4,4,'2019-08-21 15:10:22',582.517000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5558,4,4,'2019-08-21 15:10:22',583.115000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5559,4,4,'2019-08-21 15:10:22',584.081000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5560,4,4,'2019-08-21 15:10:22',584.880000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5561,4,4,'2019-08-21 15:10:22',585.846000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5562,4,4,'2019-08-21 15:10:22',586.661000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5563,4,4,'2019-08-21 15:10:22',587.627000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5564,4,4,'2019-08-21 15:10:22',587.958000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5565,4,4,'2019-08-21 15:10:22',588.409000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5566,4,4,'2019-08-21 15:10:22',589.358000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5567,4,4,'2019-08-21 15:10:22',589.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5568,4,4,'2019-08-21 15:10:22',590.141000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5569,4,4,'2019-08-21 15:10:22',590.906000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5570,4,4,'2019-08-21 15:10:22',591.739000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5571,4,4,'2019-08-21 15:10:22',592.100000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5572,4,4,'2019-08-21 15:10:22',592.538000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5573,4,4,'2019-08-21 15:10:22',593.403000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5574,4,4,'2019-08-21 15:10:22',594.386000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5575,4,4,'2019-08-21 15:10:22',594.689000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5576,4,4,'2019-08-21 15:10:22',595.202000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5577,4,4,'2019-08-21 15:10:22',596.101000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5578,4,4,'2019-08-21 15:10:22',597.033000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5579,4,4,'2019-08-21 15:10:22',597.915000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5580,4,4,'2019-08-21 15:10:22',598.217000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5581,4,4,'2019-08-21 15:10:22',598.914000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5582,4,4,'2019-08-21 15:10:22',599.863000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5583,4,4,'2019-08-21 15:10:22',600.212000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5584,4,4,'2019-08-21 15:10:22',600.679000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5585,4,4,'2019-08-21 15:10:22',601.595000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5586,4,4,'2019-08-21 15:10:22',602.561000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5587,4,4,'2019-08-21 15:10:22',602.882000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5588,4,4,'2019-08-21 15:10:22',603.477000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5589,4,4,'2019-08-21 15:10:22',604.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5590,4,4,'2019-08-21 15:10:22',604.475000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5591,4,4,'2019-08-21 15:10:22',605.424000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5592,4,4,'2019-08-21 15:10:22',606.373000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5593,4,4,'2019-08-21 15:10:22',607.389000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5594,4,4,'2019-08-21 15:10:22',608.371000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5595,4,4,'2019-08-21 15:10:22',609.319000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5596,4,4,'2019-08-21 15:10:22',610.136000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5597,4,4,'2019-08-21 15:10:22',610.540000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5598,4,4,'2019-08-21 15:10:22',611.001000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5599,4,4,'2019-08-21 15:10:22',611.801000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5600,4,4,'2019-08-21 15:10:22',612.173000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5601,4,4,'2019-08-21 15:10:22',612.782000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5602,4,4,'2019-08-21 15:10:22',613.632000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5603,4,4,'2019-08-21 15:10:22',613.946000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5604,4,4,'2019-08-21 15:10:22',614.631000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5605,4,4,'2019-08-21 15:10:22',615.446000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5606,4,4,'2019-08-21 15:10:22',616.296000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5607,4,4,'2019-08-21 15:10:22',616.576000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5608,4,4,'2019-08-21 15:10:22',617.194000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5609,4,4,'2019-08-21 15:10:22',631.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5610,4,4,'2019-08-21 15:10:22',650.756000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5611,4,4,'2019-08-21 15:10:22',651.638000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5612,4,4,'2019-08-21 15:10:22',651.952000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5613,4,4,'2019-08-21 15:10:22',652.554000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5614,4,4,'2019-08-21 15:10:22',653.486000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5615,4,4,'2019-08-21 15:10:22',654.401000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5616,4,4,'2019-08-21 15:10:22',654.673000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5617,4,4,'2019-08-21 15:10:22',655.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5618,4,4,'2019-08-21 15:10:22',656.116000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5619,4,4,'2019-08-21 15:10:22',656.999000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5620,4,4,'2019-08-21 15:10:22',657.312000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5621,4,4,'2019-08-21 15:10:22',657.798000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5622,4,4,'2019-08-21 15:10:22',658.271000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5623,4,4,'2019-08-21 15:10:22',658.613000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5624,4,4,'2019-08-21 15:10:22',659.446000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5625,4,4,'2019-08-21 15:10:22',660.262000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5626,4,4,'2019-08-21 15:10:22',661.145000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5627,4,4,'2019-08-21 15:10:22',661.344000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5628,4,4,'2019-08-21 15:10:22',661.943000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5629,4,4,'2019-08-21 15:10:22',662.810000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5630,4,4,'2019-08-21 15:10:22',663.791000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5631,4,4,'2019-08-21 15:10:22',664.074000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5632,4,4,'2019-08-21 15:10:22',664.707000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5633,4,4,'2019-08-21 15:10:22',665.556000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5634,4,4,'2019-08-21 15:10:22',666.538000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5635,4,4,'2019-08-21 15:10:22',667.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5636,4,4,'2019-08-21 15:10:22',668.370000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5637,4,4,'2019-08-21 15:10:22',668.771000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5638,4,4,'2019-08-21 15:10:22',669.152000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5639,4,4,'2019-08-21 15:10:22',669.496000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5640,4,4,'2019-08-21 15:10:22',670.135000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5641,4,4,'2019-08-21 15:10:22',670.983000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5642,4,4,'2019-08-21 15:10:22',671.866000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5643,4,4,'2019-08-21 15:10:22',672.246000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5644,4,4,'2019-08-21 15:10:22',672.865000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5645,4,4,'2019-08-21 15:10:22',673.647000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5646,4,4,'2019-08-21 15:10:22',673.909000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5647,4,4,'2019-08-21 15:10:22',674.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5648,4,4,'2019-08-21 15:10:22',675.611000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5649,4,4,'2019-08-21 15:10:22',676.395000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5650,4,4,'2019-08-21 15:10:22',677.177000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5651,4,4,'2019-08-21 15:10:22',677.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5652,4,4,'2019-08-21 15:10:22',678.759000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5653,4,4,'2019-08-21 15:10:22',679.159000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5654,4,4,'2019-08-21 15:10:22',679.591000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5655,4,4,'2019-08-21 15:10:22',680.016000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5656,4,4,'2019-08-21 15:10:22',680.439000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5657,4,4,'2019-08-21 15:10:22',681.289000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5658,4,4,'2019-08-21 15:10:22',682.154000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5659,4,4,'2019-08-21 15:10:22',682.535000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5660,4,4,'2019-08-21 15:10:22',683.153000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5661,4,4,'2019-08-21 15:10:22',684.103000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5662,4,4,'2019-08-21 15:10:22',684.951000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5663,4,4,'2019-08-21 15:10:22',685.226000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5664,4,4,'2019-08-21 15:10:22',685.801000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5665,4,4,'2019-08-21 15:10:22',686.683000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5666,4,4,'2019-08-21 15:10:22',687.499000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5667,4,4,'2019-08-21 15:10:22',688.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5668,4,4,'2019-08-21 15:10:22',688.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5669,4,4,'2019-08-21 15:10:22',689.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5670,4,4,'2019-08-21 15:10:22',690.213000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5671,4,4,'2019-08-21 15:10:22',690.506000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5672,4,4,'2019-08-21 15:10:22',691.028000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5673,4,4,'2019-08-21 15:10:22',691.877000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5674,4,4,'2019-08-21 15:10:22',692.859000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5675,4,4,'2019-08-21 15:10:22',693.625000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5676,4,4,'2019-08-21 15:10:22',694.641000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5677,4,4,'2019-08-21 15:10:22',695.474000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5678,4,4,'2019-08-21 15:10:22',696.322000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5679,4,4,'2019-08-21 15:10:22',696.643000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5680,4,4,'2019-08-21 15:10:22',697.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5681,4,4,'2019-08-21 15:10:22',697.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5682,4,4,'2019-08-21 15:10:22',697.921000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5683,4,4,'2019-08-21 15:10:22',698.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5684,4,4,'2019-08-21 15:10:22',699.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5685,4,4,'2019-08-21 15:10:22',699.686000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5686,4,4,'2019-08-21 15:10:22',699.988000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5687,4,4,'2019-08-21 15:10:22',700.668000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5688,4,4,'2019-08-21 15:10:22',701.650000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5689,4,4,'2019-08-21 15:10:22',702.599000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5690,4,4,'2019-08-21 15:10:22',703.515000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5691,4,4,'2019-08-21 15:10:22',704.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5692,4,4,'2019-08-21 15:10:22',704.623000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5693,4,4,'2019-08-21 15:10:22',705.296000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5694,4,4,'2019-08-21 15:10:22',706.262000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5695,4,4,'2019-08-21 15:10:22',707.144000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5696,4,4,'2019-08-21 15:10:22',708.060000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5697,4,4,'2019-08-21 15:10:22',708.402000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5698,4,4,'2019-08-21 15:10:22',708.909000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5699,4,4,'2019-08-21 15:10:22',709.874000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5700,4,4,'2019-08-21 15:10:22',710.724000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5701,4,4,'2019-08-21 15:10:22',711.556000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5702,4,4,'2019-08-21 15:10:22',712.372000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5703,4,4,'2019-08-21 15:10:22',712.735000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5704,4,4,'2019-08-21 15:10:22',713.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5705,4,4,'2019-08-21 15:10:22',713.592000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5706,4,4,'2019-08-21 15:10:22',714.036000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5707,4,4,'2019-08-21 15:10:22',715.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5708,4,4,'2019-08-21 15:10:22',715.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5709,4,4,'2019-08-21 15:10:22',716.282000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5710,4,4,'2019-08-21 15:10:22',716.833000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5711,4,4,'2019-08-21 15:10:22',717.749000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5712,4,4,'2019-08-21 15:10:22',718.126000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5713,4,4,'2019-08-21 15:10:22',718.682000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5714,4,4,'2019-08-21 15:10:22',719.598000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5715,4,4,'2019-08-21 15:10:22',720.413000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5716,4,4,'2019-08-21 15:10:22',721.345000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5717,4,4,'2019-08-21 15:10:22',722.278000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5718,4,4,'2019-08-21 15:10:22',723.193000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5719,4,4,'2019-08-21 15:10:22',723.517000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5720,4,4,'2019-08-21 15:10:22',724.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5721,4,4,'2019-08-21 15:10:22',724.404000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5722,4,4,'2019-08-21 15:10:22',724.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5723,4,4,'2019-08-21 15:10:22',725.321000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5724,4,4,'2019-08-21 15:10:22',725.757000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5725,4,4,'2019-08-21 15:10:22',726.623000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5726,4,4,'2019-08-21 15:10:22',727.422000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5727,4,4,'2019-08-21 15:10:22',727.739000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5728,4,4,'2019-08-21 15:10:22',728.271000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5729,4,4,'2019-08-21 15:10:22',729.137000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5730,4,4,'2019-08-21 15:10:22',729.952000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5731,4,4,'2019-08-21 15:10:22',730.238000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5732,4,4,'2019-08-21 15:10:22',730.785000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5733,4,4,'2019-08-21 15:10:22',731.115000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5734,4,4,'2019-08-21 15:10:22',731.634000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5735,4,4,'2019-08-21 15:10:22',732.649000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5736,4,4,'2019-08-21 15:10:22',733.582000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5737,4,4,'2019-08-21 15:10:22',734.464000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5738,4,4,'2019-08-21 15:10:22',735.330000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5739,4,4,'2019-08-21 15:10:22',735.700000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5740,4,4,'2019-08-21 15:10:22',736.112000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5741,4,4,'2019-08-21 15:10:22',737.095000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5742,4,4,'2019-08-21 15:10:22',737.402000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5743,4,4,'2019-08-21 15:10:22',738.011000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5744,4,4,'2019-08-21 15:10:22',738.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5745,4,4,'2019-08-21 15:10:22',739.559000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5746,4,4,'2019-08-21 15:10:22',740.441000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5747,4,4,'2019-08-21 15:10:22',740.799000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5748,4,4,'2019-08-21 15:10:22',741.224000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5749,4,4,'2019-08-21 15:10:22',742.056000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5750,4,4,'2019-08-21 15:10:22',743.038000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5751,4,4,'2019-08-21 15:10:22',743.328000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5752,4,4,'2019-08-21 15:10:22',743.804000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5753,4,4,'2019-08-21 15:10:22',744.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5754,4,4,'2019-08-21 15:10:22',745.402000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5755,4,4,'2019-08-21 15:10:22',745.706000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5756,4,4,'2019-08-21 15:10:22',746.301000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5757,4,4,'2019-08-21 15:10:22',747.067000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5758,4,4,'2019-08-21 15:10:22',747.438000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5759,4,4,'2019-08-21 15:10:22',747.850000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5760,4,4,'2019-08-21 15:10:22',748.766000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5761,4,4,'2019-08-21 15:10:22',749.531000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5762,4,4,'2019-08-21 15:10:22',750.363000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5763,4,4,'2019-08-21 15:10:22',751.229000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5764,4,4,'2019-08-21 15:10:22',751.510000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5765,4,4,'2019-08-21 15:10:22',752.229000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5766,4,4,'2019-08-21 15:10:22',753.027000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5767,4,4,'2019-08-21 15:10:22',753.304000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5768,4,4,'2019-08-21 15:10:22',753.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5769,4,4,'2019-08-21 15:10:22',754.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5770,4,4,'2019-08-21 15:10:22',755.691000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5771,4,4,'2019-08-21 15:10:22',756.004000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5772,4,4,'2019-08-21 15:10:22',756.490000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5773,4,4,'2019-08-21 15:10:22',757.439000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5774,4,4,'2019-08-21 15:10:22',758.354000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5775,4,4,'2019-08-21 15:10:22',759.320000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5776,4,4,'2019-08-21 15:10:22',760.152000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5777,4,4,'2019-08-21 15:10:22',760.478000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5778,4,4,'2019-08-21 15:10:22',761.002000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5779,4,4,'2019-08-21 15:10:22',761.884000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5780,4,4,'2019-08-21 15:10:22',762.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5781,4,4,'2019-08-21 15:10:22',763.732000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5782,4,4,'2019-08-21 15:10:22',764.075000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5783,4,4,'2019-08-21 15:10:22',764.564000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5784,4,4,'2019-08-21 15:10:22',765.347000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5785,4,4,'2019-08-21 15:10:22',765.657000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5786,4,4,'2019-08-21 15:10:22',766.196000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5787,4,4,'2019-08-21 15:10:22',767.162000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5788,4,4,'2019-08-21 15:10:22',768.011000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5789,4,4,'2019-08-21 15:10:22',768.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5790,4,4,'2019-08-21 15:10:22',769.265000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5791,4,4,'2019-08-21 15:10:22',769.726000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5792,4,4,'2019-08-21 15:10:22',770.675000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5793,4,4,'2019-08-21 15:10:22',770.968000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5794,4,4,'2019-08-21 15:10:22',771.557000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5795,4,4,'2019-08-21 15:10:22',771.895000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5796,4,4,'2019-08-21 15:10:22',772.556000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5797,4,4,'2019-08-21 15:10:22',773.339000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5798,4,4,'2019-08-21 15:10:22',773.607000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5799,4,4,'2019-08-21 15:10:22',774.154000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5800,4,4,'2019-08-21 15:10:22',775.053000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5801,4,4,'2019-08-21 15:10:22',775.919000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5802,4,4,'2019-08-21 15:10:22',776.901000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5803,4,4,'2019-08-21 15:10:22',777.286000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5804,4,4,'2019-08-21 15:10:22',777.884000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5805,4,4,'2019-08-21 15:10:22',778.899000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5806,4,4,'2019-08-21 15:10:22',779.765000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5807,4,4,'2019-08-21 15:10:22',780.764000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5808,4,4,'2019-08-21 15:10:22',781.746000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5809,4,4,'2019-08-21 15:10:22',782.153000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5810,4,4,'2019-08-21 15:10:22',782.578000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5811,4,4,'2019-08-21 15:10:22',782.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5812,4,4,'2019-08-21 15:10:22',783.344000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5813,4,4,'2019-08-21 15:10:22',784.210000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5814,4,4,'2019-08-21 15:10:22',785.108000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5815,4,4,'2019-08-21 15:10:22',785.875000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5816,4,4,'2019-08-21 15:10:22',786.184000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5817,4,4,'2019-08-21 15:10:22',786.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5818,4,4,'2019-08-21 15:10:22',787.489000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5819,4,4,'2019-08-21 15:10:22',788.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5820,4,4,'2019-08-21 15:10:22',788.864000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5821,4,4,'2019-08-21 15:10:22',789.288000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5822,4,4,'2019-08-21 15:10:22',789.721000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5823,4,4,'2019-08-21 15:10:22',790.054000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5824,4,4,'2019-08-21 15:10:22',790.819000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5825,4,4,'2019-08-21 15:10:22',791.685000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5826,4,4,'2019-08-21 15:10:22',792.584000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5827,4,4,'2019-08-21 15:10:22',793.450000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5828,4,4,'2019-08-21 15:10:22',793.762000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5829,4,4,'2019-08-21 15:10:22',794.448000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5830,4,4,'2019-08-21 15:10:22',795.348000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5831,4,4,'2019-08-21 15:10:22',796.214000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5832,4,4,'2019-08-21 15:10:22',796.996000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5833,4,4,'2019-08-21 15:10:22',797.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5834,4,4,'2019-08-21 15:10:22',797.878000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5835,4,4,'2019-08-21 15:10:22',798.694000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5836,4,4,'2019-08-21 15:10:22',799.062000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5837,4,4,'2019-08-21 15:10:22',799.493000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5838,4,4,'2019-08-21 15:10:22',799.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5839,4,4,'2019-08-21 15:10:22',800.509000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5840,4,4,'2019-08-21 15:10:22',801.391000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5841,4,4,'2019-08-21 15:10:22',802.356000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5842,4,4,'2019-08-21 15:10:22',803.189000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5843,4,4,'2019-08-21 15:10:22',803.525000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5844,4,4,'2019-08-21 15:10:22',804.154000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5845,4,4,'2019-08-21 15:10:22',804.954000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5846,4,4,'2019-08-21 15:10:22',805.869000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5847,4,4,'2019-08-21 15:10:22',806.136000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5848,4,4,'2019-08-21 15:10:22',806.752000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5849,4,4,'2019-08-21 15:10:22',807.518000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5850,4,4,'2019-08-21 15:10:22',808.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5851,4,4,'2019-08-21 15:10:22',809.149000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5852,4,4,'2019-08-21 15:10:22',810.048000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5853,4,4,'2019-08-21 15:10:22',810.980000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5854,4,4,'2019-08-21 15:10:22',811.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5855,4,4,'2019-08-21 15:10:22',811.847000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5856,4,4,'2019-08-21 15:10:22',812.846000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5857,4,4,'2019-08-21 15:10:22',813.148000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5858,4,4,'2019-08-21 15:10:22',813.728000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5859,4,4,'2019-08-21 15:10:22',814.543000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5860,4,4,'2019-08-21 15:10:22',815.376000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5861,4,4,'2019-08-21 15:10:22',816.191000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5862,4,4,'2019-08-21 15:10:22',817.024000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5863,4,4,'2019-08-21 15:10:22',817.401000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5864,4,4,'2019-08-21 15:10:22',817.873000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5865,4,4,'2019-08-21 15:10:22',818.309000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5866,4,4,'2019-08-21 15:10:22',818.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5867,4,4,'2019-08-21 15:10:22',819.704000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5868,4,4,'2019-08-21 15:10:22',820.143000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5869,4,4,'2019-08-21 15:10:22',820.521000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5870,4,4,'2019-08-21 15:10:22',821.436000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5871,4,4,'2019-08-21 15:10:22',822.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5872,4,4,'2019-08-21 15:10:22',822.812000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5873,4,4,'2019-08-21 15:10:22',823.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5874,4,4,'2019-08-21 15:10:22',824.350000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5875,4,4,'2019-08-21 15:10:22',825.315000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5876,4,4,'2019-08-21 15:10:22',826.297000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5877,4,4,'2019-08-21 15:10:22',826.581000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5878,4,4,'2019-08-21 15:10:22',827.097000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5879,4,4,'2019-08-21 15:10:22',828.078000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5880,4,4,'2019-08-21 15:10:22',828.878000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5881,4,4,'2019-08-21 15:10:22',829.262000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5882,4,4,'2019-08-21 15:10:22',829.693000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5883,4,4,'2019-08-21 15:10:22',830.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5884,4,4,'2019-08-21 15:10:22',831.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5885,4,4,'2019-08-21 15:10:22',831.458000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5886,4,4,'2019-08-21 15:10:22',832.324000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5887,4,4,'2019-08-21 15:10:22',833.272000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5888,4,4,'2019-08-21 15:10:22',834.056000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5889,4,4,'2019-08-21 15:10:22',834.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5890,4,4,'2019-08-21 15:10:22',834.821000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5891,4,4,'2019-08-21 15:10:22',835.187000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5892,4,4,'2019-08-21 15:10:22',835.721000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5893,4,4,'2019-08-21 15:10:22',836.569000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5894,4,4,'2019-08-21 15:10:22',836.859000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5895,4,4,'2019-08-21 15:10:22',837.568000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5896,4,4,'2019-08-21 15:10:22',838.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5897,4,4,'2019-08-21 15:10:22',839.333000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5898,4,4,'2019-08-21 15:10:22',840.115000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5899,4,4,'2019-08-21 15:10:22',840.406000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5900,4,4,'2019-08-21 15:10:22',840.932000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5901,4,4,'2019-08-21 15:10:22',841.714000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5902,4,4,'2019-08-21 15:10:22',842.496000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5903,4,4,'2019-08-21 15:10:22',843.278000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5904,4,4,'2019-08-21 15:10:22',844.244000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5905,4,4,'2019-08-21 15:10:22',844.527000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5906,4,4,'2019-08-21 15:10:22',845.010000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5907,4,4,'2019-08-21 15:10:22',845.776000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5908,4,4,'2019-08-21 15:10:22',846.658000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5909,4,4,'2019-08-21 15:10:22',847.641000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5910,4,4,'2019-08-21 15:10:22',847.974000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5911,4,4,'2019-08-21 15:10:22',848.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5912,4,4,'2019-08-21 15:10:22',849.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5913,4,4,'2019-08-21 15:10:22',849.616000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5914,4,4,'2019-08-21 15:10:22',850.138000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5915,4,4,'2019-08-21 15:10:22',850.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5916,4,4,'2019-08-21 15:10:22',851.786000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5917,4,4,'2019-08-21 15:10:22',852.568000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5918,4,4,'2019-08-21 15:10:22',853.367000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5919,4,4,'2019-08-21 15:10:22',853.778000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5920,4,4,'2019-08-21 15:10:22',854.217000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5921,4,4,'2019-08-21 15:10:22',854.604000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5922,4,4,'2019-08-21 15:10:22',855.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5923,4,4,'2019-08-21 15:10:22',856.015000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5924,4,4,'2019-08-21 15:10:22',856.848000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5925,4,4,'2019-08-21 15:10:22',857.713000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5926,4,4,'2019-08-21 15:10:22',858.051000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5927,4,4,'2019-08-21 15:10:22',858.679000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5928,4,4,'2019-08-21 15:10:22',859.610000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5929,4,4,'2019-08-21 15:10:22',859.854000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5930,4,4,'2019-08-21 15:10:22',860.510000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5931,4,4,'2019-08-21 15:10:22',860.882000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5932,4,4,'2019-08-21 15:10:22',861.376000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5933,4,4,'2019-08-21 15:10:22',861.738000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5934,4,4,'2019-08-21 15:10:22',862.142000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5935,4,4,'2019-08-21 15:10:22',862.974000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5936,4,4,'2019-08-21 15:10:22',863.956000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5937,4,4,'2019-08-21 15:10:22',864.788000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5938,4,4,'2019-08-21 15:10:22',865.754000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5939,4,4,'2019-08-21 15:10:22',866.071000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5940,4,4,'2019-08-21 15:10:22',866.570000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5941,4,4,'2019-08-21 15:10:22',867.519000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5942,4,4,'2019-08-21 15:10:22',868.318000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5943,4,4,'2019-08-21 15:10:22',868.661000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5944,4,4,'2019-08-21 15:10:22',869.317000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5945,4,4,'2019-08-21 15:10:22',870.216000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5946,4,4,'2019-08-21 15:10:22',871.015000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5947,4,4,'2019-08-21 15:10:22',871.362000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5948,4,4,'2019-08-21 15:10:22',871.814000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5949,4,4,'2019-08-21 15:10:22',872.797000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5950,4,4,'2019-08-21 15:10:22',873.646000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5951,4,4,'2019-08-21 15:10:22',873.952000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5952,4,4,'2019-08-21 15:10:22',874.645000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5953,4,4,'2019-08-21 15:10:22',875.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5954,4,4,'2019-08-21 15:10:22',876.393000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5955,4,4,'2019-08-21 15:10:22',877.241000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5956,4,4,'2019-08-21 15:10:22',878.207000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5957,4,4,'2019-08-21 15:10:22',878.486000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5958,4,4,'2019-08-21 15:10:22',878.989000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5959,4,4,'2019-08-21 15:10:22',879.403000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5960,4,4,'2019-08-21 15:10:22',879.789000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5961,4,4,'2019-08-21 15:10:22',880.604000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5962,4,4,'2019-08-21 15:10:22',881.403000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5963,4,4,'2019-08-21 15:10:22',882.303000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5964,4,4,'2019-08-21 15:10:22',883.285000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5965,4,4,'2019-08-21 15:10:22',883.596000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5966,4,4,'2019-08-21 15:10:22',884.084000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5967,4,4,'2019-08-21 15:10:22',884.866000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5968,4,4,'2019-08-21 15:10:22',885.766000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5969,4,4,'2019-08-21 15:10:22',886.155000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5970,4,4,'2019-08-21 15:10:22',886.698000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5971,4,4,'2019-08-21 15:10:22',887.497000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5972,4,4,'2019-08-21 15:10:22',888.312000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5973,4,4,'2019-08-21 15:10:22',889.245000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5974,4,4,'2019-08-21 15:10:22',889.682000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5975,4,4,'2019-08-21 15:10:22',890.045000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5976,4,4,'2019-08-21 15:10:22',890.498000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5977,4,4,'2019-08-21 15:10:22',890.877000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5978,4,4,'2019-08-21 15:10:22',891.809000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5979,4,4,'2019-08-21 15:10:22',892.101000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5980,4,4,'2019-08-21 15:10:22',892.592000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5981,4,4,'2019-08-21 15:10:22',893.523000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5982,4,4,'2019-08-21 15:10:22',894.406000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5983,4,4,'2019-08-21 15:10:22',895.306000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5984,4,4,'2019-08-21 15:10:22',895.560000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5985,4,4,'2019-08-21 15:10:22',896.304000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5986,4,4,'2019-08-21 15:10:22',897.203000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5987,4,4,'2019-08-21 15:10:22',898.186000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5988,4,4,'2019-08-21 15:10:22',899.034000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5989,4,4,'2019-08-21 15:10:22',899.867000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5990,4,4,'2019-08-21 15:10:22',900.749000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5991,4,4,'2019-08-21 15:10:22',901.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5992,4,4,'2019-08-21 15:10:22',901.748000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5993,4,4,'2019-08-21 15:10:22',902.106000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5994,4,4,'2019-08-21 15:10:22',902.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5995,4,4,'2019-08-21 15:10:22',903.529000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5996,4,4,'2019-08-21 15:10:22',904.329000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5997,4,4,'2019-08-21 15:10:22',905.145000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5998,4,4,'2019-08-21 15:10:22',905.553000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (5999,4,4,'2019-08-21 15:10:22',906.061000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6000,4,4,'2019-08-21 15:10:22',907.059000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6001,4,4,'2019-08-21 15:10:22',907.347000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6002,4,4,'2019-08-21 15:10:22',907.975000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6003,4,4,'2019-08-21 15:10:22',908.435000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6004,4,4,'2019-08-21 15:10:22',908.924000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6005,4,4,'2019-08-21 15:10:22',909.906000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6006,4,4,'2019-08-21 15:10:22',910.198000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6007,4,4,'2019-08-21 15:10:22',910.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6008,4,4,'2019-08-21 15:10:22',911.504000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6009,4,4,'2019-08-21 15:10:22',912.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6010,4,4,'2019-08-21 15:10:22',928.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6011,4,4,'2019-08-21 15:10:22',948.524000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6012,4,4,'2019-08-21 15:10:22',948.979000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6013,4,4,'2019-08-21 15:10:22',949.506000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6014,4,4,'2019-08-21 15:10:22',950.322000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6015,4,4,'2019-08-21 15:10:22',951.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6016,4,4,'2019-08-21 15:10:22',951.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6017,4,4,'2019-08-21 15:10:22',952.137000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6018,4,4,'2019-08-21 15:10:22',953.002000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6019,4,4,'2019-08-21 15:10:22',953.984000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6020,4,4,'2019-08-21 15:10:22',954.311000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6021,4,4,'2019-08-21 15:10:22',954.783000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6022,4,4,'2019-08-21 15:10:22',955.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6023,4,4,'2019-08-21 15:10:22',956.715000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6024,4,4,'2019-08-21 15:10:22',956.980000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6025,4,4,'2019-08-21 15:10:22',957.647000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6026,4,4,'2019-08-21 15:10:22',958.646000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6027,4,4,'2019-08-21 15:10:22',959.512000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6028,4,4,'2019-08-21 15:10:22',960.411000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6029,4,4,'2019-08-21 15:10:22',960.709000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6030,4,4,'2019-08-21 15:10:22',961.359000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6031,4,4,'2019-08-21 15:10:22',961.757000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6032,4,4,'2019-08-21 15:10:22',962.259000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6033,4,4,'2019-08-21 15:10:22',963.258000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6034,4,4,'2019-08-21 15:10:22',964.224000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6035,4,4,'2019-08-21 15:10:22',965.205000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6036,4,4,'2019-08-21 15:10:22',966.055000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6037,4,4,'2019-08-21 15:10:22',966.887000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6038,4,4,'2019-08-21 15:10:22',967.239000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6039,4,4,'2019-08-21 15:10:22',967.819000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6040,4,4,'2019-08-21 15:10:22',968.156000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6041,4,4,'2019-08-21 15:10:22',968.802000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6042,4,4,'2019-08-21 15:10:22',969.717000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6043,4,4,'2019-08-21 15:10:22',970.500000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6044,4,4,'2019-08-21 15:10:22',970.856000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6045,4,4,'2019-08-21 15:10:22',971.499000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6046,4,4,'2019-08-21 15:10:22',972.314000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6047,4,4,'2019-08-21 15:10:22',972.579000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6048,4,4,'2019-08-21 15:10:22',973.313000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6049,4,4,'2019-08-21 15:10:22',974.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6050,4,4,'2019-08-21 15:10:22',975.244000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6051,4,4,'2019-08-21 15:10:22',976.210000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6052,4,4,'2019-08-21 15:10:22',977.043000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6053,4,4,'2019-08-21 15:10:22',977.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6054,4,4,'2019-08-21 15:10:22',978.213000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6055,4,4,'2019-08-21 15:10:22',978.774000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6056,4,4,'2019-08-21 15:10:22',979.140000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6057,4,4,'2019-08-21 15:10:22',979.573000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6058,4,4,'2019-08-21 15:10:22',980.389000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6059,4,4,'2019-08-21 15:10:22',981.388000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6060,4,4,'2019-08-21 15:10:22',982.354000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6061,4,4,'2019-08-21 15:10:22',982.687000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6062,4,4,'2019-08-21 15:10:22',983.353000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6063,4,4,'2019-08-21 15:10:22',984.185000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6064,4,4,'2019-08-21 15:10:22',984.571000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6065,4,4,'2019-08-21 15:10:22',985.101000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6066,4,4,'2019-08-21 15:10:22',985.899000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6067,4,4,'2019-08-21 15:10:22',986.882000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6068,4,4,'2019-08-21 15:10:22',987.881000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6069,4,4,'2019-08-21 15:10:22',988.729000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6070,4,4,'2019-08-21 15:10:22',989.105000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6071,4,4,'2019-08-21 15:10:22',989.729000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6072,4,4,'2019-08-21 15:10:22',990.595000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6073,4,4,'2019-08-21 15:10:22',991.460000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6074,4,4,'2019-08-21 15:10:22',991.766000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6075,4,4,'2019-08-21 15:10:22',992.326000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6076,4,4,'2019-08-21 15:10:22',992.804000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6077,4,4,'2019-08-21 15:10:22',993.175000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6078,4,4,'2019-08-21 15:10:22',993.974000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6079,4,4,'2019-08-21 15:10:22',994.386000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6080,4,4,'2019-08-21 15:10:22',994.757000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6081,4,4,'2019-08-21 15:10:22',995.605000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6082,4,4,'2019-08-21 15:10:22',996.422000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6083,4,4,'2019-08-21 15:10:22',997.320000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6084,4,4,'2019-08-21 15:10:22',998.119000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6085,4,4,'2019-08-21 15:10:22',999.052000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6086,4,4,'2019-08-21 15:10:22',1000.018000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6087,4,4,'2019-08-21 15:10:22',1000.331000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6088,4,4,'2019-08-21 15:10:22',1001.017000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6089,4,4,'2019-08-21 15:10:22',1001.390000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6090,4,4,'2019-08-21 15:10:22',1001.849000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6091,4,4,'2019-08-21 15:10:22',1002.682000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6092,4,4,'2019-08-21 15:10:22',1003.646000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6093,4,4,'2019-08-21 15:10:22',1004.596000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6094,4,4,'2019-08-21 15:10:22',1004.866000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6095,4,4,'2019-08-21 15:10:22',1005.361000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6096,4,4,'2019-08-21 15:10:22',1005.763000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6097,4,4,'2019-08-21 15:10:22',1006.294000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6098,4,4,'2019-08-21 15:10:22',1007.276000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6099,4,4,'2019-08-21 15:10:22',1008.226000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6100,4,4,'2019-08-21 15:10:22',1008.514000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6101,4,4,'2019-08-21 15:10:22',1009.174000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6102,4,4,'2019-08-21 15:10:22',1010.156000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6103,4,4,'2019-08-21 15:10:22',1010.989000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6104,4,4,'2019-08-21 15:10:22',1011.477000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6105,4,4,'2019-08-21 15:10:22',1011.854000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6106,4,4,'2019-08-21 15:10:22',1012.771000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6107,4,4,'2019-08-21 15:10:22',1013.736000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6108,4,4,'2019-08-21 15:10:22',1014.685000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6109,4,4,'2019-08-21 15:10:22',1015.484000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6110,4,4,'2019-08-21 15:10:22',1016.399000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6111,4,4,'2019-08-21 15:10:22',1016.676000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6112,4,4,'2019-08-21 15:10:22',1017.216000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6113,4,4,'2019-08-21 15:10:22',1018.015000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6114,4,4,'2019-08-21 15:10:22',1018.430000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6115,4,4,'2019-08-21 15:10:22',1018.931000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6116,4,4,'2019-08-21 15:10:22',1019.713000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6117,4,4,'2019-08-21 15:10:22',1020.679000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6118,4,4,'2019-08-21 15:10:22',1021.461000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6119,4,4,'2019-08-21 15:10:22',1021.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6120,4,4,'2019-08-21 15:10:22',1022.410000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6121,4,4,'2019-08-21 15:10:22',1023.209000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6122,4,4,'2019-08-21 15:10:22',1023.549000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6123,4,4,'2019-08-21 15:10:22',1024.208000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6124,4,4,'2019-08-21 15:10:22',1024.627000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6125,4,4,'2019-08-21 15:10:22',1025.156000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6126,4,4,'2019-08-21 15:10:22',1026.089000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6127,4,4,'2019-08-21 15:10:22',1026.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6128,4,4,'2019-08-21 15:10:22',1027.837000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6129,4,4,'2019-08-21 15:10:22',1028.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6130,4,4,'2019-08-21 15:10:22',1028.637000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6131,4,4,'2019-08-21 15:10:22',1029.568000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6132,4,4,'2019-08-21 15:10:22',1029.826000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6133,4,4,'2019-08-21 15:10:22',1030.534000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6134,4,4,'2019-08-21 15:10:22',1031.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6135,4,4,'2019-08-21 15:10:22',1032.216000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6136,4,4,'2019-08-21 15:10:22',1033.215000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6137,4,4,'2019-08-21 15:10:22',1033.464000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6138,4,4,'2019-08-21 15:10:22',1034.146000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6139,4,4,'2019-08-21 15:10:22',1035.112000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6140,4,4,'2019-08-21 15:10:22',1035.389000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6141,4,4,'2019-08-21 15:10:22',1036.095000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6142,4,4,'2019-08-21 15:10:22',1037.011000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6143,4,4,'2019-08-21 15:10:22',1037.323000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6144,4,4,'2019-08-21 15:10:22',1037.793000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6145,4,4,'2019-08-21 15:10:22',1038.675000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6146,4,4,'2019-08-21 15:10:22',1039.624000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6147,4,4,'2019-08-21 15:10:22',1040.406000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6148,4,4,'2019-08-21 15:10:22',1041.322000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6149,4,4,'2019-08-21 15:10:22',1041.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6150,4,4,'2019-08-21 15:10:22',1042.104000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6151,4,4,'2019-08-21 15:10:22',1042.888000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6152,4,4,'2019-08-21 15:10:22',1043.720000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6153,4,4,'2019-08-21 15:10:22',1044.569000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6154,4,4,'2019-08-21 15:10:22',1044.932000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6155,4,4,'2019-08-21 15:10:22',1045.551000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6156,4,4,'2019-08-21 15:10:22',1045.899000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6157,4,4,'2019-08-21 15:10:22',1046.334000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6158,4,4,'2019-08-21 15:10:22',1047.199000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6159,4,4,'2019-08-21 15:10:22',1048.182000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6160,4,4,'2019-08-21 15:10:22',1048.529000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6161,4,4,'2019-08-21 15:10:22',1049.081000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6162,4,4,'2019-08-21 15:10:22',1049.896000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6163,4,4,'2019-08-21 15:10:22',1050.745000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6164,4,4,'2019-08-21 15:10:22',1051.678000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6165,4,4,'2019-08-21 15:10:22',1052.097000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6166,4,4,'2019-08-21 15:10:22',1052.693000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6167,4,4,'2019-08-21 15:10:22',1053.709000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6168,4,4,'2019-08-21 15:10:22',1054.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6169,4,4,'2019-08-21 15:10:22',1054.857000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6170,4,4,'2019-08-21 15:10:22',1055.391000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6171,4,4,'2019-08-21 15:10:22',1056.189000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6172,4,4,'2019-08-21 15:10:22',1057.005000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6173,4,4,'2019-08-21 15:10:22',1057.326000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6174,4,4,'2019-08-21 15:10:22',1057.771000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6175,4,4,'2019-08-21 15:10:22',1058.537000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6176,4,4,'2019-08-21 15:10:22',1058.817000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6177,4,4,'2019-08-21 15:10:22',1059.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6178,4,4,'2019-08-21 15:10:22',1060.318000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6179,4,4,'2019-08-21 15:10:22',1061.201000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6180,4,4,'2019-08-21 15:10:22',1062.100000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6181,4,4,'2019-08-21 15:10:22',1062.516000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6182,4,4,'2019-08-21 15:10:22',1062.966000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6183,4,4,'2019-08-21 15:10:22',1063.814000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6184,4,4,'2019-08-21 15:10:22',1064.139000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6185,4,4,'2019-08-21 15:10:22',1064.580000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6186,4,4,'2019-08-21 15:10:22',1065.529000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6187,4,4,'2019-08-21 15:10:22',1066.395000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6188,4,4,'2019-08-21 15:10:22',1067.211000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6189,4,4,'2019-08-21 15:10:22',1067.524000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6190,4,4,'2019-08-21 15:10:22',1068.093000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6191,4,4,'2019-08-21 15:10:22',1069.075000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6192,4,4,'2019-08-21 15:10:22',1069.958000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6193,4,4,'2019-08-21 15:10:22',1070.275000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6194,4,4,'2019-08-21 15:10:22',1070.856000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6195,4,4,'2019-08-21 15:10:22',1071.839000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6196,4,4,'2019-08-21 15:10:22',1072.722000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6197,4,4,'2019-08-21 15:10:22',1073.604000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6198,4,4,'2019-08-21 15:10:22',1074.536000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6199,4,4,'2019-08-21 15:10:22',1075.552000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6200,4,4,'2019-08-21 15:10:22',1075.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6201,4,4,'2019-08-21 15:10:22',1076.451000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6202,4,4,'2019-08-21 15:10:22',1076.926000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6203,4,4,'2019-08-21 15:10:22',1077.250000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6204,4,4,'2019-08-21 15:10:22',1078.082000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6205,4,4,'2019-08-21 15:10:22',1079.015000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6206,4,4,'2019-08-21 15:10:22',1079.914000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6207,4,4,'2019-08-21 15:10:22',1080.262000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6208,4,4,'2019-08-21 15:10:22',1080.912000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6209,4,4,'2019-08-21 15:10:22',1081.359000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6210,4,4,'2019-08-21 15:10:22',1081.679000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6211,4,4,'2019-08-21 15:10:22',1082.660000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6212,4,4,'2019-08-21 15:10:22',1083.593000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6213,4,4,'2019-08-21 15:10:22',1084.459000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6214,4,4,'2019-08-21 15:10:22',1085.324000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6215,4,4,'2019-08-21 15:10:22',1085.683000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6216,4,4,'2019-08-21 15:10:22',1086.257000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6217,4,4,'2019-08-21 15:10:22',1086.600000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6218,4,4,'2019-08-21 15:10:22',1087.072000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6219,4,4,'2019-08-21 15:10:22',1088.038000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6220,4,4,'2019-08-21 15:10:22',1088.303000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6221,4,4,'2019-08-21 15:10:22',1089.021000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6222,4,4,'2019-08-21 15:10:22',1089.902000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6223,4,4,'2019-08-21 15:10:22',1090.785000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6224,4,4,'2019-08-21 15:10:22',1091.114000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6225,4,4,'2019-08-21 15:10:22',1091.567000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6226,4,4,'2019-08-21 15:10:22',1092.333000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6227,4,4,'2019-08-21 15:10:22',1093.232000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6228,4,4,'2019-08-21 15:10:22',1094.081000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6229,4,4,'2019-08-21 15:10:22',1094.931000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6230,4,4,'2019-08-21 15:10:22',1095.226000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6231,4,4,'2019-08-21 15:10:22',1095.763000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6232,4,4,'2019-08-21 15:10:22',1096.612000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6233,4,4,'2019-08-21 15:10:22',1096.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6234,4,4,'2019-08-21 15:10:22',1097.411000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6235,4,4,'2019-08-21 15:10:22',1098.377000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6236,4,4,'2019-08-21 15:10:22',1099.343000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6237,4,4,'2019-08-21 15:10:22',1100.241000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6238,4,4,'2019-08-21 15:10:22',1100.546000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6239,4,4,'2019-08-21 15:10:22',1101.107000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6240,4,4,'2019-08-21 15:10:22',1102.022000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6241,4,4,'2019-08-21 15:10:22',1102.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6242,4,4,'2019-08-21 15:10:22',1103.176000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6243,4,4,'2019-08-21 15:10:22',1103.588000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6244,4,4,'2019-08-21 15:10:22',1104.503000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6245,4,4,'2019-08-21 15:10:22',1104.919000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6246,4,4,'2019-08-21 15:10:22',1105.303000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6247,4,4,'2019-08-21 15:10:22',1106.085000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6248,4,4,'2019-08-21 15:10:22',1107.067000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6249,4,4,'2019-08-21 15:10:22',1107.933000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6250,4,4,'2019-08-21 15:10:22',1108.225000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6251,4,4,'2019-08-21 15:10:22',1108.716000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6252,4,4,'2019-08-21 15:10:22',1109.515000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6253,4,4,'2019-08-21 15:10:22',1110.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6254,4,4,'2019-08-21 15:10:22',1110.684000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6255,4,4,'2019-08-21 15:10:22',1111.163000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6256,4,4,'2019-08-21 15:10:22',1112.128000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6257,4,4,'2019-08-21 15:10:22',1112.396000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6258,4,4,'2019-08-21 15:10:22',1112.978000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6259,4,4,'2019-08-21 15:10:22',1113.826000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6260,4,4,'2019-08-21 15:10:22',1114.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6261,4,4,'2019-08-21 15:10:22',1114.643000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6262,4,4,'2019-08-21 15:10:22',1115.591000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6263,4,4,'2019-08-21 15:10:22',1116.490000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6264,4,4,'2019-08-21 15:10:22',1117.322000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6265,4,4,'2019-08-21 15:10:22',1117.616000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6266,4,4,'2019-08-21 15:10:22',1118.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6267,4,4,'2019-08-21 15:10:22',1119.071000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6268,4,4,'2019-08-21 15:10:22',1120.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6269,4,4,'2019-08-21 15:10:22',1120.407000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6270,4,4,'2019-08-21 15:10:22',1120.819000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6271,4,4,'2019-08-21 15:10:22',1121.734000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6272,4,4,'2019-08-21 15:10:22',1122.534000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6273,4,4,'2019-08-21 15:10:22',1122.826000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6274,4,4,'2019-08-21 15:10:22',1123.316000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6275,4,4,'2019-08-21 15:10:22',1124.248000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6276,4,4,'2019-08-21 15:10:22',1125.230000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6277,4,4,'2019-08-21 15:10:22',1125.577000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6278,4,4,'2019-08-21 15:10:22',1126.063000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6279,4,4,'2019-08-21 15:10:22',1126.434000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6280,4,4,'2019-08-21 15:10:22',1126.962000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6281,4,4,'2019-08-21 15:10:22',1127.895000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6282,4,4,'2019-08-21 15:10:22',1128.693000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6283,4,4,'2019-08-21 15:10:22',1129.510000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6284,4,4,'2019-08-21 15:10:22',1130.342000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6285,4,4,'2019-08-21 15:10:22',1130.727000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6286,4,4,'2019-08-21 15:10:22',1131.225000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6287,4,4,'2019-08-21 15:10:22',1132.223000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6288,4,4,'2019-08-21 15:10:22',1132.479000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6289,4,4,'2019-08-21 15:10:22',1133.188000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6290,4,4,'2019-08-21 15:10:22',1134.154000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6291,4,4,'2019-08-21 15:10:22',1135.004000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6292,4,4,'2019-08-21 15:10:22',1135.301000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6293,4,4,'2019-08-21 15:10:22',1135.919000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6294,4,4,'2019-08-21 15:10:22',1136.901000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6295,4,4,'2019-08-21 15:10:22',1137.155000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6296,4,4,'2019-08-21 15:10:22',1137.733000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6297,4,4,'2019-08-21 15:10:22',1138.517000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6298,4,4,'2019-08-21 15:10:22',1139.282000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6299,4,4,'2019-08-21 15:10:22',1140.164000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6300,4,4,'2019-08-21 15:10:22',1140.947000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6301,4,4,'2019-08-21 15:10:22',1141.912000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6302,4,4,'2019-08-21 15:10:22',1142.812000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6303,4,4,'2019-08-21 15:10:22',1143.201000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6304,4,4,'2019-08-21 15:10:22',1143.660000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6305,4,4,'2019-08-21 15:10:22',1144.058000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6306,4,4,'2019-08-21 15:10:22',1144.427000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6307,4,4,'2019-08-21 15:10:22',1145.242000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6308,4,4,'2019-08-21 15:10:22',1146.208000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6309,4,4,'2019-08-21 15:10:22',1147.141000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6310,4,4,'2019-08-21 15:10:22',1148.039000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6311,4,4,'2019-08-21 15:10:22',1148.371000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6312,4,4,'2019-08-21 15:10:22',1148.922000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6313,4,4,'2019-08-21 15:10:22',1149.737000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6314,4,4,'2019-08-21 15:10:22',1150.033000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6315,4,4,'2019-08-21 15:10:22',1150.703000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6316,4,4,'2019-08-21 15:10:22',1151.586000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6317,4,4,'2019-08-21 15:10:22',1152.584000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6318,4,4,'2019-08-21 15:10:22',1153.566000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6319,4,4,'2019-08-21 15:10:22',1154.349000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6320,4,4,'2019-08-21 15:10:22',1154.729000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6321,4,4,'2019-08-21 15:10:22',1155.198000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6322,4,4,'2019-08-21 15:10:22',1155.556000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6323,4,4,'2019-08-21 15:10:22',1156.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6324,4,4,'2019-08-21 15:10:22',1156.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6325,4,4,'2019-08-21 15:10:22',1157.896000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6326,4,4,'2019-08-21 15:10:22',1158.728000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6327,4,4,'2019-08-21 15:10:22',1159.053000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6328,4,4,'2019-08-21 15:10:22',1159.727000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6329,4,4,'2019-08-21 15:10:22',1160.525000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6330,4,4,'2019-08-21 15:10:22',1160.816000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6331,4,4,'2019-08-21 15:10:22',1161.491000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6332,4,4,'2019-08-21 15:10:22',1162.490000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6333,4,4,'2019-08-21 15:10:22',1162.882000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6334,4,4,'2019-08-21 15:10:22',1163.372000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6335,4,4,'2019-08-21 15:10:22',1164.354000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6336,4,4,'2019-08-21 15:10:22',1165.154000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6337,4,4,'2019-08-21 15:10:22',1166.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6338,4,4,'2019-08-21 15:10:22',1166.419000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6339,4,4,'2019-08-21 15:10:22',1167.019000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6340,4,4,'2019-08-21 15:10:22',1167.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6341,4,4,'2019-08-21 15:10:22',1168.162000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6342,4,4,'2019-08-21 15:10:22',1168.717000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6343,4,4,'2019-08-21 15:10:22',1169.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6344,4,4,'2019-08-21 15:10:22',1170.398000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6345,4,4,'2019-08-21 15:10:22',1170.762000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6346,4,4,'2019-08-21 15:10:22',1171.297000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6347,4,4,'2019-08-21 15:10:22',1172.080000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6348,4,4,'2019-08-21 15:10:22',1172.929000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6349,4,4,'2019-08-21 15:10:22',1173.745000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6350,4,4,'2019-08-21 15:10:22',1174.047000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6351,4,4,'2019-08-21 15:10:22',1174.660000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6352,4,4,'2019-08-21 15:10:22',1175.643000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6353,4,4,'2019-08-21 15:10:22',1175.981000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6354,4,4,'2019-08-21 15:10:22',1176.441000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6355,4,4,'2019-08-21 15:10:22',1177.407000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6356,4,4,'2019-08-21 15:10:22',1178.256000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6357,4,4,'2019-08-21 15:10:22',1179.271000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6358,4,4,'2019-08-21 15:10:22',1179.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6359,4,4,'2019-08-21 15:10:22',1180.055000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6360,4,4,'2019-08-21 15:10:22',1180.870000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6361,4,4,'2019-08-21 15:10:22',1181.161000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6362,4,4,'2019-08-21 15:10:22',1181.819000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6363,4,4,'2019-08-21 15:10:22',1182.768000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6364,4,4,'2019-08-21 15:10:22',1183.717000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6365,4,4,'2019-08-21 15:10:22',1184.600000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6366,4,4,'2019-08-21 15:10:22',1185.564000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6367,4,4,'2019-08-21 15:10:22',1185.867000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6368,4,4,'2019-08-21 15:10:22',1186.348000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6369,4,4,'2019-08-21 15:10:22',1187.113000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6370,4,4,'2019-08-21 15:10:22',1187.470000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6371,4,4,'2019-08-21 15:10:22',1187.962000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6372,4,4,'2019-08-21 15:10:22',1188.417000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6373,4,4,'2019-08-21 15:10:22',1188.895000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6374,4,4,'2019-08-21 15:10:22',1189.761000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6375,4,4,'2019-08-21 15:10:22',1190.709000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6376,4,4,'2019-08-21 15:10:22',1191.542000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6377,4,4,'2019-08-21 15:10:22',1192.541000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6378,4,4,'2019-08-21 15:10:22',1192.870000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6379,4,4,'2019-08-21 15:10:22',1193.456000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6380,4,4,'2019-08-21 15:10:22',1194.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6381,4,4,'2019-08-21 15:10:22',1195.254000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6382,4,4,'2019-08-21 15:10:22',1195.561000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6383,4,4,'2019-08-21 15:10:22',1196.170000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6384,4,4,'2019-08-21 15:10:22',1197.053000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6385,4,4,'2019-08-21 15:10:22',1198.051000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6386,4,4,'2019-08-21 15:10:22',1198.362000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6387,4,4,'2019-08-21 15:10:22',1198.867000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6388,4,4,'2019-08-21 15:10:22',1199.633000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6389,4,4,'2019-08-21 15:10:22',1199.935000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6390,4,4,'2019-08-21 15:10:22',1200.516000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6391,4,4,'2019-08-21 15:10:22',1201.397000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6392,4,4,'2019-08-21 15:10:22',1202.264000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6393,4,4,'2019-08-21 15:10:22',1203.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6394,4,4,'2019-08-21 15:10:22',1203.451000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6395,4,4,'2019-08-21 15:10:22',1204.128000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6396,4,4,'2019-08-21 15:10:22',1204.910000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6397,4,4,'2019-08-21 15:10:22',1205.810000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6398,4,4,'2019-08-21 15:10:22',1206.081000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6399,4,4,'2019-08-21 15:10:22',1206.792000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6400,4,4,'2019-08-21 15:10:22',1207.774000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6401,4,4,'2019-08-21 15:10:22',1208.046000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6402,4,4,'2019-08-21 15:10:22',1208.590000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6403,4,4,'2019-08-21 15:10:22',1209.488000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6404,4,4,'2019-08-21 15:10:22',1210.504000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6405,4,4,'2019-08-21 15:10:22',1211.320000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6406,4,4,'2019-08-21 15:10:22',1211.744000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6407,4,4,'2019-08-21 15:10:22',1212.086000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6408,4,4,'2019-08-21 15:10:22',1212.885000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6409,4,4,'2019-08-21 15:10:22',1213.236000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6410,4,4,'2019-08-21 15:10:22',1213.668000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6411,5,5,'2019-08-21 15:10:37',0.902000,0.000000,NULL,NULL,NULL,NULL,'e-255',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6412,5,5,'2019-08-21 15:10:37',28.845000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6413,5,5,'2019-08-21 15:10:37',29.794000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6414,5,5,'2019-08-21 15:10:37',30.096000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6415,5,5,'2019-08-21 15:10:37',30.692000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6416,5,5,'2019-08-21 15:10:37',31.592000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6417,5,5,'2019-08-21 15:10:37',32.607000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6418,5,5,'2019-08-21 15:10:37',32.877000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6419,5,5,'2019-08-21 15:10:37',33.390000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6420,5,5,'2019-08-21 15:10:37',33.875000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6421,5,5,'2019-08-21 15:10:37',34.155000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6422,5,5,'2019-08-21 15:10:37',35.004000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6423,5,5,'2019-08-21 15:10:37',35.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6424,5,5,'2019-08-21 15:10:37',36.092000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6425,5,5,'2019-08-21 15:10:37',36.803000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6426,5,5,'2019-08-21 15:10:37',37.718000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6427,5,5,'2019-08-21 15:10:37',38.684000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6428,5,5,'2019-08-21 15:10:37',39.683000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6429,5,5,'2019-08-21 15:10:37',40.498000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6430,5,5,'2019-08-21 15:10:37',41.431000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6431,5,5,'2019-08-21 15:10:37',42.263000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6432,5,5,'2019-08-21 15:10:37',42.611000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6433,5,5,'2019-08-21 15:10:37',43.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6434,5,5,'2019-08-21 15:10:37',43.589000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6435,5,5,'2019-08-21 15:10:37',44.194000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6436,5,5,'2019-08-21 15:10:37',45.010000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6437,5,5,'2019-08-21 15:10:37',45.942000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6438,5,5,'2019-08-21 15:10:37',46.340000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6439,5,5,'2019-08-21 15:10:37',46.875000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6440,5,5,'2019-08-21 15:10:37',47.690000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6441,5,5,'2019-08-21 15:10:37',48.225000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6442,5,5,'2019-08-21 15:10:37',48.456000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6443,5,5,'2019-08-21 15:10:37',49.455000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6444,5,5,'2019-08-21 15:10:37',50.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6445,5,5,'2019-08-21 15:10:37',50.512000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6446,5,5,'2019-08-21 15:10:37',51.054000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6447,5,5,'2019-08-21 15:10:37',51.419000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6448,5,5,'2019-08-21 15:10:37',51.886000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6449,5,5,'2019-08-21 15:10:37',52.802000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6450,5,5,'2019-08-21 15:10:37',53.768000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6451,5,5,'2019-08-21 15:10:37',54.583000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6452,5,5,'2019-08-21 15:10:37',54.916000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6453,5,5,'2019-08-21 15:10:37',55.398000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6454,5,5,'2019-08-21 15:10:37',56.248000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6455,5,5,'2019-08-21 15:10:37',57.080000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6456,5,5,'2019-08-21 15:10:37',57.996000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6457,5,5,'2019-08-21 15:10:37',58.979000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6458,5,5,'2019-08-21 15:10:37',59.279000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6459,5,5,'2019-08-21 15:10:37',59.844000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6460,5,5,'2019-08-21 15:10:37',60.246000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6461,5,5,'2019-08-21 15:10:37',60.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6462,5,5,'2019-08-21 15:10:37',61.542000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6463,5,5,'2019-08-21 15:10:37',62.541000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6464,5,5,'2019-08-21 15:10:37',63.373000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6465,5,5,'2019-08-21 15:10:37',64.156000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6466,5,5,'2019-08-21 15:10:37',64.509000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6467,5,5,'2019-08-21 15:10:37',65.038000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6468,5,5,'2019-08-21 15:10:37',65.456000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6469,5,5,'2019-08-21 15:10:37',65.820000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6470,5,5,'2019-08-21 15:10:37',66.753000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6471,5,5,'2019-08-21 15:10:37',67.535000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6472,5,5,'2019-08-21 15:10:37',67.845000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6473,5,5,'2019-08-21 15:10:37',68.518000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6474,5,5,'2019-08-21 15:10:37',69.500000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6475,5,5,'2019-08-21 15:10:37',70.383000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6476,5,5,'2019-08-21 15:10:37',71.281000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6477,5,5,'2019-08-21 15:10:37',72.280000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6478,5,5,'2019-08-21 15:10:37',72.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6479,5,5,'2019-08-21 15:10:37',73.146000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6480,5,5,'2019-08-21 15:10:37',74.095000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6481,5,5,'2019-08-21 15:10:37',74.475000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6482,5,5,'2019-08-21 15:10:37',74.944000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6483,5,5,'2019-08-21 15:10:37',75.710000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6484,5,5,'2019-08-21 15:10:37',76.643000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6485,5,5,'2019-08-21 15:10:37',77.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6486,5,5,'2019-08-21 15:10:37',77.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6487,5,5,'2019-08-21 15:10:37',78.290000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6488,5,5,'2019-08-21 15:10:37',78.677000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6489,5,5,'2019-08-21 15:10:37',79.106000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6490,5,5,'2019-08-21 15:10:37',80.072000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6491,5,5,'2019-08-21 15:10:37',80.954000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6492,5,5,'2019-08-21 15:10:37',81.970000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6493,5,5,'2019-08-21 15:10:37',82.305000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6494,5,5,'2019-08-21 15:10:37',82.802000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6495,5,5,'2019-08-21 15:10:37',83.618000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6496,5,5,'2019-08-21 15:10:37',84.533000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6497,5,5,'2019-08-21 15:10:37',85.399000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6498,5,5,'2019-08-21 15:10:37',85.741000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6499,5,5,'2019-08-21 15:10:37',86.215000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6500,5,5,'2019-08-21 15:10:37',86.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6501,5,5,'2019-08-21 15:10:37',87.147000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6502,5,5,'2019-08-21 15:10:37',87.913000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6503,5,5,'2019-08-21 15:10:37',88.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6504,5,5,'2019-08-21 15:10:37',89.595000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6505,5,5,'2019-08-21 15:10:37',90.478000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6506,5,5,'2019-08-21 15:10:37',90.819000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6507,5,5,'2019-08-21 15:10:37',91.243000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6508,5,5,'2019-08-21 15:10:37',92.092000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6509,5,5,'2019-08-21 15:10:37',92.958000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6510,5,5,'2019-08-21 15:10:37',93.299000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6511,5,5,'2019-08-21 15:10:37',93.724000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6512,5,5,'2019-08-21 15:10:37',94.115000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6513,5,5,'2019-08-21 15:10:37',94.539000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6514,5,5,'2019-08-21 15:10:37',95.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6515,5,5,'2019-08-21 15:10:37',96.438000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6516,5,5,'2019-08-21 15:10:37',97.403000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6517,5,5,'2019-08-21 15:10:37',98.352000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6518,5,5,'2019-08-21 15:10:37',99.351000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6519,5,5,'2019-08-21 15:10:37',99.667000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6520,5,5,'2019-08-21 15:10:37',100.150000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6521,5,5,'2019-08-21 15:10:37',100.949000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6522,5,5,'2019-08-21 15:10:37',101.310000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6523,5,5,'2019-08-21 15:10:37',101.831000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6524,5,5,'2019-08-21 15:10:37',102.664000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6525,5,5,'2019-08-21 15:10:37',103.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6526,5,5,'2019-08-21 15:10:37',104.412000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6527,5,5,'2019-08-21 15:10:37',104.736000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6528,5,5,'2019-08-21 15:10:37',105.395000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6529,5,5,'2019-08-21 15:10:37',106.160000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6530,5,5,'2019-08-21 15:10:37',106.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6531,5,5,'2019-08-21 15:10:37',106.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6532,5,5,'2019-08-21 15:10:37',107.908000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6533,5,5,'2019-08-21 15:10:37',108.674000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6534,5,5,'2019-08-21 15:10:37',109.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6535,5,5,'2019-08-21 15:10:37',109.724000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6536,5,5,'2019-08-21 15:10:37',110.488000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6537,5,5,'2019-08-21 15:10:37',110.832000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6538,5,5,'2019-08-21 15:10:37',111.255000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6539,5,5,'2019-08-21 15:10:37',112.070000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6540,5,5,'2019-08-21 15:10:37',112.435000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6541,5,5,'2019-08-21 15:10:37',113.053000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6542,5,5,'2019-08-21 15:10:37',113.935000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6543,5,5,'2019-08-21 15:10:37',114.867000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6544,5,5,'2019-08-21 15:10:37',115.155000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6545,5,5,'2019-08-21 15:10:37',115.633000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6546,5,5,'2019-08-21 15:10:37',116.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6547,5,5,'2019-08-21 15:10:37',117.481000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6548,5,5,'2019-08-21 15:10:37',118.396000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6549,5,5,'2019-08-21 15:10:37',119.396000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6550,5,5,'2019-08-21 15:10:37',120.295000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6551,5,5,'2019-08-21 15:10:37',120.799000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6552,5,5,'2019-08-21 15:10:37',121.260000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6553,5,5,'2019-08-21 15:10:37',121.675000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6554,5,5,'2019-08-21 15:10:37',122.242000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6555,5,5,'2019-08-21 15:10:37',123.075000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6556,5,5,'2019-08-21 15:10:37',123.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6557,5,5,'2019-08-21 15:10:37',123.974000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6558,5,5,'2019-08-21 15:10:37',124.823000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6559,5,5,'2019-08-21 15:10:37',125.162000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6560,5,5,'2019-08-21 15:10:37',125.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6561,5,5,'2019-08-21 15:10:37',126.654000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6562,5,5,'2019-08-21 15:10:37',127.437000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6563,5,5,'2019-08-21 15:10:37',128.419000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6564,5,5,'2019-08-21 15:10:37',129.234000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6565,5,5,'2019-08-21 15:10:37',130.184000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6566,5,5,'2019-08-21 15:10:37',131.000000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6567,5,5,'2019-08-21 15:10:37',131.981000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6568,5,5,'2019-08-21 15:10:37',132.276000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6569,5,5,'2019-08-21 15:10:37',132.765000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6570,5,5,'2019-08-21 15:10:37',133.183000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6571,5,5,'2019-08-21 15:10:37',133.630000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6572,5,5,'2019-08-21 15:10:37',134.445000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6573,5,5,'2019-08-21 15:10:37',135.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6574,5,5,'2019-08-21 15:10:37',135.551000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6575,5,5,'2019-08-21 15:10:37',136.211000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6576,5,5,'2019-08-21 15:10:37',137.126000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6577,5,5,'2019-08-21 15:10:37',137.496000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6578,5,5,'2019-08-21 15:10:37',137.926000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6579,5,5,'2019-08-21 15:10:37',138.907000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6580,5,5,'2019-08-21 15:10:37',139.890000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6581,5,5,'2019-08-21 15:10:37',140.237000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6582,5,5,'2019-08-21 15:10:37',140.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6583,5,5,'2019-08-21 15:10:37',141.621000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6584,5,5,'2019-08-21 15:10:37',142.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6585,5,5,'2019-08-21 15:10:37',142.736000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6586,5,5,'2019-08-21 15:10:37',143.270000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6587,5,5,'2019-08-21 15:10:37',144.118000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6588,5,5,'2019-08-21 15:10:37',145.067000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6589,5,5,'2019-08-21 15:10:37',145.416000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6590,5,5,'2019-08-21 15:10:37',146.050000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6591,5,5,'2019-08-21 15:10:37',146.933000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6592,5,5,'2019-08-21 15:10:37',147.765000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6593,5,5,'2019-08-21 15:10:37',148.097000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6594,5,5,'2019-08-21 15:10:37',148.714000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6595,5,5,'2019-08-21 15:10:37',149.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6596,5,5,'2019-08-21 15:10:37',150.462000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6597,5,5,'2019-08-21 15:10:37',151.294000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6598,5,5,'2019-08-21 15:10:37',152.076000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6599,5,5,'2019-08-21 15:10:37',152.420000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6600,5,5,'2019-08-21 15:10:37',153.009000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6601,5,5,'2019-08-21 15:10:37',153.925000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6602,5,5,'2019-08-21 15:10:37',154.224000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6603,5,5,'2019-08-21 15:10:37',154.924000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6604,5,5,'2019-08-21 15:10:37',155.292000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6605,5,5,'2019-08-21 15:10:37',155.723000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6606,5,5,'2019-08-21 15:10:37',156.672000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6607,5,5,'2019-08-21 15:10:37',156.995000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6608,5,5,'2019-08-21 15:10:37',157.671000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6609,5,5,'2019-08-21 15:10:37',158.503000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6610,5,5,'2019-08-21 15:10:37',159.452000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6611,5,5,'2019-08-21 15:10:37',160.400000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6612,5,5,'2019-08-21 15:10:37',161.333000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6613,5,5,'2019-08-21 15:10:37',162.232000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6614,5,5,'2019-08-21 15:10:37',163.164000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6615,5,5,'2019-08-21 15:10:37',164.063000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6616,5,5,'2019-08-21 15:10:37',164.422000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6617,5,5,'2019-08-21 15:10:37',164.862000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6618,5,5,'2019-08-21 15:10:37',165.328000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6619,5,5,'2019-08-21 15:10:37',165.745000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6620,5,5,'2019-08-21 15:10:37',166.296000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6621,5,5,'2019-08-21 15:10:37',166.610000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6622,5,5,'2019-08-21 15:10:37',167.526000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6623,5,5,'2019-08-21 15:10:37',168.375000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6624,5,5,'2019-08-21 15:10:37',169.142000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6625,5,5,'2019-08-21 15:10:37',169.511000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6626,5,5,'2019-08-21 15:10:37',170.007000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6627,5,5,'2019-08-21 15:10:37',170.939000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6628,5,5,'2019-08-21 15:10:37',171.705000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6629,5,5,'2019-08-21 15:10:37',172.040000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6630,5,5,'2019-08-21 15:10:37',172.554000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6631,5,5,'2019-08-21 15:10:37',173.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6632,5,5,'2019-08-21 15:10:37',174.502000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6633,5,5,'2019-08-21 15:10:37',174.901000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6634,5,5,'2019-08-21 15:10:37',175.385000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6635,5,5,'2019-08-21 15:10:37',176.233000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6636,5,5,'2019-08-21 15:10:37',177.116000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6637,5,5,'2019-08-21 15:10:37',177.411000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6638,5,5,'2019-08-21 15:10:37',177.948000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6639,5,5,'2019-08-21 15:10:37',178.864000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6640,5,5,'2019-08-21 15:10:37',179.829000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6641,5,5,'2019-08-21 15:10:37',180.192000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6642,5,5,'2019-08-21 15:10:37',180.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6643,5,5,'2019-08-21 15:10:37',181.711000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6644,5,5,'2019-08-21 15:10:37',182.477000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6645,5,5,'2019-08-21 15:10:37',182.822000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6646,5,5,'2019-08-21 15:10:37',183.393000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6647,5,5,'2019-08-21 15:10:37',184.358000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6648,5,5,'2019-08-21 15:10:37',185.190000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6649,5,5,'2019-08-21 15:10:37',186.140000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6650,5,5,'2019-08-21 15:10:37',186.480000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6651,5,5,'2019-08-21 15:10:37',187.005000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6652,5,5,'2019-08-21 15:10:37',187.787000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6653,5,5,'2019-08-21 15:10:37',188.637000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6654,5,5,'2019-08-21 15:10:37',189.536000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6655,5,5,'2019-08-21 15:10:37',189.846000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6656,5,5,'2019-08-21 15:10:37',190.451000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6657,5,5,'2019-08-21 15:10:37',191.301000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6658,5,5,'2019-08-21 15:10:37',191.630000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6659,5,5,'2019-08-21 15:10:37',192.199000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6660,5,5,'2019-08-21 15:10:37',192.708000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6661,5,5,'2019-08-21 15:10:37',193.115000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6662,5,5,'2019-08-21 15:10:37',194.030000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6663,5,5,'2019-08-21 15:10:37',194.930000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6664,5,5,'2019-08-21 15:10:37',195.762000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6665,5,5,'2019-08-21 15:10:37',196.073000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6666,5,5,'2019-08-21 15:10:37',196.728000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6667,5,5,'2019-08-21 15:10:37',197.544000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6668,5,5,'2019-08-21 15:10:37',198.459000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6669,5,5,'2019-08-21 15:10:37',198.733000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6670,5,5,'2019-08-21 15:10:37',199.375000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6671,5,5,'2019-08-21 15:10:37',200.324000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6672,5,5,'2019-08-21 15:10:37',201.189000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6673,5,5,'2019-08-21 15:10:37',202.072000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6674,5,5,'2019-08-21 15:10:37',202.412000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6675,5,5,'2019-08-21 15:10:37',203.055000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6676,5,5,'2019-08-21 15:10:37',203.479000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6677,5,5,'2019-08-21 15:10:37',203.870000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6678,5,5,'2019-08-21 15:10:37',204.702000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6679,5,5,'2019-08-21 15:10:37',205.519000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6680,5,5,'2019-08-21 15:10:37',205.838000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6681,5,5,'2019-08-21 15:10:37',206.467000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6682,5,5,'2019-08-21 15:10:37',207.466000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6683,5,5,'2019-08-21 15:10:37',208.349000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6684,5,5,'2019-08-21 15:10:37',209.230000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6685,5,5,'2019-08-21 15:10:37',210.097000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6686,5,5,'2019-08-21 15:10:37',210.423000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6687,5,5,'2019-08-21 15:10:37',211.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6688,5,5,'2019-08-21 15:10:37',211.895000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6689,5,5,'2019-08-21 15:10:37',212.693000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6690,5,5,'2019-08-21 15:10:37',213.164000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6691,5,5,'2019-08-21 15:10:37',213.576000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6692,5,5,'2019-08-21 15:10:37',214.458000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6693,5,5,'2019-08-21 15:10:37',215.391000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6694,5,5,'2019-08-21 15:10:37',215.713000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6695,5,5,'2019-08-21 15:10:37',216.323000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6696,5,5,'2019-08-21 15:10:37',217.272000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6697,5,5,'2019-08-21 15:10:37',217.647000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6698,5,5,'2019-08-21 15:10:37',218.088000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6699,5,5,'2019-08-21 15:10:37',218.903000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6700,5,5,'2019-08-21 15:10:37',219.902000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6701,5,5,'2019-08-21 15:10:37',220.769000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6702,5,5,'2019-08-21 15:10:37',221.534000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6703,5,5,'2019-08-21 15:10:37',221.931000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6704,5,5,'2019-08-21 15:10:37',222.399000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6705,5,5,'2019-08-21 15:10:37',223.166000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6706,5,5,'2019-08-21 15:10:37',223.553000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6707,5,5,'2019-08-21 15:10:37',224.015000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6708,5,5,'2019-08-21 15:10:37',224.813000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6709,5,5,'2019-08-21 15:10:37',225.796000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6710,5,5,'2019-08-21 15:10:37',226.313000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6711,5,5,'2019-08-21 15:10:37',226.795000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6712,5,5,'2019-08-21 15:10:37',227.661000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6713,5,5,'2019-08-21 15:10:37',228.543000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6714,5,5,'2019-08-21 15:10:37',228.843000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6715,5,5,'2019-08-21 15:10:37',229.542000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6716,5,5,'2019-08-21 15:10:37',230.374000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6717,5,5,'2019-08-21 15:10:37',231.240000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6718,5,5,'2019-08-21 15:10:37',232.056000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6719,5,5,'2019-08-21 15:10:37',232.350000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6720,5,5,'2019-08-21 15:10:37',232.955000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6721,5,5,'2019-08-21 15:10:37',233.854000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6722,5,5,'2019-08-21 15:10:37',234.184000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6723,5,5,'2019-08-21 15:10:37',234.786000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6724,5,5,'2019-08-21 15:10:37',235.232000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6725,5,5,'2019-08-21 15:10:37',235.652000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6726,5,5,'2019-08-21 15:10:37',236.099000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6727,5,5,'2019-08-21 15:10:37',236.501000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6728,5,5,'2019-08-21 15:10:37',237.500000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6729,5,5,'2019-08-21 15:10:37',238.382000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6730,5,5,'2019-08-21 15:10:37',239.348000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6731,5,5,'2019-08-21 15:10:37',240.247000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6732,5,5,'2019-08-21 15:10:37',240.623000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6733,5,5,'2019-08-21 15:10:37',241.196000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6734,5,5,'2019-08-21 15:10:37',241.621000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6735,5,5,'2019-08-21 15:10:37',242.145000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6736,5,5,'2019-08-21 15:10:37',242.961000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6737,5,5,'2019-08-21 15:10:37',243.826000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6738,5,5,'2019-08-21 15:10:37',244.643000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6739,5,5,'2019-08-21 15:10:37',245.558000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6740,5,5,'2019-08-21 15:10:37',245.873000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6741,5,5,'2019-08-21 15:10:37',246.340000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6742,5,5,'2019-08-21 15:10:37',247.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6743,5,5,'2019-08-21 15:10:37',248.238000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6744,5,5,'2019-08-21 15:10:37',249.204000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6745,5,5,'2019-08-21 15:10:37',249.986000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6746,5,5,'2019-08-21 15:10:37',250.428000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6747,5,5,'2019-08-21 15:10:37',250.886000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6748,5,5,'2019-08-21 15:10:37',251.751000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6749,5,5,'2019-08-21 15:10:37',252.733000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6750,5,5,'2019-08-21 15:10:37',253.582000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6751,5,5,'2019-08-21 15:10:37',253.914000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6752,5,5,'2019-08-21 15:10:37',254.498000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6753,5,5,'2019-08-21 15:10:37',254.872000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6754,5,5,'2019-08-21 15:10:37',255.363000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6755,5,5,'2019-08-21 15:10:37',256.246000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6756,5,5,'2019-08-21 15:10:37',257.229000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6757,5,5,'2019-08-21 15:10:37',258.178000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6758,5,5,'2019-08-21 15:10:37',259.177000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6759,5,5,'2019-08-21 15:10:37',259.558000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6760,5,5,'2019-08-21 15:10:37',259.976000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6761,5,5,'2019-08-21 15:10:37',260.475000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6762,5,5,'2019-08-21 15:10:37',260.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6763,5,5,'2019-08-21 15:10:37',261.790000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6764,5,5,'2019-08-21 15:10:37',262.639000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6765,5,5,'2019-08-21 15:10:37',263.004000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6766,5,5,'2019-08-21 15:10:37',263.405000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6767,5,5,'2019-08-21 15:10:37',263.770000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6768,5,5,'2019-08-21 15:10:37',264.237000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6769,5,5,'2019-08-21 15:10:37',265.070000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6770,5,5,'2019-08-21 15:10:37',266.002000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6771,5,5,'2019-08-21 15:10:37',266.918000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6772,5,5,'2019-08-21 15:10:37',267.884000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6773,5,5,'2019-08-21 15:10:37',268.749000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6774,5,5,'2019-08-21 15:10:37',269.748000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6775,5,5,'2019-08-21 15:10:37',270.647000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6776,5,5,'2019-08-21 15:10:37',271.045000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6777,5,5,'2019-08-21 15:10:37',271.562000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6778,5,5,'2019-08-21 15:10:37',272.083000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6779,5,5,'2019-08-21 15:10:37',272.562000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6780,5,5,'2019-08-21 15:10:37',273.344000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6781,5,5,'2019-08-21 15:10:37',273.756000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6782,5,5,'2019-08-21 15:10:37',274.227000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6783,5,5,'2019-08-21 15:10:37',275.092000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6784,5,5,'2019-08-21 15:10:37',276.091000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6785,5,5,'2019-08-21 15:10:37',276.990000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6786,5,5,'2019-08-21 15:10:37',277.494000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6787,5,5,'2019-08-21 15:10:37',277.906000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6788,5,5,'2019-08-21 15:10:37',278.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6789,5,5,'2019-08-21 15:10:37',278.705000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6790,5,5,'2019-08-21 15:10:37',279.537000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6791,5,5,'2019-08-21 15:10:37',280.486000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6792,5,5,'2019-08-21 15:10:37',281.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6793,5,5,'2019-08-21 15:10:37',282.334000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6794,5,5,'2019-08-21 15:10:37',282.674000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6795,5,5,'2019-08-21 15:10:37',283.283000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6796,5,5,'2019-08-21 15:10:37',284.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6797,5,5,'2019-08-21 15:10:37',284.558000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6798,5,5,'2019-08-21 15:10:37',285.215000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6799,5,5,'2019-08-21 15:10:37',285.626000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6800,5,5,'2019-08-21 15:10:37',286.196000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6801,5,5,'2019-08-21 15:10:37',287.013000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6802,5,5,'2019-08-21 15:10:37',287.828000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6803,5,5,'2019-08-21 15:10:37',288.794000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6804,5,5,'2019-08-21 15:10:37',289.776000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6805,5,5,'2019-08-21 15:10:37',290.642000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6806,5,5,'2019-08-21 15:10:37',290.946000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6807,5,5,'2019-08-21 15:10:37',291.425000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6808,5,5,'2019-08-21 15:10:37',292.406000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6809,5,5,'2019-08-21 15:10:37',293.355000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6810,5,5,'2019-08-21 15:10:37',332.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6811,5,5,'2019-08-21 15:10:37',358.102000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6812,5,5,'2019-08-21 15:10:37',358.507000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6813,5,5,'2019-08-21 15:10:37',358.867000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6814,5,5,'2019-08-21 15:10:37',359.172000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6815,5,5,'2019-08-21 15:10:37',359.866000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6816,5,5,'2019-08-21 15:10:37',360.815000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6817,5,5,'2019-08-21 15:10:37',361.581000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6818,5,5,'2019-08-21 15:10:37',362.529000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6819,5,5,'2019-08-21 15:10:37',363.396000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6820,5,5,'2019-08-21 15:10:37',363.706000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6821,5,5,'2019-08-21 15:10:37',364.295000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6822,5,5,'2019-08-21 15:10:37',365.144000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6823,5,5,'2019-08-21 15:10:37',366.143000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6824,5,5,'2019-08-21 15:10:37',366.941000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6825,5,5,'2019-08-21 15:10:37',367.263000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6826,5,5,'2019-08-21 15:10:37',367.857000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6827,5,5,'2019-08-21 15:10:37',368.673000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6828,5,5,'2019-08-21 15:10:37',368.996000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6829,5,5,'2019-08-21 15:10:37',369.455000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6830,5,5,'2019-08-21 15:10:37',370.024000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6831,5,5,'2019-08-21 15:10:37',370.238000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6832,5,5,'2019-08-21 15:10:37',371.237000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6833,5,5,'2019-08-21 15:10:37',372.202000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6834,5,5,'2019-08-21 15:10:37',373.002000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6835,5,5,'2019-08-21 15:10:37',373.884000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6836,5,5,'2019-08-21 15:10:37',374.196000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6837,5,5,'2019-08-21 15:10:37',374.899000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6838,5,5,'2019-08-21 15:10:37',375.815000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6839,5,5,'2019-08-21 15:10:37',376.121000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6840,5,5,'2019-08-21 15:10:37',376.714000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6841,5,5,'2019-08-21 15:10:37',377.613000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6842,5,5,'2019-08-21 15:10:37',378.412000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6843,5,5,'2019-08-21 15:10:37',379.278000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6844,5,5,'2019-08-21 15:10:37',380.277000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6845,5,5,'2019-08-21 15:10:37',381.043000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6846,5,5,'2019-08-21 15:10:37',381.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6847,5,5,'2019-08-21 15:10:37',382.824000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6848,5,5,'2019-08-21 15:10:37',383.145000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6849,5,5,'2019-08-21 15:10:37',383.757000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6850,5,5,'2019-08-21 15:10:37',384.132000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6851,5,5,'2019-08-21 15:10:37',384.522000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6852,5,5,'2019-08-21 15:10:37',385.455000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6853,5,5,'2019-08-21 15:10:37',386.337000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6854,5,5,'2019-08-21 15:10:37',387.153000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6855,5,5,'2019-08-21 15:10:37',388.052000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6856,5,5,'2019-08-21 15:10:37',388.385000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6857,5,5,'2019-08-21 15:10:37',388.918000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6858,5,5,'2019-08-21 15:10:37',389.291000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6859,5,5,'2019-08-21 15:10:37',389.800000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6860,5,5,'2019-08-21 15:10:37',390.749000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6861,5,5,'2019-08-21 15:10:37',391.166000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6862,5,5,'2019-08-21 15:10:37',391.631000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6863,5,5,'2019-08-21 15:10:37',392.431000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6864,5,5,'2019-08-21 15:10:37',393.246000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6865,5,5,'2019-08-21 15:10:37',393.554000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6866,5,5,'2019-08-21 15:10:37',394.012000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6867,5,5,'2019-08-21 15:10:37',394.878000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6868,5,5,'2019-08-21 15:10:37',395.860000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6869,5,5,'2019-08-21 15:10:37',396.134000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6870,5,5,'2019-08-21 15:10:37',396.859000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6871,5,5,'2019-08-21 15:10:37',397.232000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6872,5,5,'2019-08-21 15:10:37',397.774000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6873,5,5,'2019-08-21 15:10:37',398.641000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6874,5,5,'2019-08-21 15:10:37',399.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6875,5,5,'2019-08-21 15:10:37',400.389000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6876,5,5,'2019-08-21 15:10:37',401.204000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6877,5,5,'2019-08-21 15:10:37',401.545000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6878,5,5,'2019-08-21 15:10:37',402.054000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6879,5,5,'2019-08-21 15:10:37',402.432000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6880,5,5,'2019-08-21 15:10:37',403.035000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6881,5,5,'2019-08-21 15:10:37',403.818000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6882,5,5,'2019-08-21 15:10:37',404.801000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6883,5,5,'2019-08-21 15:10:37',405.633000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6884,5,5,'2019-08-21 15:10:37',406.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6885,5,5,'2019-08-21 15:10:37',407.331000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6886,5,5,'2019-08-21 15:10:37',407.672000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6887,5,5,'2019-08-21 15:10:37',408.280000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6888,5,5,'2019-08-21 15:10:37',409.212000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6889,5,5,'2019-08-21 15:10:37',409.566000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6890,5,5,'2019-08-21 15:10:37',410.062000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6891,5,5,'2019-08-21 15:10:37',410.943000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6892,5,5,'2019-08-21 15:10:37',411.260000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6893,5,5,'2019-08-21 15:10:37',411.926000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6894,5,5,'2019-08-21 15:10:37',412.236000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6895,5,5,'2019-08-21 15:10:37',412.725000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6896,5,5,'2019-08-21 15:10:37',413.724000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6897,5,5,'2019-08-21 15:10:37',414.689000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6898,5,5,'2019-08-21 15:10:37',415.455000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6899,5,5,'2019-08-21 15:10:37',416.221000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6900,5,5,'2019-08-21 15:10:37',416.570000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6901,5,5,'2019-08-21 15:10:37',417.087000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6902,5,5,'2019-08-21 15:10:37',418.003000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6903,5,5,'2019-08-21 15:10:37',418.935000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6904,5,5,'2019-08-21 15:10:37',419.250000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6905,5,5,'2019-08-21 15:10:37',419.718000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6906,5,5,'2019-08-21 15:10:37',420.583000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6907,5,5,'2019-08-21 15:10:37',421.532000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6908,5,5,'2019-08-21 15:10:37',421.891000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6909,5,5,'2019-08-21 15:10:37',422.531000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6910,5,5,'2019-08-21 15:10:37',422.938000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6911,5,5,'2019-08-21 15:10:37',423.297000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6912,5,5,'2019-08-21 15:10:37',424.062000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6913,5,5,'2019-08-21 15:10:37',424.878000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6914,5,5,'2019-08-21 15:10:37',425.827000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6915,5,5,'2019-08-21 15:10:37',426.793000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6916,5,5,'2019-08-21 15:10:37',427.625000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6917,5,5,'2019-08-21 15:10:37',427.887000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6918,5,5,'2019-08-21 15:10:37',428.441000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6919,5,5,'2019-08-21 15:10:37',428.954000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6920,5,5,'2019-08-21 15:10:37',429.323000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6921,5,5,'2019-08-21 15:10:37',430.272000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6922,5,5,'2019-08-21 15:10:37',431.121000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6923,5,5,'2019-08-21 15:10:37',432.004000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6924,5,5,'2019-08-21 15:10:37',433.003000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6925,5,5,'2019-08-21 15:10:37',433.901000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6926,5,5,'2019-08-21 15:10:37',434.295000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6927,5,5,'2019-08-21 15:10:37',434.867000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6928,5,5,'2019-08-21 15:10:37',435.700000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6929,5,5,'2019-08-21 15:10:37',436.699000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6930,5,5,'2019-08-21 15:10:37',436.986000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6931,5,5,'2019-08-21 15:10:37',437.631000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6932,5,5,'2019-08-21 15:10:37',438.613000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6933,5,5,'2019-08-21 15:10:37',438.981000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6934,5,5,'2019-08-21 15:10:37',439.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6935,5,5,'2019-08-21 15:10:37',440.512000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6936,5,5,'2019-08-21 15:10:37',441.394000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6937,5,5,'2019-08-21 15:10:37',441.691000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6938,5,5,'2019-08-21 15:10:37',442.227000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6939,5,5,'2019-08-21 15:10:37',443.075000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6940,5,5,'2019-08-21 15:10:37',444.008000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6941,5,5,'2019-08-21 15:10:37',444.990000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6942,5,5,'2019-08-21 15:10:37',445.822000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6943,5,5,'2019-08-21 15:10:37',446.136000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6944,5,5,'2019-08-21 15:10:37',446.721000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6945,5,5,'2019-08-21 15:10:37',447.504000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6946,5,5,'2019-08-21 15:10:37',447.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6947,5,5,'2019-08-21 15:10:37',448.386000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6948,5,5,'2019-08-21 15:10:37',449.202000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6949,5,5,'2019-08-21 15:10:37',449.582000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6950,5,5,'2019-08-21 15:10:37',449.968000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6951,5,5,'2019-08-21 15:10:37',450.298000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6952,5,5,'2019-08-21 15:10:37',450.816000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6953,5,5,'2019-08-21 15:10:37',451.716000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6954,5,5,'2019-08-21 15:10:37',452.648000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6955,5,5,'2019-08-21 15:10:37',453.547000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6956,5,5,'2019-08-21 15:10:37',454.380000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6957,5,5,'2019-08-21 15:10:37',455.212000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6958,5,5,'2019-08-21 15:10:37',455.527000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6959,5,5,'2019-08-21 15:10:37',456.078000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6960,5,5,'2019-08-21 15:10:37',456.943000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6961,5,5,'2019-08-21 15:10:37',457.281000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6962,5,5,'2019-08-21 15:10:37',457.942000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6963,5,5,'2019-08-21 15:10:37',458.841000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6964,5,5,'2019-08-21 15:10:37',459.155000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6965,5,5,'2019-08-21 15:10:37',459.807000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6966,5,5,'2019-08-21 15:10:37',460.822000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6967,5,5,'2019-08-21 15:10:37',461.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6968,5,5,'2019-08-21 15:10:37',462.128000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6969,5,5,'2019-08-21 15:10:37',462.754000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6970,5,5,'2019-08-21 15:10:37',463.586000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6971,5,5,'2019-08-21 15:10:37',464.419000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6972,5,5,'2019-08-21 15:10:37',465.317000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6973,5,5,'2019-08-21 15:10:37',466.200000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6974,5,5,'2019-08-21 15:10:37',466.572000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6975,5,5,'2019-08-21 15:10:37',467.065000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6976,5,5,'2019-08-21 15:10:37',467.831000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6977,5,5,'2019-08-21 15:10:37',468.214000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6978,5,5,'2019-08-21 15:10:37',468.697000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6979,5,5,'2019-08-21 15:10:37',469.529000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6980,5,5,'2019-08-21 15:10:37',470.396000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6981,5,5,'2019-08-21 15:10:37',471.194000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6982,5,5,'2019-08-21 15:10:37',471.977000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6983,5,5,'2019-08-21 15:10:37',472.336000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6984,5,5,'2019-08-21 15:10:37',472.743000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6985,5,5,'2019-08-21 15:10:37',473.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6986,5,5,'2019-08-21 15:10:37',473.928000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6987,5,5,'2019-08-21 15:10:37',474.291000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6988,5,5,'2019-08-21 15:10:37',474.704000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6989,5,5,'2019-08-21 15:10:37',475.273000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6990,5,5,'2019-08-21 15:10:37',476.239000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6991,5,5,'2019-08-21 15:10:37',477.204000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6992,5,5,'2019-08-21 15:10:37',478.104000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6993,5,5,'2019-08-21 15:10:37',478.412000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6994,5,5,'2019-08-21 15:10:37',478.869000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6995,5,5,'2019-08-21 15:10:37',479.769000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6996,5,5,'2019-08-21 15:10:37',480.768000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6997,5,5,'2019-08-21 15:10:37',481.184000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6998,5,5,'2019-08-21 15:10:37',481.666000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (6999,5,5,'2019-08-21 15:10:37',482.499000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7000,5,5,'2019-08-21 15:10:37',483.381000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7001,5,5,'2019-08-21 15:10:37',483.662000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7002,5,5,'2019-08-21 15:10:37',484.347000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7003,5,5,'2019-08-21 15:10:37',485.362000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7004,5,5,'2019-08-21 15:10:37',485.728000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7005,5,5,'2019-08-21 15:10:37',486.194000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7006,5,5,'2019-08-21 15:10:37',487.044000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7007,5,5,'2019-08-21 15:10:37',487.843000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7008,5,5,'2019-08-21 15:10:37',488.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7009,5,5,'2019-08-21 15:10:37',489.073000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7010,5,5,'2019-08-21 15:10:37',489.591000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7011,5,5,'2019-08-21 15:10:37',490.424000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7012,5,5,'2019-08-21 15:10:37',491.256000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7013,5,5,'2019-08-21 15:10:37',492.055000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7014,5,5,'2019-08-21 15:10:37',492.489000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7015,5,5,'2019-08-21 15:10:37',492.938000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7016,5,5,'2019-08-21 15:10:37',493.870000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7017,5,5,'2019-08-21 15:10:37',494.752000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7018,5,5,'2019-08-21 15:10:37',495.089000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7019,5,5,'2019-08-21 15:10:37',495.567000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7020,5,5,'2019-08-21 15:10:37',496.417000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7021,5,5,'2019-08-21 15:10:37',496.792000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7022,5,5,'2019-08-21 15:10:37',497.399000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7023,5,5,'2019-08-21 15:10:37',498.382000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7024,5,5,'2019-08-21 15:10:37',499.181000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7025,5,5,'2019-08-21 15:10:37',499.513000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7026,5,5,'2019-08-21 15:10:37',500.163000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7027,5,5,'2019-08-21 15:10:37',501.045000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7028,5,5,'2019-08-21 15:10:37',501.828000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7029,5,5,'2019-08-21 15:10:37',502.660000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7030,5,5,'2019-08-21 15:10:37',503.070000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7031,5,5,'2019-08-21 15:10:37',503.476000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7032,5,5,'2019-08-21 15:10:37',504.458000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7033,5,5,'2019-08-21 15:10:37',504.804000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7034,5,5,'2019-08-21 15:10:37',505.357000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7035,5,5,'2019-08-21 15:10:37',506.340000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7036,5,5,'2019-08-21 15:10:37',507.255000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7037,5,5,'2019-08-21 15:10:37',507.595000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7038,5,5,'2019-08-21 15:10:37',508.154000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7039,5,5,'2019-08-21 15:10:37',508.986000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7040,5,5,'2019-08-21 15:10:37',509.298000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7041,5,5,'2019-08-21 15:10:37',509.869000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7042,5,5,'2019-08-21 15:10:37',510.784000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7043,5,5,'2019-08-21 15:10:37',511.684000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7044,5,5,'2019-08-21 15:10:37',512.616000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7045,5,5,'2019-08-21 15:10:37',512.966000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7046,5,5,'2019-08-21 15:10:37',513.415000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7047,5,5,'2019-08-21 15:10:37',514.214000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7048,5,5,'2019-08-21 15:10:37',515.163000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7049,5,5,'2019-08-21 15:10:37',516.096000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7050,5,5,'2019-08-21 15:10:37',516.442000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7051,5,5,'2019-08-21 15:10:37',516.994000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7052,5,5,'2019-08-21 15:10:37',517.977000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7053,5,5,'2019-08-21 15:10:37',518.959000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7054,5,5,'2019-08-21 15:10:37',519.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7055,5,5,'2019-08-21 15:10:37',520.110000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7056,5,5,'2019-08-21 15:10:37',520.690000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7057,5,5,'2019-08-21 15:10:37',521.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7058,5,5,'2019-08-21 15:10:37',522.035000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7059,5,5,'2019-08-21 15:10:37',522.488000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7060,5,5,'2019-08-21 15:10:37',523.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7061,5,5,'2019-08-21 15:10:37',524.337000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7062,5,5,'2019-08-21 15:10:37',525.202000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7063,5,5,'2019-08-21 15:10:37',525.471000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7064,5,5,'2019-08-21 15:10:37',526.151000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7065,5,5,'2019-08-21 15:10:37',527.017000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7066,5,5,'2019-08-21 15:10:37',527.386000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7067,5,5,'2019-08-21 15:10:37',527.866000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7068,5,5,'2019-08-21 15:10:37',528.323000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7069,5,5,'2019-08-21 15:10:37',528.865000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7070,5,5,'2019-08-21 15:10:37',529.229000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7071,5,5,'2019-08-21 15:10:37',529.730000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7072,5,5,'2019-08-21 15:10:37',530.713000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7073,5,5,'2019-08-21 15:10:37',531.712000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7074,5,5,'2019-08-21 15:10:37',532.644000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7075,5,5,'2019-08-21 15:10:37',533.410000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7076,5,5,'2019-08-21 15:10:37',534.375000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7077,5,5,'2019-08-21 15:10:37',535.324000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7078,5,5,'2019-08-21 15:10:37',536.273000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7079,5,5,'2019-08-21 15:10:37',536.687000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7080,5,5,'2019-08-21 15:10:37',537.206000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7081,5,5,'2019-08-21 15:10:37',537.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7082,5,5,'2019-08-21 15:10:37',538.171000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7083,5,5,'2019-08-21 15:10:37',539.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7084,5,5,'2019-08-21 15:10:37',540.103000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7085,5,5,'2019-08-21 15:10:37',541.002000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7086,5,5,'2019-08-21 15:10:37',541.817000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7087,5,5,'2019-08-21 15:10:37',542.179000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7088,5,5,'2019-08-21 15:10:37',542.633000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7089,5,5,'2019-08-21 15:10:37',543.532000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7090,5,5,'2019-08-21 15:10:37',544.043000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7091,5,5,'2019-08-21 15:10:37',544.331000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7092,5,5,'2019-08-21 15:10:37',544.657000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7093,5,5,'2019-08-21 15:10:37',545.197000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7094,5,5,'2019-08-21 15:10:37',546.129000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7095,5,5,'2019-08-21 15:10:37',546.962000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7096,5,5,'2019-08-21 15:10:37',547.268000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7097,5,5,'2019-08-21 15:10:37',547.811000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7098,5,5,'2019-08-21 15:10:37',548.810000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7099,5,5,'2019-08-21 15:10:37',549.809000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7100,5,5,'2019-08-21 15:10:37',550.230000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7101,5,5,'2019-08-21 15:10:37',550.624000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7102,5,5,'2019-08-21 15:10:37',551.474000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7103,5,5,'2019-08-21 15:10:37',551.843000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7104,5,5,'2019-08-21 15:10:37',552.406000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7105,5,5,'2019-08-21 15:10:37',553.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7106,5,5,'2019-08-21 15:10:37',554.037000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7107,5,5,'2019-08-21 15:10:37',555.020000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7108,5,5,'2019-08-21 15:10:37',555.852000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7109,5,5,'2019-08-21 15:10:37',556.226000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7110,5,5,'2019-08-21 15:10:37',556.701000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7111,5,5,'2019-08-21 15:10:37',557.617000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7112,5,5,'2019-08-21 15:10:37',558.565000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7113,5,5,'2019-08-21 15:10:37',559.515000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7114,5,5,'2019-08-21 15:10:37',559.763000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7115,5,5,'2019-08-21 15:10:37',560.464000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7116,5,5,'2019-08-21 15:10:37',560.973000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7117,5,5,'2019-08-21 15:10:37',561.379000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7118,5,5,'2019-08-21 15:10:37',562.245000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7119,5,5,'2019-08-21 15:10:37',563.011000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7120,5,5,'2019-08-21 15:10:37',563.894000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7121,5,5,'2019-08-21 15:10:37',564.237000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7122,5,5,'2019-08-21 15:10:37',564.842000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7123,5,5,'2019-08-21 15:10:37',565.758000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7124,5,5,'2019-08-21 15:10:37',566.142000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7125,5,5,'2019-08-21 15:10:37',566.674000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7126,5,5,'2019-08-21 15:10:37',567.522000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7127,5,5,'2019-08-21 15:10:37',568.438000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7128,5,5,'2019-08-21 15:10:37',569.421000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7129,5,5,'2019-08-21 15:10:37',569.770000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7130,5,5,'2019-08-21 15:10:37',570.270000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7131,5,5,'2019-08-21 15:10:37',571.035000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7132,5,5,'2019-08-21 15:10:37',571.935000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7133,5,5,'2019-08-21 15:10:37',572.269000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7134,5,5,'2019-08-21 15:10:37',572.700000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7135,5,5,'2019-08-21 15:10:37',573.125000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7136,5,5,'2019-08-21 15:10:37',573.600000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7137,5,5,'2019-08-21 15:10:37',574.365000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7138,5,5,'2019-08-21 15:10:37',575.281000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7139,5,5,'2019-08-21 15:10:37',576.263000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7140,5,5,'2019-08-21 15:10:37',576.562000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7141,5,5,'2019-08-21 15:10:37',577.162000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7142,5,5,'2019-08-21 15:10:37',577.589000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7143,5,5,'2019-08-21 15:10:37',578.062000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7144,5,5,'2019-08-21 15:10:37',579.060000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7145,5,5,'2019-08-21 15:10:37',579.959000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7146,5,5,'2019-08-21 15:10:37',580.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7147,5,5,'2019-08-21 15:10:37',581.840000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7148,5,5,'2019-08-21 15:10:37',582.806000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7149,5,5,'2019-08-21 15:10:37',583.722000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7150,5,5,'2019-08-21 15:10:37',584.038000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7151,5,5,'2019-08-21 15:10:37',584.587000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7152,5,5,'2019-08-21 15:10:37',585.387000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7153,5,5,'2019-08-21 15:10:37',585.752000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7154,5,5,'2019-08-21 15:10:37',586.202000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7155,5,5,'2019-08-21 15:10:37',587.118000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7156,5,5,'2019-08-21 15:10:37',587.505000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7157,5,5,'2019-08-21 15:10:37',587.900000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7158,5,5,'2019-08-21 15:10:37',588.200000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7159,5,5,'2019-08-21 15:10:37',588.816000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7160,5,5,'2019-08-21 15:10:37',589.698000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7161,5,5,'2019-08-21 15:10:37',590.614000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7162,5,5,'2019-08-21 15:10:37',591.546000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7163,5,5,'2019-08-21 15:10:37',592.412000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7164,5,5,'2019-08-21 15:10:37',593.211000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7165,5,5,'2019-08-21 15:10:37',594.077000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7166,5,5,'2019-08-21 15:10:37',594.942000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7167,5,5,'2019-08-21 15:10:37',595.305000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7168,5,5,'2019-08-21 15:10:37',595.709000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7169,5,5,'2019-08-21 15:10:37',596.110000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7170,5,5,'2019-08-21 15:10:37',596.674000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7171,5,5,'2019-08-21 15:10:37',597.474000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7172,5,5,'2019-08-21 15:10:37',598.372000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7173,5,5,'2019-08-21 15:10:37',599.305000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7174,5,5,'2019-08-21 15:10:37',600.120000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7175,5,5,'2019-08-21 15:10:37',600.504000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7176,5,5,'2019-08-21 15:10:37',600.970000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7177,5,5,'2019-08-21 15:10:37',601.311000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7178,5,5,'2019-08-21 15:10:37',601.901000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7179,5,5,'2019-08-21 15:10:37',602.668000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7180,5,5,'2019-08-21 15:10:37',603.583000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7181,5,5,'2019-08-21 15:10:37',604.071000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7182,5,5,'2019-08-21 15:10:37',604.449000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7183,5,5,'2019-08-21 15:10:37',605.215000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7184,5,5,'2019-08-21 15:10:37',606.014000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7185,5,5,'2019-08-21 15:10:37',606.349000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7186,5,5,'2019-08-21 15:10:37',606.963000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7187,5,5,'2019-08-21 15:10:37',607.762000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7188,5,5,'2019-08-21 15:10:37',608.711000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7189,5,5,'2019-08-21 15:10:37',609.594000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7190,5,5,'2019-08-21 15:10:37',609.956000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7191,5,5,'2019-08-21 15:10:37',610.509000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7192,5,5,'2019-08-21 15:10:37',610.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7193,5,5,'2019-08-21 15:10:37',611.325000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7194,5,5,'2019-08-21 15:10:37',612.141000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7195,5,5,'2019-08-21 15:10:37',612.956000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7196,5,5,'2019-08-21 15:10:37',613.789000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7197,5,5,'2019-08-21 15:10:37',614.188000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7198,5,5,'2019-08-21 15:10:37',614.638000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7199,5,5,'2019-08-21 15:10:37',614.975000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7200,5,5,'2019-08-21 15:10:37',615.471000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7201,5,5,'2019-08-21 15:10:37',616.402000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7202,5,5,'2019-08-21 15:10:37',617.318000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7203,5,5,'2019-08-21 15:10:37',618.117000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7204,5,5,'2019-08-21 15:10:37',619.017000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7205,5,5,'2019-08-21 15:10:37',619.799000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7206,5,5,'2019-08-21 15:10:37',620.145000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7207,5,5,'2019-08-21 15:10:37',620.665000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7208,5,5,'2019-08-21 15:10:37',621.031000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7209,5,5,'2019-08-21 15:10:37',621.447000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7210,5,5,'2019-08-21 15:10:37',622.362000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7211,5,5,'2019-08-21 15:10:37',645.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7212,5,5,'2019-08-21 15:10:37',675.044000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7213,5,5,'2019-08-21 15:10:37',675.494000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7214,5,5,'2019-08-21 15:10:37',675.993000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7215,5,5,'2019-08-21 15:10:37',676.858000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7216,5,5,'2019-08-21 15:10:37',677.791000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7217,5,5,'2019-08-21 15:10:37',678.154000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7218,5,5,'2019-08-21 15:10:37',678.689000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7219,5,5,'2019-08-21 15:10:37',679.489000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7220,5,5,'2019-08-21 15:10:37',680.305000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7221,5,5,'2019-08-21 15:10:37',680.794000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7222,5,5,'2019-08-21 15:10:37',681.237000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7223,5,5,'2019-08-21 15:10:37',681.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7224,5,5,'2019-08-21 15:10:37',682.103000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7225,5,5,'2019-08-21 15:10:37',682.952000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7226,5,5,'2019-08-21 15:10:37',683.718000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7227,5,5,'2019-08-21 15:10:37',684.616000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7228,5,5,'2019-08-21 15:10:37',685.482000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7229,5,5,'2019-08-21 15:10:37',685.752000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7230,5,5,'2019-08-21 15:10:37',686.331000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7231,5,5,'2019-08-21 15:10:37',687.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7232,5,5,'2019-08-21 15:10:37',688.113000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7233,5,5,'2019-08-21 15:10:37',688.979000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7234,5,5,'2019-08-21 15:10:37',689.978000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7235,5,5,'2019-08-21 15:10:37',690.236000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7236,5,5,'2019-08-21 15:10:37',690.877000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7237,5,5,'2019-08-21 15:10:37',691.825000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7238,5,5,'2019-08-21 15:10:37',692.070000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7239,5,5,'2019-08-21 15:10:37',692.808000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7240,5,5,'2019-08-21 15:10:37',693.657000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7241,5,5,'2019-08-21 15:10:37',694.423000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7242,5,5,'2019-08-21 15:10:37',694.650000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7243,5,5,'2019-08-21 15:10:37',695.405000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7244,5,5,'2019-08-21 15:10:37',696.254000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7245,5,5,'2019-08-21 15:10:37',696.575000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7246,5,5,'2019-08-21 15:10:37',697.187000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7247,5,5,'2019-08-21 15:10:37',698.169000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7248,5,5,'2019-08-21 15:10:37',698.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7249,5,5,'2019-08-21 15:10:37',699.285000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7250,5,5,'2019-08-21 15:10:37',699.833000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7251,5,5,'2019-08-21 15:10:37',700.649000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7252,5,5,'2019-08-21 15:10:37',701.498000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7253,5,5,'2019-08-21 15:10:37',702.348000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7254,5,5,'2019-08-21 15:10:37',702.671000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7255,5,5,'2019-08-21 15:10:37',703.347000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7256,5,5,'2019-08-21 15:10:37',704.146000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7257,5,5,'2019-08-21 15:10:37',704.445000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7258,5,5,'2019-08-21 15:10:37',704.911000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7259,5,5,'2019-08-21 15:10:37',705.910000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7260,5,5,'2019-08-21 15:10:37',706.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7261,5,5,'2019-08-21 15:10:37',707.196000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7262,5,5,'2019-08-21 15:10:37',707.824000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7263,5,5,'2019-08-21 15:10:37',708.591000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7264,5,5,'2019-08-21 15:10:37',708.909000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7265,5,5,'2019-08-21 15:10:37',709.473000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7266,5,5,'2019-08-21 15:10:37',710.306000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7267,5,5,'2019-08-21 15:10:37',711.138000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7268,5,5,'2019-08-21 15:10:37',711.986000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7269,5,5,'2019-08-21 15:10:37',712.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7270,5,5,'2019-08-21 15:10:37',713.232000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7271,5,5,'2019-08-21 15:10:37',713.835000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7272,5,5,'2019-08-21 15:10:37',714.750000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7273,5,5,'2019-08-21 15:10:37',715.683000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7274,5,5,'2019-08-21 15:10:37',716.465000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7275,5,5,'2019-08-21 15:10:37',716.779000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7276,5,5,'2019-08-21 15:10:37',717.281000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7277,5,5,'2019-08-21 15:10:37',718.146000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7278,5,5,'2019-08-21 15:10:37',719.146000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7279,5,5,'2019-08-21 15:10:37',719.928000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7280,5,5,'2019-08-21 15:10:37',720.175000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7281,5,5,'2019-08-21 15:10:37',720.711000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7282,5,5,'2019-08-21 15:10:37',721.560000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7283,5,5,'2019-08-21 15:10:37',721.898000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7284,5,5,'2019-08-21 15:10:37',722.559000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7285,5,5,'2019-08-21 15:10:37',723.475000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7286,5,5,'2019-08-21 15:10:37',724.456000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7287,5,5,'2019-08-21 15:10:37',725.455000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7288,5,5,'2019-08-21 15:10:37',725.768000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7289,5,5,'2019-08-21 15:10:37',726.305000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7290,5,5,'2019-08-21 15:10:37',726.664000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7291,5,5,'2019-08-21 15:10:37',727.287000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7292,5,5,'2019-08-21 15:10:37',728.086000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7293,5,5,'2019-08-21 15:10:37',728.885000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7294,5,5,'2019-08-21 15:10:37',729.817000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7295,5,5,'2019-08-21 15:10:37',730.161000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7296,5,5,'2019-08-21 15:10:37',730.717000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7297,5,5,'2019-08-21 15:10:37',731.219000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7298,5,5,'2019-08-21 15:10:37',731.698000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7299,5,5,'2019-08-21 15:10:37',732.465000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7300,5,5,'2019-08-21 15:10:37',733.230000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7301,5,5,'2019-08-21 15:10:37',734.112000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7302,5,5,'2019-08-21 15:10:37',734.995000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7303,5,5,'2019-08-21 15:10:37',735.271000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7304,5,5,'2019-08-21 15:10:37',735.911000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7305,5,5,'2019-08-21 15:10:37',736.318000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7306,5,5,'2019-08-21 15:10:37',736.677000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7307,5,5,'2019-08-21 15:10:37',737.525000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7308,5,5,'2019-08-21 15:10:37',738.375000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7309,5,5,'2019-08-21 15:10:37',739.141000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7310,5,5,'2019-08-21 15:10:37',740.073000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7311,5,5,'2019-08-21 15:10:37',741.071000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7312,5,5,'2019-08-21 15:10:37',741.438000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7313,5,5,'2019-08-21 15:10:37',742.004000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7314,5,5,'2019-08-21 15:10:37',742.243000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7315,5,5,'2019-08-21 15:10:37',742.803000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7316,5,5,'2019-08-21 15:10:37',743.802000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7317,5,5,'2019-08-21 15:10:37',744.585000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7318,5,5,'2019-08-21 15:10:37',745.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7319,5,5,'2019-08-21 15:10:37',746.216000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7320,5,5,'2019-08-21 15:10:37',746.546000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7321,5,5,'2019-08-21 15:10:37',747.182000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7322,5,5,'2019-08-21 15:10:37',748.131000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7323,5,5,'2019-08-21 15:10:37',748.451000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7324,5,5,'2019-08-21 15:10:37',749.062000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7325,5,5,'2019-08-21 15:10:37',749.438000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7326,5,5,'2019-08-21 15:10:37',749.995000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7327,5,5,'2019-08-21 15:10:37',750.961000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7328,5,5,'2019-08-21 15:10:37',751.927000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7329,5,5,'2019-08-21 15:10:37',752.842000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7330,5,5,'2019-08-21 15:10:37',753.725000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7331,5,5,'2019-08-21 15:10:37',754.003000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7332,5,5,'2019-08-21 15:10:37',754.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7333,5,5,'2019-08-21 15:10:37',755.340000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7334,5,5,'2019-08-21 15:10:37',756.238000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7335,5,5,'2019-08-21 15:10:37',756.543000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7336,5,5,'2019-08-21 15:10:37',757.004000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7337,5,5,'2019-08-21 15:10:37',757.439000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7338,5,5,'2019-08-21 15:10:37',757.870000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7339,5,5,'2019-08-21 15:10:37',758.652000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7340,5,5,'2019-08-21 15:10:37',759.568000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7341,5,5,'2019-08-21 15:10:37',760.467000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7342,5,5,'2019-08-21 15:10:37',761.333000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7343,5,5,'2019-08-21 15:10:37',762.099000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7344,5,5,'2019-08-21 15:10:37',762.468000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7345,5,5,'2019-08-21 15:10:37',763.048000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7346,5,5,'2019-08-21 15:10:37',763.274000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7347,5,5,'2019-08-21 15:10:37',764.014000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7348,5,5,'2019-08-21 15:10:37',764.995000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7349,5,5,'2019-08-21 15:10:37',765.994000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7350,5,5,'2019-08-21 15:10:37',766.811000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7351,5,5,'2019-08-21 15:10:37',767.676000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7352,5,5,'2019-08-21 15:10:37',768.061000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7353,5,5,'2019-08-21 15:10:37',768.492000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7354,5,5,'2019-08-21 15:10:37',769.374000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7355,5,5,'2019-08-21 15:10:37',769.663000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7356,5,5,'2019-08-21 15:10:37',770.189000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7357,5,5,'2019-08-21 15:10:37',771.188000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7358,5,5,'2019-08-21 15:10:37',771.955000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7359,5,5,'2019-08-21 15:10:37',772.887000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7360,5,5,'2019-08-21 15:10:37',773.240000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7361,5,5,'2019-08-21 15:10:37',773.770000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7362,5,5,'2019-08-21 15:10:37',774.066000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7363,5,5,'2019-08-21 15:10:37',774.701000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7364,5,5,'2019-08-21 15:10:37',775.601000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7365,5,5,'2019-08-21 15:10:37',776.616000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7366,5,5,'2019-08-21 15:10:37',777.499000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7367,5,5,'2019-08-21 15:10:37',777.825000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7368,5,5,'2019-08-21 15:10:37',778.348000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7369,5,5,'2019-08-21 15:10:37',779.264000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7370,5,5,'2019-08-21 15:10:37',780.146000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7371,5,5,'2019-08-21 15:10:37',780.476000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7372,5,5,'2019-08-21 15:10:37',781.028000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7373,5,5,'2019-08-21 15:10:37',782.011000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7374,5,5,'2019-08-21 15:10:37',782.926000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7375,5,5,'2019-08-21 15:10:37',783.708000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7376,5,5,'2019-08-21 15:10:37',784.042000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7377,5,5,'2019-08-21 15:10:37',784.690000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7378,5,5,'2019-08-21 15:10:37',785.606000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7379,5,5,'2019-08-21 15:10:37',785.937000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7380,5,5,'2019-08-21 15:10:37',786.438000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7381,5,5,'2019-08-21 15:10:37',787.438000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7382,5,5,'2019-08-21 15:10:37',787.771000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7383,5,5,'2019-08-21 15:10:37',788.403000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7384,5,5,'2019-08-21 15:10:37',788.799000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7385,5,5,'2019-08-21 15:10:37',789.336000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7386,5,5,'2019-08-21 15:10:37',790.218000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7387,5,5,'2019-08-21 15:10:37',791.117000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7388,5,5,'2019-08-21 15:10:37',792.100000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7389,5,5,'2019-08-21 15:10:37',792.882000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7390,5,5,'2019-08-21 15:10:37',793.881000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7391,5,5,'2019-08-21 15:10:37',794.663000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7392,5,5,'2019-08-21 15:10:37',795.047000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7393,5,5,'2019-08-21 15:10:37',795.579000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7394,5,5,'2019-08-21 15:10:37',795.993000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7395,5,5,'2019-08-21 15:10:37',796.395000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7396,5,5,'2019-08-21 15:10:37',797.193000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7397,5,5,'2019-08-21 15:10:37',797.977000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7398,5,5,'2019-08-21 15:10:37',798.858000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7399,5,5,'2019-08-21 15:10:37',799.158000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7400,5,5,'2019-08-21 15:10:37',799.857000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7401,5,5,'2019-08-21 15:10:37',800.673000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7402,5,5,'2019-08-21 15:10:37',801.489000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7403,5,5,'2019-08-21 15:10:37',801.818000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7404,5,5,'2019-08-21 15:10:37',802.421000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7405,5,5,'2019-08-21 15:10:37',802.815000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7406,5,5,'2019-08-21 15:10:37',803.204000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7407,5,5,'2019-08-21 15:10:37',804.152000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7408,5,5,'2019-08-21 15:10:37',805.102000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7409,5,5,'2019-08-21 15:10:37',805.517000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7410,5,5,'2019-08-21 15:10:37',806.051000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7411,5,5,'2019-08-21 15:10:37',806.967000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7412,5,5,'2019-08-21 15:10:37',807.932000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7413,5,5,'2019-08-21 15:10:37',808.814000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7414,5,5,'2019-08-21 15:10:37',809.175000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7415,5,5,'2019-08-21 15:10:37',809.630000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7416,5,5,'2019-08-21 15:10:37',810.579000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7417,5,5,'2019-08-21 15:10:37',811.378000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7418,5,5,'2019-08-21 15:10:37',811.714000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7419,5,5,'2019-08-21 15:10:37',812.294000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7420,5,5,'2019-08-21 15:10:37',813.243000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7421,5,5,'2019-08-21 15:10:37',814.009000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7422,5,5,'2019-08-21 15:10:37',814.344000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7423,5,5,'2019-08-21 15:10:37',814.941000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7424,5,5,'2019-08-21 15:10:37',815.923000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7425,5,5,'2019-08-21 15:10:37',816.772000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7426,5,5,'2019-08-21 15:10:37',817.095000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7427,5,5,'2019-08-21 15:10:37',817.654000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7428,5,5,'2019-08-21 15:10:37',818.570000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7429,5,5,'2019-08-21 15:10:37',818.999000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7430,5,5,'2019-08-21 15:10:37',819.386000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7431,5,5,'2019-08-21 15:10:37',820.385000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7432,5,5,'2019-08-21 15:10:37',821.334000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7433,5,5,'2019-08-21 15:10:37',822.250000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7434,5,5,'2019-08-21 15:10:37',822.557000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7435,5,5,'2019-08-21 15:10:37',823.148000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7436,5,5,'2019-08-21 15:10:37',823.981000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7437,5,5,'2019-08-21 15:10:37',824.360000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7438,5,5,'2019-08-21 15:10:37',824.830000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7439,5,5,'2019-08-21 15:10:37',825.596000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7440,5,5,'2019-08-21 15:10:37',826.396000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7441,5,5,'2019-08-21 15:10:37',827.344000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7442,5,5,'2019-08-21 15:10:37',828.210000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7443,5,5,'2019-08-21 15:10:37',828.502000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7444,5,5,'2019-08-21 15:10:37',829.159000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7445,5,5,'2019-08-21 15:10:37',829.925000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7446,5,5,'2019-08-21 15:10:37',830.740000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7447,5,5,'2019-08-21 15:10:37',831.031000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7448,5,5,'2019-08-21 15:10:37',831.673000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7449,5,5,'2019-08-21 15:10:37',832.029000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7450,5,5,'2019-08-21 15:10:37',832.555000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7451,5,5,'2019-08-21 15:10:37',833.471000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7452,5,5,'2019-08-21 15:10:37',834.437000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7453,5,5,'2019-08-21 15:10:37',834.860000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7454,5,5,'2019-08-21 15:10:37',835.369000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7455,5,5,'2019-08-21 15:10:37',836.334000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7456,5,5,'2019-08-21 15:10:37',837.267000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7457,5,5,'2019-08-21 15:10:37',838.099000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7458,5,5,'2019-08-21 15:10:37',838.458000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7459,5,5,'2019-08-21 15:10:37',839.064000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7460,5,5,'2019-08-21 15:10:37',839.964000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7461,5,5,'2019-08-21 15:10:37',840.433000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7462,5,5,'2019-08-21 15:10:37',840.963000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7463,5,5,'2019-08-21 15:10:37',841.319000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7464,5,5,'2019-08-21 15:10:37',841.845000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7465,5,5,'2019-08-21 15:10:37',842.694000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7466,5,5,'2019-08-21 15:10:37',843.693000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7467,5,5,'2019-08-21 15:10:37',844.592000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7468,5,5,'2019-08-21 15:10:37',845.541000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7469,5,5,'2019-08-21 15:10:37',846.507000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7470,5,5,'2019-08-21 15:10:37',846.852000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7471,5,5,'2019-08-21 15:10:37',847.455000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7472,5,5,'2019-08-21 15:10:37',848.421000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7473,5,5,'2019-08-21 15:10:37',849.237000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7474,5,5,'2019-08-21 15:10:37',849.573000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7475,5,5,'2019-08-21 15:10:37',850.069000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7476,5,5,'2019-08-21 15:10:37',850.952000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7477,5,5,'2019-08-21 15:10:37',851.751000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7478,5,5,'2019-08-21 15:10:37',852.717000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7479,5,5,'2019-08-21 15:10:37',853.615000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7480,5,5,'2019-08-21 15:10:37',854.398000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7481,5,5,'2019-08-21 15:10:37',854.763000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7482,5,5,'2019-08-21 15:10:37',855.247000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7483,5,5,'2019-08-21 15:10:37',855.680000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7484,5,5,'2019-08-21 15:10:37',856.046000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7485,5,5,'2019-08-21 15:10:37',856.896000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7486,5,5,'2019-08-21 15:10:37',857.302000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7487,5,5,'2019-08-21 15:10:37',857.777000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7488,5,5,'2019-08-21 15:10:37',858.710000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7489,5,5,'2019-08-21 15:10:37',859.593000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7490,5,5,'2019-08-21 15:10:37',860.053000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7491,5,5,'2019-08-21 15:10:37',860.392000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7492,5,5,'2019-08-21 15:10:37',861.174000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7493,5,5,'2019-08-21 15:10:37',862.140000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7494,5,5,'2019-08-21 15:10:37',862.955000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7495,5,5,'2019-08-21 15:10:37',863.317000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7496,5,5,'2019-08-21 15:10:37',863.805000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7497,5,5,'2019-08-21 15:10:37',864.245000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7498,5,5,'2019-08-21 15:10:37',864.820000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7499,5,5,'2019-08-21 15:10:37',865.818000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7500,5,5,'2019-08-21 15:10:37',866.701000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7501,5,5,'2019-08-21 15:10:37',867.700000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7502,5,5,'2019-08-21 15:10:37',868.185000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7503,5,5,'2019-08-21 15:10:37',868.599000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7504,5,5,'2019-08-21 15:10:37',869.548000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7505,5,5,'2019-08-21 15:10:37',869.918000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7506,5,5,'2019-08-21 15:10:37',870.364000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7507,5,5,'2019-08-21 15:10:37',871.312000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7508,5,5,'2019-08-21 15:10:37',872.245000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7509,5,5,'2019-08-21 15:10:37',872.568000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7510,5,5,'2019-08-21 15:10:37',873.044000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7511,5,5,'2019-08-21 15:10:37',874.026000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7512,5,5,'2019-08-21 15:10:37',874.482000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7513,5,5,'2019-08-21 15:10:37',874.859000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7514,5,5,'2019-08-21 15:10:37',875.791000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7515,5,5,'2019-08-21 15:10:37',876.707000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7516,5,5,'2019-08-21 15:10:37',877.506000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7517,5,5,'2019-08-21 15:10:37',877.818000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7518,5,5,'2019-08-21 15:10:37',878.339000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7519,5,5,'2019-08-21 15:10:37',879.287000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7520,5,5,'2019-08-21 15:10:37',880.253000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7521,5,5,'2019-08-21 15:10:37',880.620000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7522,5,5,'2019-08-21 15:10:37',881.202000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7523,5,5,'2019-08-21 15:10:37',882.051000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7524,5,5,'2019-08-21 15:10:37',882.934000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7525,5,5,'2019-08-21 15:10:37',883.916000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7526,5,5,'2019-08-21 15:10:37',884.881000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7527,5,5,'2019-08-21 15:10:37',885.830000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7528,5,5,'2019-08-21 15:10:37',886.172000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7529,5,5,'2019-08-21 15:10:37',886.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7530,5,5,'2019-08-21 15:10:37',887.129000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7531,5,5,'2019-08-21 15:10:37',887.812000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7532,5,5,'2019-08-21 15:10:37',888.660000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7533,5,5,'2019-08-21 15:10:37',889.560000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7534,5,5,'2019-08-21 15:10:37',890.342000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7535,5,5,'2019-08-21 15:10:37',890.706000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7536,5,5,'2019-08-21 15:10:37',891.291000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7537,5,5,'2019-08-21 15:10:37',891.634000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7538,5,5,'2019-08-21 15:10:37',892.073000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7539,5,5,'2019-08-21 15:10:37',892.906000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7540,5,5,'2019-08-21 15:10:37',893.738000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7541,5,5,'2019-08-21 15:10:37',894.737000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7542,5,5,'2019-08-21 15:10:37',895.603000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7543,5,5,'2019-08-21 15:10:37',895.967000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7544,5,5,'2019-08-21 15:10:37',896.485000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7545,5,5,'2019-08-21 15:10:37',897.385000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7546,5,5,'2019-08-21 15:10:37',898.283000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7547,5,5,'2019-08-21 15:10:37',898.688000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7548,5,5,'2019-08-21 15:10:37',899.049000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7549,5,5,'2019-08-21 15:10:37',899.932000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7550,5,5,'2019-08-21 15:10:37',900.914000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7551,5,5,'2019-08-21 15:10:37',901.287000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7552,5,5,'2019-08-21 15:10:37',901.696000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7553,5,5,'2019-08-21 15:10:37',902.053000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7554,5,5,'2019-08-21 15:10:37',902.512000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7555,5,5,'2019-08-21 15:10:37',903.428000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7556,5,5,'2019-08-21 15:10:37',904.394000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7557,5,5,'2019-08-21 15:10:37',905.376000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7558,5,5,'2019-08-21 15:10:37',905.771000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7559,5,5,'2019-08-21 15:10:37',906.291000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7560,5,5,'2019-08-21 15:10:37',907.057000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7561,5,5,'2019-08-21 15:10:37',907.434000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7562,5,5,'2019-08-21 15:10:37',907.923000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7563,5,5,'2019-08-21 15:10:37',908.738000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7564,5,5,'2019-08-21 15:10:37',909.571000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7565,5,5,'2019-08-21 15:10:37',910.503000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7566,5,5,'2019-08-21 15:10:37',911.286000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7567,5,5,'2019-08-21 15:10:37',911.687000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7568,5,5,'2019-08-21 15:10:37',912.102000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7569,5,5,'2019-08-21 15:10:37',912.884000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7570,5,5,'2019-08-21 15:10:37',913.198000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7571,5,5,'2019-08-21 15:10:37',913.767000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7572,5,5,'2019-08-21 15:10:37',914.649000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7573,5,5,'2019-08-21 15:10:37',915.515000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7574,5,5,'2019-08-21 15:10:37',916.020000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7575,5,5,'2019-08-21 15:10:37',916.330000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7576,5,5,'2019-08-21 15:10:37',917.213000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7577,5,5,'2019-08-21 15:10:37',918.012000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7578,5,5,'2019-08-21 15:10:37',918.397000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7579,5,5,'2019-08-21 15:10:37',918.861000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7580,5,5,'2019-08-21 15:10:37',919.677000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7581,5,5,'2019-08-21 15:10:37',920.492000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7582,5,5,'2019-08-21 15:10:37',921.475000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7583,5,5,'2019-08-21 15:10:37',922.273000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7584,5,5,'2019-08-21 15:10:37',922.721000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7585,5,5,'2019-08-21 15:10:37',923.206000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7586,5,5,'2019-08-21 15:10:37',923.627000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7587,5,5,'2019-08-21 15:10:37',924.139000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7588,5,5,'2019-08-21 15:10:37',925.104000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7589,5,5,'2019-08-21 15:10:37',925.986000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7590,5,5,'2019-08-21 15:10:37',926.919000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7591,5,5,'2019-08-21 15:10:37',927.768000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7592,5,5,'2019-08-21 15:10:37',928.684000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7593,5,5,'2019-08-21 15:10:37',929.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7594,5,5,'2019-08-21 15:10:37',929.466000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7595,5,5,'2019-08-21 15:10:37',930.006000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7596,5,5,'2019-08-21 15:10:37',930.299000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7597,5,5,'2019-08-21 15:10:37',930.641000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7598,5,5,'2019-08-21 15:10:37',931.264000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7599,5,5,'2019-08-21 15:10:37',932.246000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7600,5,5,'2019-08-21 15:10:37',933.079000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7601,5,5,'2019-08-21 15:10:37',933.861000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7602,5,5,'2019-08-21 15:10:37',934.228000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7603,5,5,'2019-08-21 15:10:37',934.644000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7604,5,5,'2019-08-21 15:10:37',935.409000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7605,5,5,'2019-08-21 15:10:37',935.820000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7606,5,5,'2019-08-21 15:10:37',936.209000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7607,5,5,'2019-08-21 15:10:37',937.124000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7608,5,5,'2019-08-21 15:10:37',937.957000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7609,5,5,'2019-08-21 15:10:37',938.872000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7610,5,5,'2019-08-21 15:10:37',939.267000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7611,5,5,'2019-08-21 15:10:37',939.838000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7612,5,5,'2019-08-21 15:10:37',977.002000,0.000000,NULL,NULL,NULL,NULL,'boundary',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7613,5,5,'2019-08-21 15:10:37',999.726000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7614,5,5,'2019-08-21 15:10:37',1000.624000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7615,5,5,'2019-08-21 15:10:37',1000.984000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7616,5,5,'2019-08-21 15:10:37',1001.407000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7617,5,5,'2019-08-21 15:10:37',1002.189000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7618,5,5,'2019-08-21 15:10:37',1003.005000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7619,5,5,'2019-08-21 15:10:37',1003.292000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7620,5,5,'2019-08-21 15:10:37',1004.021000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7621,5,5,'2019-08-21 15:10:37',1004.920000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7622,5,5,'2019-08-21 15:10:37',1005.197000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7623,5,5,'2019-08-21 15:10:37',1005.719000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7624,5,5,'2019-08-21 15:10:37',1006.651000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7625,5,5,'2019-08-21 15:10:37',1007.566000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7626,5,5,'2019-08-21 15:10:37',1008.466000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7627,5,5,'2019-08-21 15:10:37',1008.805000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7628,5,5,'2019-08-21 15:10:37',1009.248000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7629,5,5,'2019-08-21 15:10:37',1010.247000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7630,5,5,'2019-08-21 15:10:37',1010.689000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7631,5,5,'2019-08-21 15:10:37',1011.196000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7632,5,5,'2019-08-21 15:10:37',1012.045000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7633,5,5,'2019-08-21 15:10:37',1012.372000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7634,5,5,'2019-08-21 15:10:37',1012.861000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7635,5,5,'2019-08-21 15:10:37',1013.860000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7636,5,5,'2019-08-21 15:10:37',1014.825000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7637,5,5,'2019-08-21 15:10:37',1015.658000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7638,5,5,'2019-08-21 15:10:37',1016.607000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7639,5,5,'2019-08-21 15:10:37',1016.887000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7640,5,5,'2019-08-21 15:10:37',1017.439000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7641,5,5,'2019-08-21 15:10:37',1018.222000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7642,5,5,'2019-08-21 15:10:37',1019.121000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7643,5,5,'2019-08-21 15:10:37',1019.971000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7644,5,5,'2019-08-21 15:10:37',1020.263000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7645,5,5,'2019-08-21 15:10:37',1020.786000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7646,5,5,'2019-08-21 15:10:37',1021.651000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7647,5,5,'2019-08-21 15:10:37',1022.518000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7648,5,5,'2019-08-21 15:10:37',1022.883000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7649,5,5,'2019-08-21 15:10:37',1023.300000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7650,5,5,'2019-08-21 15:10:37',1023.900000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7651,5,5,'2019-08-21 15:10:37',1024.266000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7652,5,5,'2019-08-21 15:10:37',1025.147000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7653,5,5,'2019-08-21 15:10:37',1026.030000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7654,5,5,'2019-08-21 15:10:37',1026.812000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7655,5,5,'2019-08-21 15:10:37',1027.115000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7656,5,5,'2019-08-21 15:10:37',1027.628000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7657,5,5,'2019-08-21 15:10:37',1028.461000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7658,5,5,'2019-08-21 15:10:37',1029.393000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7659,5,5,'2019-08-21 15:10:37',1029.694000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7660,5,5,'2019-08-21 15:10:37',1030.325000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7661,5,5,'2019-08-21 15:10:37',1031.107000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7662,5,5,'2019-08-21 15:10:37',1031.924000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7663,5,5,'2019-08-21 15:10:37',1032.772000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7664,5,5,'2019-08-21 15:10:37',1033.605000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7665,5,5,'2019-08-21 15:10:37',1034.008000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7666,5,5,'2019-08-21 15:10:37',1034.454000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7667,5,5,'2019-08-21 15:10:37',1035.236000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7668,5,5,'2019-08-21 15:10:37',1035.580000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7669,5,5,'2019-08-21 15:10:37',1036.219000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7670,5,5,'2019-08-21 15:10:37',1037.018000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7671,5,5,'2019-08-21 15:10:37',1037.851000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7672,5,5,'2019-08-21 15:10:37',1038.199000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7673,5,5,'2019-08-21 15:10:37',1038.732000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7674,5,5,'2019-08-21 15:10:37',1039.648000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7675,5,5,'2019-08-21 15:10:37',1040.033000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7676,5,5,'2019-08-21 15:10:37',1040.631000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7677,5,5,'2019-08-21 15:10:37',1041.446000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7678,5,5,'2019-08-21 15:10:37',1041.848000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7679,5,5,'2019-08-21 15:10:37',1042.346000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7680,5,5,'2019-08-21 15:10:37',1043.312000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7681,5,5,'2019-08-21 15:10:37',1044.210000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7682,5,5,'2019-08-21 15:10:37',1044.518000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7683,5,5,'2019-08-21 15:10:37',1044.993000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7684,5,5,'2019-08-21 15:10:37',1045.775000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7685,5,5,'2019-08-21 15:10:37',1046.657000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7686,5,5,'2019-08-21 15:10:37',1047.590000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7687,5,5,'2019-08-21 15:10:37',1047.914000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7688,5,5,'2019-08-21 15:10:37',1048.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7689,5,5,'2019-08-21 15:10:37',1049.305000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7690,5,5,'2019-08-21 15:10:37',1050.070000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7691,5,5,'2019-08-21 15:10:37',1050.474000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7692,5,5,'2019-08-21 15:10:37',1050.853000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7693,5,5,'2019-08-21 15:10:37',1051.835000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7694,5,5,'2019-08-21 15:10:37',1052.601000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7695,5,5,'2019-08-21 15:10:37',1053.043000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7696,5,5,'2019-08-21 15:10:37',1053.518000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7697,5,5,'2019-08-21 15:10:37',1054.332000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7698,5,5,'2019-08-21 15:10:37',1055.265000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7699,5,5,'2019-08-21 15:10:37',1056.081000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7700,5,5,'2019-08-21 15:10:37',1056.510000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7701,5,5,'2019-08-21 15:10:37',1056.963000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7702,5,5,'2019-08-21 15:10:37',1057.929000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7703,5,5,'2019-08-21 15:10:37',1058.694000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7704,5,5,'2019-08-21 15:10:37',1059.660000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7705,5,5,'2019-08-21 15:10:37',1060.609000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7706,5,5,'2019-08-21 15:10:37',1060.974000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7707,5,5,'2019-08-21 15:10:37',1061.508000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7708,5,5,'2019-08-21 15:10:37',1062.193000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7709,5,5,'2019-08-21 15:10:37',1062.324000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7710,5,5,'2019-08-21 15:10:37',1062.697000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7711,5,5,'2019-08-21 15:10:37',1063.156000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7712,5,5,'2019-08-21 15:10:37',1063.955000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7713,5,5,'2019-08-21 15:10:37',1064.904000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7714,5,5,'2019-08-21 15:10:37',1065.854000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7715,5,5,'2019-08-21 15:10:37',1066.836000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7716,5,5,'2019-08-21 15:10:37',1067.161000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7717,5,5,'2019-08-21 15:10:37',1067.651000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7718,5,5,'2019-08-21 15:10:37',1068.059000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7719,5,5,'2019-08-21 15:10:37',1068.450000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7720,5,5,'2019-08-21 15:10:37',1069.350000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7721,5,5,'2019-08-21 15:10:37',1070.182000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7722,5,5,'2019-08-21 15:10:37',1071.081000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7723,5,5,'2019-08-21 15:10:37',1071.946000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7724,5,5,'2019-08-21 15:10:37',1072.442000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7725,5,5,'2019-08-21 15:10:37',1072.945000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7726,5,5,'2019-08-21 15:10:37',1073.728000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7727,5,5,'2019-08-21 15:10:37',1074.577000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7728,5,5,'2019-08-21 15:10:37',1074.961000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7729,5,5,'2019-08-21 15:10:37',1075.393000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7730,5,5,'2019-08-21 15:10:37',1076.325000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7731,5,5,'2019-08-21 15:10:37',1076.855000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7732,5,5,'2019-08-21 15:10:37',1077.174000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7733,5,5,'2019-08-21 15:10:37',1077.974000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7734,5,5,'2019-08-21 15:10:37',1078.468000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7735,5,5,'2019-08-21 15:10:37',1078.956000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7736,5,5,'2019-08-21 15:10:37',1079.821000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7737,5,5,'2019-08-21 15:10:37',1080.242000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7738,5,5,'2019-08-21 15:10:37',1080.688000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7739,5,5,'2019-08-21 15:10:37',1081.586000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7740,5,5,'2019-08-21 15:10:37',1082.585000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7741,5,5,'2019-08-21 15:10:37',1083.501000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7742,5,5,'2019-08-21 15:10:37',1083.940000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7743,5,5,'2019-08-21 15:10:37',1084.300000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7744,5,5,'2019-08-21 15:10:37',1085.065000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7745,5,5,'2019-08-21 15:10:37',1085.864000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7746,5,5,'2019-08-21 15:10:37',1086.119000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7747,5,5,'2019-08-21 15:10:37',1086.697000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7748,5,5,'2019-08-21 15:10:37',1087.513000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7749,5,5,'2019-08-21 15:10:37',1088.495000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7750,5,5,'2019-08-21 15:10:37',1089.294000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7751,5,5,'2019-08-21 15:10:37',1090.177000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7752,5,5,'2019-08-21 15:10:37',1091.042000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7753,5,5,'2019-08-21 15:10:37',1091.377000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7754,5,5,'2019-08-21 15:10:37',1092.058000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7755,5,5,'2019-08-21 15:10:37',1092.495000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7756,5,5,'2019-08-21 15:10:37',1093.057000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7757,5,5,'2019-08-21 15:10:37',1093.956000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7758,5,5,'2019-08-21 15:10:37',1094.889000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7759,5,5,'2019-08-21 15:10:37',1095.754000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7760,5,5,'2019-08-21 15:10:37',1096.520000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7761,5,5,'2019-08-21 15:10:37',1096.930000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7762,5,5,'2019-08-21 15:10:37',1097.353000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7763,5,5,'2019-08-21 15:10:37',1097.847000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7764,5,5,'2019-08-21 15:10:37',1098.201000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7765,5,5,'2019-08-21 15:10:37',1098.967000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7766,5,5,'2019-08-21 15:10:37',1099.883000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7767,5,5,'2019-08-21 15:10:37',1100.715000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7768,5,5,'2019-08-21 15:10:37',1101.581000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7769,5,5,'2019-08-21 15:10:37',1101.958000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7770,5,5,'2019-08-21 15:10:37',1102.563000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7771,5,5,'2019-08-21 15:10:37',1103.445000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7772,5,5,'2019-08-21 15:10:37',1103.812000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7773,5,5,'2019-08-21 15:10:37',1104.278000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7774,5,5,'2019-08-21 15:10:37',1105.193000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7775,5,5,'2019-08-21 15:10:37',1105.596000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7776,5,5,'2019-08-21 15:10:37',1105.993000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7777,5,5,'2019-08-21 15:10:37',1106.892000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7778,5,5,'2019-08-21 15:10:37',1107.774000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7779,5,5,'2019-08-21 15:10:37',1108.115000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7780,5,5,'2019-08-21 15:10:37',1108.573000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7781,5,5,'2019-08-21 15:10:37',1109.405000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7782,5,5,'2019-08-21 15:10:37',1110.101000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7783,5,5,'2019-08-21 15:10:37',1110.188000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7784,5,5,'2019-08-21 15:10:37',1110.745000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7785,5,5,'2019-08-21 15:10:37',1111.171000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7786,5,5,'2019-08-21 15:10:37',1112.020000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7787,5,5,'2019-08-21 15:10:37',1112.619000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7788,5,5,'2019-08-21 15:10:37',1112.852000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7789,5,5,'2019-08-21 15:10:37',1113.701000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7790,5,5,'2019-08-21 15:10:37',1114.517000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7791,5,5,'2019-08-21 15:10:37',1115.282000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7792,5,5,'2019-08-21 15:10:37',1116.231000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7793,5,5,'2019-08-21 15:10:37',1116.600000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7794,5,5,'2019-08-21 15:10:37',1117.014000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7795,5,5,'2019-08-21 15:10:37',1117.376000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7796,5,5,'2019-08-21 15:10:37',1117.996000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7797,5,5,'2019-08-21 15:10:37',1118.896000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7798,5,5,'2019-08-21 15:10:37',1119.728000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7799,5,5,'2019-08-21 15:10:37',1120.693000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7800,5,5,'2019-08-21 15:10:37',1121.593000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7801,5,5,'2019-08-21 15:10:37',1122.002000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7802,5,5,'2019-08-21 15:10:37',1122.541000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7803,5,5,'2019-08-21 15:10:37',1122.938000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7804,5,5,'2019-08-21 15:10:37',1123.424000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7805,5,5,'2019-08-21 15:10:37',1124.206000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7806,5,5,'2019-08-21 15:10:37',1125.205000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7807,5,5,'2019-08-21 15:10:37',1126.121000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7808,5,5,'2019-08-21 15:10:37',1126.970000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7809,5,5,'2019-08-21 15:10:37',1127.282000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7810,5,5,'2019-08-21 15:10:37',1127.919000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7811,5,5,'2019-08-21 15:10:37',1128.300000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7812,5,5,'2019-08-21 15:10:37',1128.868000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7813,5,5,'2019-08-21 15:10:37',1129.684000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7814,5,5,'2019-08-21 15:10:37',1130.532000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7815,5,5,'2019-08-21 15:10:37',1130.950000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7816,5,5,'2019-08-21 15:10:37',1131.432000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7817,5,5,'2019-08-21 15:10:37',1131.877000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7818,5,5,'2019-08-21 15:10:37',1132.314000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7819,5,5,'2019-08-21 15:10:37',1133.213000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7820,5,5,'2019-08-21 15:10:37',1134.162000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7821,5,5,'2019-08-21 15:10:37',1135.178000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7822,5,5,'2019-08-21 15:10:37',1136.109000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7823,5,5,'2019-08-21 15:10:37',1136.893000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7824,5,5,'2019-08-21 15:10:37',1137.299000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7825,5,5,'2019-08-21 15:10:37',1137.675000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7826,5,5,'2019-08-21 15:10:37',1138.474000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7827,5,5,'2019-08-21 15:10:37',1139.423000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7828,5,5,'2019-08-21 15:10:37',1140.422000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7829,5,5,'2019-08-21 15:10:37',1140.725000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7830,5,5,'2019-08-21 15:10:37',1141.354000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7831,5,5,'2019-08-21 15:10:37',1142.203000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7832,5,5,'2019-08-21 15:10:37',1143.119000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7833,5,5,'2019-08-21 15:10:37',1143.466000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7834,5,5,'2019-08-21 15:10:37',1143.968000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7835,5,5,'2019-08-21 15:10:37',1144.333000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7836,5,5,'2019-08-21 15:10:37',1144.784000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7837,5,5,'2019-08-21 15:10:37',1145.782000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7838,5,5,'2019-08-21 15:10:37',1146.748000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7839,5,5,'2019-08-21 15:10:37',1147.530000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7840,5,5,'2019-08-21 15:10:37',1148.496000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7841,5,5,'2019-08-21 15:10:37',1148.918000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7842,5,5,'2019-08-21 15:10:37',1149.495000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7843,5,5,'2019-08-21 15:10:37',1150.411000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7844,5,5,'2019-08-21 15:10:37',1150.792000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7845,5,5,'2019-08-21 15:10:37',1151.227000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7846,5,5,'2019-08-21 15:10:37',1152.126000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7847,5,5,'2019-08-21 15:10:37',1152.991000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7848,5,5,'2019-08-21 15:10:37',1153.940000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7849,5,5,'2019-08-21 15:10:37',1154.329000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7850,5,5,'2019-08-21 15:10:37',1154.772000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7851,5,5,'2019-08-21 15:10:37',1155.589000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7852,5,5,'2019-08-21 15:10:37',1155.972000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7853,5,5,'2019-08-21 15:10:37',1156.388000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7854,5,5,'2019-08-21 15:10:37',1157.287000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7855,5,5,'2019-08-21 15:10:37',1157.726000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7856,5,5,'2019-08-21 15:10:37',1158.186000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7857,5,5,'2019-08-21 15:10:37',1159.019000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7858,5,5,'2019-08-21 15:10:37',1159.867000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7859,5,5,'2019-08-21 15:10:37',1160.767000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7860,5,5,'2019-08-21 15:10:37',1161.212000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7861,5,5,'2019-08-21 15:10:37',1161.565000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7862,5,5,'2019-08-21 15:10:37',1162.531000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7863,5,5,'2019-08-21 15:10:37',1163.497000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7864,5,5,'2019-08-21 15:10:37',1163.872000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7865,5,5,'2019-08-21 15:10:37',1164.412000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7866,5,5,'2019-08-21 15:10:37',1165.229000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7867,5,5,'2019-08-21 15:10:37',1165.615000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7868,5,5,'2019-08-21 15:10:37',1166.077000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7869,5,5,'2019-08-21 15:10:37',1166.942000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7870,5,5,'2019-08-21 15:10:37',1167.842000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7871,5,5,'2019-08-21 15:10:37',1168.824000,0.000000,NULL,NULL,NULL,NULL,'face-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7872,5,5,'2019-08-21 15:10:37',1169.640000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7873,5,5,'2019-08-21 15:10:37',1170.506000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7874,5,5,'2019-08-21 15:10:37',1171.388000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7875,5,5,'2019-08-21 15:10:37',1171.723000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7876,5,5,'2019-08-21 15:10:37',1172.354000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7877,5,5,'2019-08-21 15:10:37',1172.720000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7878,5,5,'2019-08-21 15:10:37',1173.136000,0.000000,NULL,NULL,NULL,NULL,'checker-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7879,5,5,'2019-08-21 15:10:37',1173.516000,0.000000,NULL,NULL,NULL,NULL,'press-left',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7880,5,5,'2019-08-21 15:10:37',1174.085000,0.000000,NULL,NULL,NULL,NULL,'house-inverted',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7881,5,5,'2019-08-21 15:10:37',1174.917000,0.000000,NULL,NULL,NULL,NULL,'house-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7882,5,5,'2019-08-21 15:10:37',1175.899000,0.000000,NULL,NULL,NULL,NULL,'checker-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7883,5,5,'2019-08-21 15:10:37',1176.277000,0.000000,NULL,NULL,NULL,NULL,'press-right',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`, `EventType`, `TrialType`, `ResponseTime`) VALUES (7884,5,5,'2019-08-21 15:10:37',1176.716000,0.000000,NULL,NULL,NULL,NULL,'face-upright',NULL);
+INSERT INTO `physiological_task_event` (`PhysiologicalTaskEventID`, `PhysiologicalFileID`, `EventFileID`, `InsertTime`, `Onset`, `Duration`, `EventCode`, `EventValue`, `EventSample`,